mirror of
https://github.com/ADElectronics/RTL00_WEB_VS.git
synced 2024-11-22 07:14:14 +00:00
31 lines
919 B
C
31 lines
919 B
C
|
/*
|
|||
|
* feep_config.h
|
|||
|
*
|
|||
|
* Created on: 06 нояб. 2016 г.
|
|||
|
* Author: PVV
|
|||
|
*/
|
|||
|
|
|||
|
#ifndef _INC_FEEP_CONFIG_H_
|
|||
|
#define _INC_FEEP_CONFIG_H_
|
|||
|
|
|||
|
//#define FEEP_ID_WIFI_CFG 0x4347 // id:'0W', type: struct wlan_fast_reconnect
|
|||
|
//#define FEEP_ID_WIFI_AP_CFG 0x5041 // id:'1W', type: struct rtw_wifi_config_t
|
|||
|
#define FEEP_ID_UART_CFG 0x5530 // id:'0U', type: UART_LOG_CONF
|
|||
|
#define FEEP_ID_LWIP_CFG 0x4C30 // id:'0L', type: struct atcmd_lwip_conf
|
|||
|
#define FEEP_ID_DHCP_CFG 0x4430 // id:'0D', type: struct _sdhcp_cfg
|
|||
|
|
|||
|
typedef struct _sdhcp_cfg {
|
|||
|
uint8_t mode; // =0 dhcp off, =1 - dhcp on, =2 Static ip, =3 - auto
|
|||
|
uint32_t ip;
|
|||
|
uint32_t mask;
|
|||
|
uint32_t gw;
|
|||
|
}dhcp_cfg;
|
|||
|
|
|||
|
/*
|
|||
|
#define FEEP_WRITE_WIFI_CFG(x) flash_write_cfg(x, FEEP_ID_WIFI_CFG, sizeof(struct wlan_fast_reconnect))
|
|||
|
#define FEEP_READ_WIFI_CFG(x) flash_read_cfg(x, FEEP_ID_WIFI_CFG, sizeof(struct wlan_fast_reconnect))
|
|||
|
*/
|
|||
|
|
|||
|
|
|||
|
#endif /* _INC_FEEP_CONFIG_H_ */
|