Skip to content

Commit f6de47e

Browse files
committed
bump to release 0.18.1
1 parent 4d730ae commit f6de47e

File tree

5 files changed

+8
-2
lines changed

5 files changed

+8
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ I grouped most of the variables you may want to modify in this section ([see Doc
190190
Obviously you can also build your own firmware. To build the *standard* one I used:
191191
192192
- Arduino IDE `2.3.2`
193-
- `Adafruit TinyUSB Library` version `3.1.4`, `Pico-PIO-USB` version `0.5.2`, Board `Raspberry Pi RP2040 (3.8.0)` setting Tools=>CPU Speed at `120MHz` and Tools=>USB Stack to `Adafruit TinyUSB`
193+
- `Adafruit TinyUSB Library` version `3.1.4`, `Pico-PIO-USB` version `0.5.2`, Board `Raspberry Pi RP2040 (3.8.1)` setting Tools=>CPU Speed at `120MHz` and Tools=>USB Stack to `Adafruit TinyUSB`
194194
- `Adafruit_SSD1306` OLED library version `2.5.10`
195195
196196
If you want to re-create a new fake filesystem, you may want to have a look to the `utils` folder, where I placed some utilities to build a new one.

USBvalve/USBvalve.ino

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ bool activeState = false;
116116
//
117117
// USBvalve globals
118118
//
119-
#define VERSION "USBvalve - 0.18.0"
119+
#define VERSION "USBvalve - 0.18.1"
120120
boolean readme = false;
121121
boolean autorun = false;
122122
boolean written = false;
@@ -423,6 +423,9 @@ void printout(const char *str)
423423
} else {
424424
gfx->print(str);
425425
}
426+
427+
// Output on serial device
428+
SerialTinyUSB.println(str);
426429
}
427430
#else
428431

@@ -457,6 +460,9 @@ void printout(const char *str)
457460
checkAndScroll();
458461
display.print(str);
459462
display.display();
463+
464+
// Output on serial device
465+
SerialTinyUSB.println(str);
460466
}
461467
#endif
462468

Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)