23 lines
367 B
C
23 lines
367 B
C
|
|
#ifndef BLINKY_HID_LED_EVENT_H_
|
||
|
|
#define BLINKY_HID_LED_EVENT_H_
|
||
|
|
|
||
|
|
#include <app_event_manager.h>
|
||
|
|
#include <app_event_manager_profiler_tracer.h>
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
struct hid_led_event {
|
||
|
|
struct app_event_header header;
|
||
|
|
uint8_t led_bm;
|
||
|
|
};
|
||
|
|
|
||
|
|
APP_EVENT_TYPE_DECLARE(hid_led_event);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* BLINKY_HID_LED_EVENT_H_ */
|