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

24 lines
364 B
C

//
// Created by jedi on 25.06.21.
//
#ifndef FIRMWARE_WIFI_H
#define FIRMWARE_WIFI_H
#include <FreeRTOS.h>
#include <semphr.h>
#ifdef __cplusplus
extern "C" {
#endif
extern SemaphoreHandle_t wifi_available_semaphore;
extern SemaphoreHandle_t wan_available_semaphore;
void wifi_task(void *pvParameters);
#ifdef __cplusplus
}
#endif
#endif //FIRMWARE_WIFI_H