24 lines
429 B
C
24 lines
429 B
C
|
|
#ifndef BLINKY_CDC_PROTO_TX_EVENT_H_
|
||
|
|
#define BLINKY_CDC_PROTO_TX_EVENT_H_
|
||
|
|
|
||
|
|
#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);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* BLINKY_CDC_PROTO_TX_EVENT_H_ */
|