Skip to content

Commit a9ebd99

Browse files
committed
Fix for Github Action multi-segments compiling
1 parent 244de8d commit a9ebd99

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ It's very easy and you don't need any special flasher.
1919

2020
First download the firmware directly from the [Release folder](https://github.com/awawa-dev/HyperSerialPico/releases).
2121

22-
For HyperHDR choose `HyperSerialPico_<type>.uf2` firmware where *type* is one of supported LEDs: sk6812 cold/neutral white, variants of ws2812 and apa102. If you are using an application other than HyperHDR, select the `classic_adalight.zip` archive, unzip it and select *classic_adalight_HyperSerialPico_<type>.uf2* firmware (note: do not use firmwares from this archive for HyperHDR, they do not support my AWA protocol extension, missing many options and are simply only backwards compatible with other applications).
22+
For HyperHDR choose `HyperSerialPico_<type>.uf2` firmware where *type* is one of supported LEDs: sk6812 cold/neutral white, variants of ws2812 and apa102. If you are using an application other than HyperHDR, select the `classic_adalight.zip` archive, unzip it and select `classic_adalight_HyperSerialPico_<type>.uf2` firmware (note: do not use firmwares from this archive for HyperHDR, they do not support my AWA protocol extension, missing many options and are simply only backwards compatible with other applications).
2323

2424
Next put your Pico board into DFU mode:
2525
* If your Pico board has only one button (`boot`) then press & hold it and connect the board to the USB port. Then you can release the button.

include/leds.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,9 +392,9 @@ class NeopixelParallel
392392
{
393393
static Neopixel *muxer;
394394
static int instances;
395-
static int maxLeds;
396395

397396
protected:
397+
static int maxLeds;
398398
const uint8_t myLaneMask;
399399
static uint8_t* buffer;
400400

source/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
#define LED_DRIVER apa102
7575
#endif
7676

77-
#pragma message(VAR_NAME_VALUE(DATA_PIN))
77+
#pragma message(VAR_NAME_VALUE(DATA_PIN))
7878
#ifdef CLOCK_PIN
7979
#pragma message(VAR_NAME_VALUE(CLOCK_PIN))
8080
#endif

0 commit comments

Comments
 (0)