1 2hw_mac = MAC_ADDR 3hw_mac_2 = MAC2ADDR 4 5############################################################ 6# MAC address 7# 8# Priority 1. From wifi.cfg [ hw_mac & hw_mac_2 ] 9# 10# Priority 2. From e-fuse[ON/OFF switch by wifi.cfg] 11# 12# Priority 3. From insert module parameter 13# 14# Priority 4. From external file path 15# path only support some special charater "_" ":" "/" "." "-" 16# 17# Priority 5. Default[Software mode] 18# 19# 0. => 00:33:33:33:33:33 20# 1. => Always random 21# 2. => First random and write to file[Default path mac_output_path] 22# 23############################################################ 24#ignore_efuse_mac = 1 25#mac_address_path = /xxxx/xxxx 26#mac_address_mode = 0 27#mac_output_path = /data/wifimac 28 29################################################## 30# Firmware setting 31# Priority.1 insmod parameter "cfgfirmwarepath" 32# Priority.2 firmware_path 33# Priority.3 default firmware 34################################################## 35#firmware_path = /lib/firmware/ 36 37################################################## 38# Hardware setting 39# 40#volt regulator(DCDC-0 LDO-1) 41# 42################################################## 43xtal_clock = 26 44volt_regulator = 1 45 46################################################## 47# Default channel after wifi on 48# value range: [1 ~ 14] 49################################################## 50def_chan = 6 51 52# Hardware Capability Settings: 53################################################## 54hw_cap_ht = on 55hw_cap_gf = off 56hw_cap_2ghz = on 57hw_cap_5ghz = off 58hw_cap_security = on 59hw_cap_sgi_20 = on 60hw_cap_sgi_40 = off 61hw_cap_ap = on 62hw_cap_p2p = on 63hw_cap_ampdu_rx = on 64hw_cap_ampdu_tx = on 65use_wpa2_only = 1 66 67################################################## 68# TX power level setting [0-14] 69# The larger the number the smaller the TX power 70# 0 - The maximum power 71# 1 level = -0.5db 72################################################## 73wifi_tx_gain_level_b = 6 74wifi_tx_gain_level_gn = 4 75 76 77