FastclockRF/src/clockMsg.h

15 lines
224 B
C

#ifndef clockMsg_h_included
#define clockMsg_h_included
struct clockMsg_s {
uint8_t msgType;
uint8_t day;
uint8_t hour;
uint8_t minute;
uint8_t second;
uint16_t millisecond;
};
#define msgType_Clock 'c'
#endif