11 lines
166 B
C
11 lines
166 B
C
#pragma once
|
|
|
|
typedef enum _SntpState
|
|
{
|
|
SYNC_SUCCESSFUL,
|
|
SYNC_NOT_STARTED,
|
|
SYNC_FAILED,
|
|
} eSntpState;
|
|
|
|
void initSntp(void);
|
|
eSntpState getSntpState(void); |