mirror of
https://github.com/markqvist/RNode_Firmware.git
synced 2025-05-08 01:25:09 -04:00
Added button input and deep sleep
This commit is contained in:
parent
51172fb68f
commit
73de55c82b
3 changed files with 33 additions and 0 deletions
8
Boards.h
8
Boards.h
|
@ -77,6 +77,8 @@
|
|||
#define HAS_PMU false
|
||||
#define HAS_NP false
|
||||
#define HAS_EEPROM false
|
||||
#define HAS_INPUT false
|
||||
#define HAS_SLEEP false
|
||||
|
||||
#if defined(ENABLE_TCXO)
|
||||
#define HAS_TCXO true
|
||||
|
@ -252,11 +254,16 @@
|
|||
#elif BOARD_MODEL == BOARD_HELTEC32_V3
|
||||
#define IS_ESP32S3 true
|
||||
#define HAS_DISPLAY true
|
||||
#define HAS_INPUT true
|
||||
#define HAS_SLEEP true
|
||||
#define HAS_BLUETOOTH false
|
||||
#define HAS_BLE true
|
||||
// Cannot run wifi and BLE at same time?
|
||||
#define HAS_CONSOLE false
|
||||
#define HAS_EEPROM true
|
||||
#define PIN_WAKEUP GPIO_NUM_0
|
||||
#define WAKEUP_LEVEL 0
|
||||
|
||||
#if defined(EXTERNAL_LEDS)
|
||||
const int pin_led_rx = 13;
|
||||
const int pin_led_tx = 14;
|
||||
|
@ -264,6 +271,7 @@
|
|||
const int pin_led_rx = 35;
|
||||
const int pin_led_tx = 35;
|
||||
#endif
|
||||
const int pin_btn_usr1 = 0;
|
||||
|
||||
#define MODEM SX1262
|
||||
#define HAS_TCXO true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue