/* * Copyright (c) 2022 Winner Microelectronics Co., Ltd. All rights reserved. * 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. */ /** * @file wm_wifi_config.h * * @brief WM wifi model configure * * @author winnermicro * * Copyright (c) 2015 Winner Microelectronics Co., Ltd. */ #ifndef __WM_WIFI_CONFIG_H__ #define __WM_WIFI_CONFIG_H__ #define CFG_WIFI_ON 1 #define CFG_WIFI_OFF 0 /*******************WIFI INFO************************** Below Switch Only for Reference!!! ********************************************************/ #define TLS_CONFIG_AP CFG_WIFI_ON #define TLS_CONFIG_11N CFG_WIFI_ON #define TLS_CONFIG_USE_VENDOR_IE CFG_WIFI_OFF #define TLS_CONFIG_SOFTAP_11N (CFG_WIFI_ON&& TLS_CONFIG_AP) #define TLS_CONFIG_AP_BEACON_SOFT (CFG_OFF && TLS_CONFIG_AP) #define TLS_CONFIG_AP_OPT_PS (CFG_ON && TLS_CONFIG_AP) /* SOFTAP POWER SAVE */ #define TLS_CONFIG_AP_OPT_FWD (CFG_ON && TLS_CONFIG_AP) /* IP PACKET FORWARD */ #define TLS_CONFIG_WPS CFG_WIFI_OFF /* WPS&EAPOL should be enabled together */ #define TLS_IEEE8021X_EAPOL CFG_WIFI_OFF #define TLS_CONFIG_1SSID_MULTI_PWD CFG_WIFI_ON #define TLS_CONFIG_FAST_JOIN_NET CFG_WIFI_ON #define TLS_CONFIG_LOG_PRINT CFG_WIFI_ON #endif /* __WM_WIFI_CONFIG_H__ */