22 lines
370 B
C
22 lines
370 B
C
|
|
#ifndef BLINKY_USB_PREPARE_EVENT_H_
|
||
|
|
#define BLINKY_USB_PREPARE_EVENT_H_
|
||
|
|
|
||
|
|
#include <app_event_manager.h>
|
||
|
|
#include <app_event_manager_profiler_tracer.h>
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
struct usb_prepare_event {
|
||
|
|
struct app_event_header header;
|
||
|
|
};
|
||
|
|
|
||
|
|
APP_EVENT_TYPE_DECLARE(usb_prepare_event);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* BLINKY_USB_PREPARE_EVENT_H_ */
|