We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e79e83e commit 21fcb68Copy full SHA for 21fcb68
supervisor/shared/bluetooth/bluetooth.c
@@ -229,7 +229,7 @@ void supervisor_bluetooth_init(void) {
229
}
230
#endif
231
while (diff < 1000) {
232
- #ifdef CIRCUITPY_STATUS_LED
+ #if CIRCUITPY_STATUS_LED
233
// Blink on for 50 and off for 100
234
bool led_on = boot_in_discovery_mode || (diff % 150) <= 50;
235
if (led_on) {
supervisor/shared/safe_mode.c
@@ -69,7 +69,7 @@ safe_mode_t wait_for_safe_mode_reset(void) {
69
uint64_t diff = 0;
70
bool boot_in_safe_mode = false;
71
72
73
// Blink on for 100, off for 100
74
bool led_on = (diff % 250) < 125;
75
0 commit comments