24 lines
311 B
C
24 lines
311 B
C
|
//
|
||
|
// Created by jedi on 04.11.21.
|
||
|
//
|
||
|
|
||
|
#ifndef FIRMWARE_NTP_H
|
||
|
#define FIRMWARE_NTP_H
|
||
|
|
||
|
#include <FreeRTOS.h>
|
||
|
#include <semphr.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
extern SemaphoreHandle_t time_available_semaphore;
|
||
|
|
||
|
void sntp_task(void *pvParameters);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif //FIRMWARE_NTP_H
|