Files
jcalendar_750C/include/_sntp.h
2025-05-09 14:04:45 +08:00

15 lines
273 B
C

#ifndef ___SNTP_H__
#define ___SNTP_H__
int _sntp_status();
void _sntp_exec(int status = 0);
typedef enum {
SYNC_STATUS_IDLE = -1,
SYNC_STATUS_IN_PROGRESS = 0,
SYNC_STATUS_OK = 1,
SYNC_STATUS_NOK = 2,
SYNC_STATUS_TOO_LATE = 3
} _sntp_status_t;
#endif