Skip to content

Commit 8bce2e1

Browse files
committed
adding test onlys as workarounds
Adding test onlys as a patch for espressif bsp rc and error from picodvi library
1 parent cc9d8c1 commit 8bce2e1

File tree

9 files changed

+3
-3
lines changed

9 files changed

+3
-3
lines changed

Feather_DVI_Arduino_Video_Synth/Feather_DVI_Arduino_Video_Synth/...feather_rp2040.test.only

Whitespace-only changes.

Feather_DVI_Arduino_Video_Synth/Feather_DVI_Arduino_Video_Synth/.none.test.only

Whitespace-only changes.

Feather_DVI_Arduino_Video_Synth/Feather_DVI_Arduino_Video_Synth/Feather_DVI_Arduino_Video_Synth.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ void make_triangle(uint16_t x1, uint16_t y1, uint16_t side_1, uint16_t side_2,ui
681681
}
682682

683683
int analog_map(int x, int minMap, int maxMap) {
684-
int z = analogRead(x);
684+
long unsigned int z = analogRead(x);
685685
z = map(z, 0, 1023, minMap, maxMap);
686686
return z;
687687
}
@@ -726,7 +726,7 @@ void draw_gradient(int x, int y, int w, int h) {
726726
}
727727
}
728728

729-
void millisDelay(int delayTime){
730-
int start_time = millis();
729+
void millisDelay(long unsigned int delayTime){
730+
long unsigned int start_time = millis();
731731
while ( millis() - start_time < delayTime) ;
732732
}

IoT_Button_BFF_Examples/adafruitIO_iotButtonNeoPixelBFF/...qtpy_esp32s2.test.only

Whitespace-only changes.

IoT_Button_BFF_Examples/adafruitIO_iotButtonNeoPixelBFF/.none.test.only

Whitespace-only changes.

0 commit comments

Comments
 (0)