mirror of
https://github.com/markqvist/OpenModem.git
synced 2025-07-24 15:55:17 -04:00
Basic SD card functions
This commit is contained in:
parent
6258e1e62e
commit
23b6de25fb
16 changed files with 6133 additions and 155 deletions
|
@ -9,6 +9,7 @@ void LED_setIntensity(uint8_t value);
|
|||
|
||||
#define LED_STATUS_ON() do { LED_PORT |= _BV(2); } while (0)
|
||||
#define LED_STATUS_OFF() do { LED_PORT &= ~_BV(2); } while (0)
|
||||
#define LED_STATUS_TOGGLE() do { LED_PORT ^= _BV(2); } while (0)
|
||||
#define LED_TX_ON() do { LED_PORT |= _BV(1); } while (0)
|
||||
#define LED_TX_OFF() do { LED_PORT &= ~_BV(1); } while (0)
|
||||
#define LED_RX_ON() do { LED_PORT |= _BV(0); } while (0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue