mirror of
https://github.com/markqvist/RNode_Firmware.git
synced 2025-12-18 01:44:25 -05:00
Add E-Ink display driver and chip detection for VME213
- Implemented LCMEN2R13EFC1 display driver in src/LCMEN2R13EFC1.h, supporting full and fast refresh modes. - Added E-Ink chip detection functionality in src/einkDetect_VME213.h to differentiate between LCMEN213EFC1 and E0213A367. - Included GNU General Public License text in tools/LICENSE.txt. - Added arduino-cli executable to tools directory.
This commit is contained in:
parent
5b7b0d3afe
commit
31e12f3bd4
41 changed files with 14273 additions and 3 deletions
|
|
@ -322,6 +322,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