Files
blinky/src/main.c

19 lines
355 B
C
Raw Normal View History

#include <app_event_manager.h>
2026-04-03 14:25:55 +08:00
#define MODULE main
#include <caf/events/module_state_event.h>
2026-04-03 14:25:55 +08:00
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(MODULE);
2026-04-03 14:25:55 +08:00
int main(void)
{
if (app_event_manager_init()) {
LOG_ERR("Application Event Manager not initialized");
} else {
module_set_state(MODULE_STATE_READY);
}
2026-04-03 14:25:55 +08:00
return 0;
2026-04-03 14:25:55 +08:00
}