ra8-firmware 0.1.0
Bare-metal firmware for the Renesas RA8 family (RA8D2 / RA8P1)
Loading...
Searching...
No Matches
esp_event_base.h
Go to the documentation of this file.
1
53
54#pragma once
55
56/* The type and macro spellings below are fixed by ESP-IDF: the vendored
57 OS-abstraction vtable names esp_event_base_t in a function-pointer signature
58 and esp_hosted_event.h invokes ESP_EVENT_DECLARE_BASE by name, so neither can
59 take this project's conventions. clang-tidy's naming rule is suppressed
60 across the block, following the ThreadX shim precedent in
61 libs/ra8_wdt_supervisor and the sibling esp_log.h. */
62
78typedef const char* esp_event_base_t;
79
101#define ESP_EVENT_DECLARE_BASE(id) extern const esp_event_base_t id
102
125#define ESP_EVENT_DEFINE_BASE(id) const esp_event_base_t id = #id
const char * esp_event_base_t
Identity of an event-producing subsystem.