mirror of
https://github.com/markqvist/RNode_Firmware.git
synced 2025-12-18 01:44:25 -05:00
Merge 31e12f3bd4 into 7f868c6c28
This commit is contained in:
commit
71092c02db
41 changed files with 14273 additions and 3 deletions
|
|
@ -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); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue