- 添加CDC_PROTO_TYPE_LED_STATE、CDC_PROTO_TYPE_TIME_SYNC和 CDC_PROTO_TYPE_THEME_RGB协议类型定义 - 在protobuf中定义LedState、TimeSync和ThemeRgb消息结构 - 更新CdcPacketBody消息以包含新的协议类型 - 增加协议能力标志位以支持新功能
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_ */
|