Loading...
Searching...
No Matches

Parameters for the ESP SoCs WiFi netdev interface. More...

Detailed Description

Parameters for the ESP SoCs WiFi netdev interface.

Author
Gunar Schorcht gunar.nosp@m.@sch.nosp@m.orcht.nosp@m..net

Definition in file esp_wifi_params.h.

Go to the source code of this file.

Set default configuration parameters for the ESP WiFi netdev driver

#define ESP_WIFI_STACKSIZE   (THREAD_STACKSIZE_DEFAULT)
 The size of the stack used for the ESP WIFI netdev driver thread.
 
#define ESP_WIFI_PRIO   (GNRC_NETIF_PRIO)
 The priority of the ESP WiFi netdev driver thread.
 
#define WIFI_SSID   "RIOT_AP"
 SSID of the AP to be used.
 
#define WIFI_PASS   "ThisistheRIOTporttoESP"
 Passphrase used for the AP as clear text (max.
 
#define ESP_WIFI_SSID_DYNAMIC   0
 Use dynamic SSID for the SoftAP.
 
#define ESP_WIFI_SSID_HIDDEN   (0)
 Whether SoftAP SSID should be hidden.
 
#define ESP_WIFI_MAX_CONN   (4)
 WiFi SoftAP maximum connections (max.
 
#define ESP_WIFI_BEACON_INTERVAL   (100)
 WiFi SoftAP beacon interval, in milliseconds.
 

Macro Definition Documentation

◆ ESP_WIFI_BEACON_INTERVAL

#define ESP_WIFI_BEACON_INTERVAL   (100)

WiFi SoftAP beacon interval, in milliseconds.

Definition at line 97 of file esp_wifi_params.h.

◆ ESP_WIFI_MAX_CONN

#define ESP_WIFI_MAX_CONN   (4)

WiFi SoftAP maximum connections (max.

4).

Definition at line 90 of file esp_wifi_params.h.

◆ ESP_WIFI_PRIO

#define ESP_WIFI_PRIO   (GNRC_NETIF_PRIO)

The priority of the ESP WiFi netdev driver thread.

Should not be changed.

Definition at line 41 of file esp_wifi_params.h.

◆ ESP_WIFI_SSID_DYNAMIC

#define ESP_WIFI_SSID_DYNAMIC   0

Use dynamic SSID for the SoftAP.

If set to 1, the SSID for the SoftAP is generated dynamically by extending the defined SSID (WIFI_SSID) with the MAC address of the SoftAP interface used, e.g.: RIOT_AP_aabbccddeeff

Definition at line 76 of file esp_wifi_params.h.

◆ ESP_WIFI_SSID_HIDDEN

#define ESP_WIFI_SSID_HIDDEN   (0)

Whether SoftAP SSID should be hidden.

Definition at line 83 of file esp_wifi_params.h.

◆ ESP_WIFI_STACKSIZE

#define ESP_WIFI_STACKSIZE   (THREAD_STACKSIZE_DEFAULT)

The size of the stack used for the ESP WIFI netdev driver thread.

Definition at line 34 of file esp_wifi_params.h.

◆ WIFI_PASS

#define WIFI_PASS   "ThisistheRIOTporttoESP"

Passphrase used for the AP as clear text (max.

64 chars).

Definition at line 59 of file esp_wifi_params.h.

◆ WIFI_SSID

#define WIFI_SSID   "RIOT_AP"

SSID of the AP to be used.

Definition at line 51 of file esp_wifi_params.h.