mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-03 22:08:28 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// Copyright 2015-2019 Espressif Systems (Shanghai) PTE LTD
 | 
						|
//
 | 
						|
// Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
// you may not use this file except in compliance with the License.
 | 
						|
// You may obtain a copy of the License at
 | 
						|
 | 
						|
//     http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
//
 | 
						|
// Unless required by applicable law or agreed to in writing, software
 | 
						|
// distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
// See the License for the specific language governing permissions and
 | 
						|
// limitations under the License.
 | 
						|
 | 
						|
#include "esp_netif.h"
 | 
						|
#include "esp_wifi_default.h"
 | 
						|
#if CONFIG_ETH_ENABLED
 | 
						|
#include "esp_eth.h"
 | 
						|
#endif
 | 
						|
 | 
						|
//
 | 
						|
// Purpose of this module is to provide
 | 
						|
//  - general esp-netif definitions of default objects for STA, AP, ETH
 | 
						|
//  - default init / create functions for basic default interfaces
 | 
						|
//
 | 
						|
 | 
						|
#define IP4TOUINT32(a,b,c,d) (((uint32_t)((a) & 0xffU) << 24) | \
 | 
						|
                               ((uint32_t)((b) & 0xffU) << 16) | \
 | 
						|
                               ((uint32_t)((c) & 0xffU) << 8)  | \
 | 
						|
                                (uint32_t)((d) & 0xffU))
 | 
						|
 | 
						|
#define IP4TOADDR(a,b,c,d) esp_netif_htonl(IP4TOUINT32(a, b, c, d))
 | 
						|
 | 
						|
 | 
						|
//
 | 
						|
// Default configuration of common interfaces, such as STA, AP, ETH
 | 
						|
//
 | 
						|
const esp_netif_inherent_config_t _g_esp_netif_inherent_sta_config = ESP_NETIF_INHERENT_DEFAULT_WIFI_STA();
 | 
						|
 | 
						|
const esp_netif_inherent_config_t _g_esp_netif_inherent_ap_config = ESP_NETIF_INHERENT_DEFAULT_WIFI_AP();
 | 
						|
 | 
						|
const esp_netif_inherent_config_t _g_esp_netif_inherent_eth_config = ESP_NETIF_INHERENT_DEFAULT_ETH();
 | 
						|
 | 
						|
const esp_netif_inherent_config_t _g_esp_netif_inherent_ppp_config = ESP_NETIF_INHERENT_DEFAULT_PPP();
 | 
						|
 | 
						|
const esp_netif_ip_info_t _g_esp_netif_soft_ap_ip = {
 | 
						|
        .ip = { .addr = IP4TOADDR( 192, 168, 4, 1) },
 | 
						|
        .gw = { .addr = IP4TOADDR( 192, 168, 4, 1) },
 | 
						|
        .netmask = { .addr = IP4TOADDR( 255, 255, 255, 0) },
 | 
						|
};
 |