Add LOG_POWERFSM and LOG_INPUT debug macros (#8791)

This commit is contained in:
Jonathan Bennett
2025-11-28 19:58:52 -06:00
committed by GitHub
parent 2f0fe4e5da
commit 94db3506bd
5 changed files with 30 additions and 16 deletions

View File

@@ -3,6 +3,12 @@
#include "Observer.h"
#include "freertosinc.h"
#ifdef InputBrokerDebug
#define LOG_INPUT(...) LOG_DEBUG(__VA_ARGS__)
#else
#define LOG_INPUT(...)
#endif
enum input_broker_event {
INPUT_BROKER_NONE = 0,
INPUT_BROKER_SELECT = 10,