File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change
1
+ // This file is here only to silence warnings from Arduino IDE
2
+ // Currently IDE doesn't support no-code libraries, like this collection of example sketches.
Original file line number Diff line number Diff line change 12
12
{
13
13
"name" : " esp32_bluepad32" ,
14
14
"architecture" : " esp32" ,
15
- "version" : " 3.7.0-2.0.7 " ,
15
+ "version" : " 3.7.0" ,
16
16
"category" : " Contributed" ,
17
17
"url" : " https://gitlab.com/ricardoquesada/bluepad32/uploads/9b79b1b9d3249782b9d08693f390ce94/bluepad32-arduino-v3.7.0.zip" ,
18
18
"archiveFileName" : " esp32-bluepad32-3.7.0.zip" ,
Original file line number Diff line number Diff line change 1
- #include < Arduino.h>
2
1
#include < Bluepad32.h>
3
2
4
3
GamepadPtr myGamepads[BP32_MAX_GAMEPADS];
@@ -139,5 +138,12 @@ void loop() {
139
138
}
140
139
}
141
140
141
+ // The main loop must have some kind of "yield to lower priority task" event.
142
+ // Otherwise the watchdog will get triggered.
143
+ // If your main loop doesn't have one, just add a simple `vTaskDelay(1)`.
144
+ // Detailed info here:
145
+ // https://stackoverflow.com/questions/66278271/task-watchdog-got-triggered-the-tasks-did-not-reset-the-watchdog-in-time
146
+
147
+ // vTaskDelay(1);
142
148
delay (150 );
143
149
}
You can’t perform that action at this time.
0 commit comments