diff options
| author | hathach <[email protected]> | 2023-12-11 14:29:11 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2023-12-11 14:29:11 +0700 |
| commit | 721ae45ebbbf679776d9bdc218a483d77b175462 (patch) | |
| tree | aecb30066d8a61fa355bf06ce2e7febc980e9caf /hw | |
| parent | 0642a6d9e7ece8f12090e3d3cf63379284f90a36 (diff) | |
update hil test to support s3
Diffstat (limited to 'hw')
| -rw-r--r-- | hw/bsp/espressif/boards/family.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/bsp/espressif/boards/family.c b/hw/bsp/espressif/boards/family.c index c32ccbc84..325e9ab0f 100644 --- a/hw/bsp/espressif/boards/family.c +++ b/hw/bsp/espressif/boards/family.c @@ -158,7 +158,7 @@ size_t board_get_unique_id(uint8_t id[], size_t max_len) { void board_led_write(bool state) { #ifdef NEOPIXEL_PIN - strip->set_pixel(strip, 0, (state ? 0x88 : 0x00), 0x00, 0x00); + strip->set_pixel(strip, 0, state ? 0x08 : 0x00, 0x00, 0x00); strip->refresh(strip, 100); #endif } |
