fiatlux/firmware/wifi.h

25 lines
364 B
C
Raw Permalink Normal View History

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;
2021-11-16 19:19:02 +00:00
extern SemaphoreHandle_t wan_available_semaphore;
2021-07-18 22:18:16 +00:00
void wifi_task(void *pvParameters);
2021-07-02 16:45:29 +00:00
#ifdef __cplusplus
}
#endif
#endif //FIRMWARE_WIFI_H