mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-08 13:41:28 +00:00
![Thomas Göttgens](/assets/img/avatar_default.png)
This reverts commit5cc8ca59a3
. Revert "Sync Wio lr1110 refresh with master (#4251)" This reverts commitd97e6b86b8
. Revert "update SD_FLASH_SIZE to 0x27000 (#4232)" This reverts commit2df8093fef
.
18 lines
378 B
C
18 lines
378 B
C
/**
|
|
* @brief This class enables on the fly software and hardware setup.
|
|
* It will contain all command messages to change internal settings.
|
|
*/
|
|
|
|
enum class Cmd {
|
|
INVALID,
|
|
SET_ON,
|
|
SET_OFF,
|
|
ON_PRESS,
|
|
START_ALERT_FRAME,
|
|
STOP_ALERT_FRAME,
|
|
START_FIRMWARE_UPDATE_SCREEN,
|
|
STOP_BOOT_SCREEN,
|
|
PRINT,
|
|
SHOW_PREV_FRAME,
|
|
SHOW_NEXT_FRAME
|
|
}; |