This commit is contained in:
2021-03-01 11:16:54 +01:00
parent 991f2724a6
commit 6e73dccd66
5 changed files with 11 additions and 4 deletions

View File

@ -2,10 +2,11 @@
#define _NETWORK_ABSTRACTION_LAYER_IMPL_H_
#include <stdint.h>
#include <stdbool.h>
uint64_t networkSntpQuery();
int8_t networkUdpSend(char *hostname, uint16_t port, uint8_t *buf, uint16_t bufLen);
void networkImplInit();
bool isNetworkAvailable();
#endif /* _NETWORK_ABSTRACTION_LAYER_IMPL_H_ */