This commit is contained in:
cuboza 2025-11-22 14:34:16 -03:00 committed by GitHub
commit 71092c02db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
41 changed files with 14273 additions and 3 deletions

View file

@ -326,6 +326,14 @@ uint8_t boot_vector = 0x00;
void led_tx_off() { digitalWrite(pin_led_tx, LED_OFF); }
void led_id_on() { }
void led_id_off() { }
#elif BOARD_MODEL == BOARD_VME213
// VME213 has no physical LEDs, only E-Ink display
void led_rx_on() { }
void led_rx_off() { }
void led_tx_on() { }
void led_tx_off() { }
void led_id_on() { }
void led_id_off() { }
#elif BOARD_MODEL == BOARD_HUZZAH32
void led_rx_on() { digitalWrite(pin_led_rx, HIGH); }
void led_rx_off() { digitalWrite(pin_led_rx, LOW); }