2026-04-13 11:55:59 +08:00
|
|
|
#ifndef BLINKY_CDC_PROTO_TX_EVENT_H_
|
|
|
|
|
#define BLINKY_CDC_PROTO_TX_EVENT_H_
|
|
|
|
|
|
2026-04-14 16:42:04 +08:00
|
|
|
#include <errno.h>
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2026-04-13 11:55:59 +08:00
|
|
|
#include <app_event_manager.h>
|
|
|
|
|
#include <app_event_manager_profiler_tracer.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
struct cdc_proto_tx_event {
|
|
|
|
|
struct app_event_header header;
|
|
|
|
|
uint8_t type;
|
|
|
|
|
struct event_dyndata dyndata;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
APP_EVENT_TYPE_DYNDATA_DECLARE(cdc_proto_tx_event);
|
|
|
|
|
|
2026-04-14 16:42:04 +08:00
|
|
|
static inline int submit_cdc_proto_tx_event(uint8_t type, const uint8_t *payload,
|
|
|
|
|
size_t payload_len)
|
|
|
|
|
{
|
|
|
|
|
struct cdc_proto_tx_event *event;
|
|
|
|
|
|
|
|
|
|
if ((payload == NULL) && (payload_len > 0U)) {
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
event = new_cdc_proto_tx_event(payload_len);
|
|
|
|
|
event->type = type;
|
|
|
|
|
if (payload_len > 0U) {
|
|
|
|
|
memcpy(event->dyndata.data, payload, payload_len);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
APP_EVENT_SUBMIT(event);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-13 11:55:59 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* BLINKY_CDC_PROTO_TX_EVENT_H_ */
|