Add firmware function events

This commit is contained in:
2026-04-11 11:43:45 +08:00
parent 27e16df141
commit 3bf1377e56
5 changed files with 166 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
#include "function_bitmap_event.h"
static void log_function_bitmap_event(const struct app_event_header *aeh)
{
const struct function_bitmap_event *event =
cast_function_bitmap_event(aeh);
APP_EVENT_MANAGER_LOG(aeh, "len=%u", event->dyndata.size);
}
static void profile_function_bitmap_event(struct log_event_buf *buf,
const struct app_event_header *aeh)
{
const struct function_bitmap_event *event =
cast_function_bitmap_event(aeh);
nrf_profiler_log_encode_uint16(buf, event->dyndata.size);
}
APP_EVENT_INFO_DEFINE(function_bitmap_event,
ENCODE(NRF_PROFILER_ARG_U16),
ENCODE("len"),
profile_function_bitmap_event);
APP_EVENT_TYPE_DEFINE(function_bitmap_event,
log_function_bitmap_event,
&function_bitmap_event_info,
APP_EVENT_FLAGS_CREATE(APP_EVENT_TYPE_FLAGS_INIT_LOG_ENABLE));