2021-07-02 16:45:29 +00:00
|
|
|
//
|
|
|
|
// Created by jedi on 25.06.21.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef FIRMWARE_WIFI_H
|
|
|
|
#define FIRMWARE_WIFI_H
|
|
|
|
|
2021-07-18 22:18:16 +00:00
|
|
|
#include <FreeRTOS.h>
|
|
|
|
#include <semphr.h>
|
|
|
|
|
2021-07-02 16:45:29 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-07-18 22:18:16 +00:00
|
|
|
extern SemaphoreHandle_t wifi_available_semaphore;
|
2022-06-27 18:00:48 +00:00
|
|
|
extern SemaphoreHandle_t wifi_alive;
|
2021-07-18 22:18:16 +00:00
|
|
|
|
2021-07-09 19:42:44 +00:00
|
|
|
void wifi_task(void *pvParameters);
|
|
|
|
|
2021-07-02 16:45:29 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif //FIRMWARE_WIFI_H
|