4 Commits

Author SHA1 Message Date
8658e5c9fd Fix merge
All checks were successful
Build ptprnt / build (push) Successful in 3m48s
2025-10-11 17:38:47 +02:00
99b355b033 Merge branch 'master' into generate-text-part-one 2025-10-11 17:34:31 +02:00
fec8ee231b Updated Code debug configuration to use lldb (#13)
All checks were successful
Build ptprnt / build (push) Successful in 2m27s
Reviewed-on: moritz/ptouch-prnt#13
2024-11-14 19:45:38 +00:00
Moritz Martinius
349036bfaf Updated Code debug configuration to use lldb
All checks were successful
Build ptprnt / build (push) Successful in 3m50s
2024-11-14 20:37:04 +01:00
2 changed files with 1 additions and 2 deletions

2
.vscode/launch.json vendored
View File

@@ -6,7 +6,7 @@
"configurations": [
{
"name": "ptprnt_debug",
"type": "cppdbg",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/builddir/ptprnt",
"args": [

View File

@@ -159,7 +159,6 @@ graphics::Bitmap<graphics::ALPHA8> FakePrinter::simulatePrinting(const graphics:
}
// Now "print" this column by unpacking the bytes back to pixels
// This simulates the printer head physically printing this column
for (size_t byteIdx = 0; byteIdx < columnBytes.size(); byteIdx++) {
uint8_t byte = columnBytes[byteIdx];
uint32_t baseRow = byteIdx * 8;