bump to release 0.14.2

This commit is contained in:
cecio
2023-12-11 23:23:01 +01:00
parent b87b518552
commit 2c493681cc
4 changed files with 3 additions and 3 deletions

View File

@@ -163,7 +163,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:
- Arduino IDE `2.2.1`
- `Adafruit TinyUSB Library` version `2.2.6`, `Pico-PIO-USB` version `0.5.2`, Board `Raspberry Pi RP2040 (3.6.0)` setting Tools=>CPU Speed at `120MHz` and Tools=>USB Stack to `Adafruit TinyUSB`
- `Adafruit TinyUSB Library` version `2.2.7`, `Pico-PIO-USB` version `0.5.2`, Board `Raspberry Pi RP2040 (3.6.2)` setting Tools=>CPU Speed at `120MHz` and Tools=>USB Stack to `Adafruit TinyUSB`
- `ssd1306` OLED library version `1.8.3`
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.

View File

@@ -44,7 +44,7 @@ Adafruit_USBH_Host USBHost;
// Define vars for OLED screen
#define I2C_ADDRESS 0x3C // 0X3C+SA0 - 0x3C or 0x3D
#define RST_PIN -1 // Define proper RST_PIN if required.
#define OLED_HEIGHT 32 // 64 or 32 depending on the OLED
#define OLED_HEIGHT 64 // 64 or 32 depending on the OLED
#define OLED_LINES (OLED_HEIGHT / 8)
SSD1306AsciiWire oled;
@@ -75,7 +75,7 @@ bool activeState = false;
//
// USBvalve globals
//
#define VERSION "USBvalve - 0.14.1"
#define VERSION "USBvalve - 0.14.2"
boolean readme = false;
boolean autorun = false;
boolean written = false;