Files
libretiny/arduino/realtek-ambz/libraries/WiFi/WiFiData.h
2022-06-27 13:03:52 +02:00

19 lines
252 B
C

/* Copyright (c) Kuba Szczodrzyński 2022-06-23. */
#pragma once
#include <Arduino.h>
extern "C" {
#include <FreeRTOS.h>
#include <semphr.h>
} // extern "C"
typedef struct {
bool initialized;
bool sleep;
SemaphoreHandle_t scanSem;
} WiFiData;