fiatlux/firmware/wifi.h
2023-02-16 11:38:59 +01:00

24 lines
351 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 wifi_alive;
void wifi_task(void *pvParameters);
#ifdef __cplusplus
}
#endif
#endif //FIRMWARE_WIFI_H