File tree Expand file tree Collapse file tree 4 files changed +10
-8
lines changed Expand file tree Collapse file tree 4 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -927,7 +927,7 @@ jobs:
927
927
run : bash ci/actions_install.sh
928
928
929
929
- name : clang
930
- run : python3 ci/run-clang-format.py -r -e "ci/*" -e "bin/*" -e src/nanopb -e src/wippersnapper -e src/pb.h -e src/provisioning/tinyusb src/
930
+ run : python3 ci/run-clang-format.py -r -e "ci/*" -e "bin/*" -e src/nanopb -e src/protos -e src/ wippersnapper -e src/pb.h -e src/provisioning/tinyusb src/
931
931
932
932
- name : doxygen
933
933
env :
Original file line number Diff line number Diff line change @@ -804,9 +804,9 @@ void Wippersnapper_V2::runNetFSMV2() {
804
804
WS_DEBUG_PRINT (" Performing a WiFi scan for SSID..." );
805
805
if (!check_valid_ssid ()) {
806
806
#ifdef USE_DISPLAY
807
- WsV2._ui_helperV2 ->show_scr_error (" ERROR " ,
808
- " Unable to find WiFi network listed in "
809
- " the secrets file. Rebooting soon..." );
807
+ WsV2._ui_helperV2 ->show_scr_error (
808
+ " ERROR " , " Unable to find WiFi network listed in "
809
+ " the secrets file. Rebooting soon..." );
810
810
#endif
811
811
haltErrorV2 (" ERROR: Unable to find WiFi network, rebooting soon..." ,
812
812
WS_LED_STATUS_WIFI_CONNECTING);
Original file line number Diff line number Diff line change 62
62
while (millis () - start < timeout) { \
63
63
delay (10 ); \
64
64
yield (); \
65
- WsV2.feedWDTV2 (); \
65
+ WsV2.feedWDTV2 (); \
66
66
if (millis () < start) { \
67
67
start = millis (); \
68
68
} \
69
69
} \
70
70
}
71
71
72
72
// Cpp STD
73
+ #include < algorithm>
73
74
#include < functional>
74
75
#include < map>
75
76
#include < string>
76
77
#include < vector>
77
- #include < algorithm>
78
78
79
79
// Nanopb dependencies
80
80
#include < nanopb/pb_common.h>
@@ -254,7 +254,8 @@ class Wippersnapper_V2 {
254
254
DS18X20Controller *_ds18x20_controller =
255
255
nullptr ; // /< Instance of DS18X20 controller
256
256
I2cController *_i2c_controller = nullptr ; // /< Instance of I2C controller
257
- PixelsController *_pixels_controller = nullptr ; // /< Instance of Pixels controller
257
+ PixelsController *_pixels_controller =
258
+ nullptr ; // /< Instance of Pixels controller
258
259
259
260
// TODO: does this really need to be global?
260
261
uint8_t _macAddrV2[6 ]; /* !< Unique network iface identifier */
Original file line number Diff line number Diff line change @@ -33,7 +33,8 @@ typedef ws_wifi_esp8266 ws_adapter_wifi;
33
33
#include "adapters/wifi/ws_wifi_esp32.h"
34
34
typedef ws_wifi_esp32 ws_adapter_wifi ;
35
35
// Networking adapters for Raspberry Pi Pico W-series
36
- #elif defined(ARDUINO_RASPBERRY_PI_PICO_W ) || defined (ARDUINO_RASPBERRY_PI_PICO_2W )
36
+ #elif defined(ARDUINO_RASPBERRY_PI_PICO_W ) || \
37
+ defined(ARDUINO_RASPBERRY_PI_PICO_2W )
37
38
#include "adapters/wifi/ws_wifi_pico.h"
38
39
typedef ws_wifi_pico ws_adapter_wifi ;
39
40
// Networking adapter for Arduino Nano 33 IoT and MKR WiFi 1010
You can’t perform that action at this time.
0 commit comments