// // Created by jedi on 25.06.21. // #ifndef FIRMWARE_WIFI_H #define FIRMWARE_WIFI_H #include #include #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