27 lines
460 B
C
27 lines
460 B
C
|
|
#ifndef BLINKY_TIME_SYNC_EVENT_H_
|
||
|
|
#define BLINKY_TIME_SYNC_EVENT_H_
|
||
|
|
|
||
|
|
#include <app_event_manager.h>
|
||
|
|
#include <app_event_manager_profiler_tracer.h>
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
struct time_sync_event {
|
||
|
|
struct app_event_header header;
|
||
|
|
uint32_t version;
|
||
|
|
uint32_t flags;
|
||
|
|
int32_t timezone_min;
|
||
|
|
uint64_t utc_ms;
|
||
|
|
uint32_t accuracy_ms;
|
||
|
|
};
|
||
|
|
|
||
|
|
APP_EVENT_TYPE_DECLARE(time_sync_event);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* BLINKY_TIME_SYNC_EVENT_H_ */
|