mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-02 18:59:56 +00:00
14 lines
262 B
C
14 lines
262 B
C
|
#pragma once
|
||
|
|
||
|
#include "Fsm.h"
|
||
|
|
||
|
// See sw-design.md for documentation
|
||
|
|
||
|
#define EVENT_PRESS 1
|
||
|
#define EVENT_WAKE_TIMER 2
|
||
|
#define EVENT_RECEIVED_PACKET 3
|
||
|
#define EVENT_PACKET_FOR_PHONE 4
|
||
|
#define EVENT_RECEIVED_TEXT_MSG 5
|
||
|
#define EVENT_BOOT 6
|
||
|
|
||
|
extern Fsm powerFSM;
|