fiatlux/firmware/ntp.h
2021-11-21 00:37:10 +01:00

23 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