sntp module

This commit is contained in:
2024-12-19 20:33:51 +01:00
parent 0b9f5e2997
commit e5bb620a37
8 changed files with 94 additions and 67 deletions

View File

@ -0,0 +1,11 @@
#pragma once
typedef enum _SntpState
{
SYNC_SUCCESSFUL,
SYNC_NOT_STARTED,
SYNC_FAILED,
} eSntpState;
void initSntp(void);
eSntpState getSntpState(void);