add efidatetime_t type

This commit is contained in:
Nathan Schulte 2022-11-21 02:43:30 -06:00 committed by rusefillc
parent 9dd13fd44f
commit b8dee91e09
1 changed files with 11 additions and 0 deletions

View File

@ -75,6 +75,17 @@ using efitimems64_t = int64_t;
*/
using efitimems_t = uint32_t;
// date-time struct a la ctime struct tm
typedef struct {
uint32_t year;
uint8_t month;
uint8_t day;
uint8_t hour;
uint8_t minute;
uint8_t second;
// uint16_t millisecond;
} efidatetime_t;
using angle_t = float;
using engineSyncCam_e = uint8_t;