initial commit
This commit is contained in:
29
components/app_bsp/esp_wifi_bsp.h
Normal file
29
components/app_bsp/esp_wifi_bsp.h
Normal file
@@ -0,0 +1,29 @@
|
||||
#ifndef ESP_WIFI_BSP_H
|
||||
#define ESP_WIFI_BSP_H
|
||||
|
||||
#include "freertos/FreeRTOS.h"
|
||||
#include "freertos/event_groups.h"
|
||||
extern EventGroupHandle_t wifi_even_;
|
||||
|
||||
|
||||
typedef struct
|
||||
{
|
||||
char _ip[25];
|
||||
int8_t rssi;
|
||||
int8_t apNum;
|
||||
}esp_bsp_t;
|
||||
extern esp_bsp_t user_esp_bsp;
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void espwifi_init(void);
|
||||
void espwifi_deinit(void);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user