mirror of
https://github.com/cecio/USBvalve.git
synced 2025-12-06 03:41:45 +00:00
bump to release 0.18.1
This commit is contained in:
@@ -190,7 +190,7 @@ I grouped most of the variables you may want to modify in this section ([see Doc
|
|||||||
Obviously you can also build your own firmware. To build the *standard* one I used:
|
Obviously you can also build your own firmware. To build the *standard* one I used:
|
||||||
|
|
||||||
- Arduino IDE `2.3.2`
|
- Arduino IDE `2.3.2`
|
||||||
- `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`
|
- `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`
|
||||||
- `Adafruit_SSD1306` OLED library version `2.5.10`
|
- `Adafruit_SSD1306` OLED library version `2.5.10`
|
||||||
|
|
||||||
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.
|
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.
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ bool activeState = false;
|
|||||||
//
|
//
|
||||||
// USBvalve globals
|
// USBvalve globals
|
||||||
//
|
//
|
||||||
#define VERSION "USBvalve - 0.18.0"
|
#define VERSION "USBvalve - 0.18.1"
|
||||||
boolean readme = false;
|
boolean readme = false;
|
||||||
boolean autorun = false;
|
boolean autorun = false;
|
||||||
boolean written = false;
|
boolean written = false;
|
||||||
@@ -423,6 +423,9 @@ void printout(const char *str)
|
|||||||
} else {
|
} else {
|
||||||
gfx->print(str);
|
gfx->print(str);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Output on serial device
|
||||||
|
SerialTinyUSB.println(str);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
|
|
||||||
@@ -457,6 +460,9 @@ void printout(const char *str)
|
|||||||
checkAndScroll();
|
checkAndScroll();
|
||||||
display.print(str);
|
display.print(str);
|
||||||
display.display();
|
display.display();
|
||||||
|
|
||||||
|
// Output on serial device
|
||||||
|
SerialTinyUSB.println(str);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user