File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -75,7 +75,6 @@ static char heap[PORT_HEAP_SIZE];
75
75
76
76
void reset_mp (void ) {
77
77
reset_status_led ();
78
- new_status_color (0x8f008f );
79
78
autoreload_stop ();
80
79
81
80
// Sync the file systems in case any used RAM from the GC to cache. As soon
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ void rgb_led_status_init() {
97
97
#if defined(MICROPY_HW_NEOPIXEL ) || (defined(MICROPY_HW_APA102_MOSI ) && defined(MICROPY_HW_APA102_SCK ))
98
98
// Force a write of the current status color.
99
99
uint32_t rgb = current_status_color ;
100
- current_status_color = 0 ;
100
+ current_status_color = 0x1000000 ; // Not a valid color
101
101
new_status_color (rgb );
102
102
#endif
103
103
}
@@ -118,7 +118,7 @@ void new_status_color(uint32_t rgb) {
118
118
return ;
119
119
}
120
120
uint32_t rgb_adjusted = color_brightness (rgb , rgb_status_brightness );
121
- current_status_color = rgb_adjusted ;
121
+ current_status_color = rgb ;
122
122
#endif
123
123
124
124
#ifdef MICROPY_HW_NEOPIXEL
You can’t perform that action at this time.
0 commit comments