mirror of
https://github.com/Mercantec-GHC/h5-projekt-mst.git
synced 2026-08-26 21:27:38 +02:00
11 lines
181 B
C
11 lines
181 B
C
#pragma once
|
|
|
|
#include "freertos/idf_additions.h"
|
|
|
|
typedef struct AppWifi {
|
|
EventGroupHandle_t event_group;
|
|
int wifi_retries;
|
|
} AppWifi;
|
|
|
|
void app_wifi_init(AppWifi* wifi);
|