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.
2 parents c8d9edd + 612ba2f commit 9453e10Copy full SHA for 9453e10
supervisor/shared/rgb_led_status.c
@@ -115,7 +115,7 @@ void rgb_led_status_init() {
115
shared_module_bitbangio_spi_construct(&status_apa102,
116
MICROPY_HW_APA102_SCK,
117
MICROPY_HW_APA102_MOSI,
118
- mp_const_none);
+ NULL);
119
#else
120
if (!common_hal_busio_spi_deinited(&status_apa102)) {
121
// This may call us recursively if common_hal_reset_pin() is called,
@@ -125,7 +125,7 @@ void rgb_led_status_init() {
125
common_hal_busio_spi_construct(&status_apa102,
126
127
128
129
common_hal_busio_spi_never_reset(&status_apa102);
130
#endif
131
// Pretend we aren't using the pins. bitbangio.SPI will
0 commit comments