23 lines
314 B
C
23 lines
314 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;
|
|
|
|
void wifi_task(void *pvParameters);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //FIRMWARE_WIFI_H
|