23 lines
419 B
C
23 lines
419 B
C
|
|
#ifndef BLINKY_BLE_SERIAL_RX_EVENT_H_
|
||
|
|
#define BLINKY_BLE_SERIAL_RX_EVENT_H_
|
||
|
|
|
||
|
|
#include <app_event_manager.h>
|
||
|
|
#include <app_event_manager_profiler_tracer.h>
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
struct ble_serial_rx_event {
|
||
|
|
struct app_event_header header;
|
||
|
|
struct event_dyndata dyndata;
|
||
|
|
};
|
||
|
|
|
||
|
|
APP_EVENT_TYPE_DYNDATA_DECLARE(ble_serial_rx_event);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* BLINKY_BLE_SERIAL_RX_EVENT_H_ */
|