393 Commits

Author SHA1 Message Date
4123071ff5 update wifi lib
1. fix the incorrect tx complete state issue(44ce2e2d)
2019-01-12 01:51:03 +08:00
63d4b62799 update wifi lib
Fix wrongly deleting hardware BA index bug (bdbcfd65)
2019-01-11 16:29:35 +08:00
52954605fe update wifi lib
1. Defragmentation only for data frame(8d14c33c)
2019-01-07 20:34:35 +08:00
444e7d878a update wifi lib
fix the bug that STA can scan the channel out of the country regdomain range (6b443423)
2019-01-03 17:52:03 +08:00
01d7f5941c update wifi lib
1. unforce wifi if receiving beacon with no data buffered in dream
state(f2304933)
2018-12-28 17:08:47 +08:00
9e729f3065 mesh: update libs (010fa56)
1. when no parent is found, send probe request via broadcast.
2. fix memory leak caused by the remove announcement being sent is not released when esp_mesh_stop() is called.
3. fix modify IE encrypt after mesh is started.
4. ignore esp_mesh_connect() if mesh automatic reconnection is enabled.
5. fix reason is cleared before vote is done.
2018-12-26 16:03:28 +08:00
a709618051 mesh: update libs(38990be)
1. fix STAs can not detect disconnection from AP when encrypt transmission is used.
2. fix can not find hidden APs.
3. for root, modify the active scan time to 120ms.
4. remove all rc when clear parent Wi-Fi configuration.
5. fix error in checking Wi-Fi commit ID.
2018-12-20 12:08:06 +08:00
a44e39fc0d wifi: fix wifi rx fails (caa46f6)
1. add MAC reset.
2. update libphy.a from 4000 to 4006.
2018-12-18 23:35:17 +08:00
2282e7a684 update wifi lib
Fix the bug caused by wifi stop in WiFi/BT coexist mode (15d2f364)
2018-12-17 20:32:03 +08:00
19162cc2a1 fix two bluetooth bugs that caused by coexist module
1. Fix interrupt watchdog timeout in bluetooth "btdm_bb_isr" (328353e)
2. Fix BLE assert(512) or assert(1536)  in rwble.c at line 222 (119aa1d)
3. update libcoexist.a version to v1.1.2
2018-12-03 19:39:07 +08:00
e33ab451f5 Update wifi lib
modify wifi log for scan and connect(f13940c)
2018-11-29 20:39:39 +08:00
b16383705d mesh: add network channel switch function (12de5f4)
1. support csa function
   - users can obtain the new channel through the event MESH_EVENT_CHANNEL_SWITCH.
   - the entire network will be moved to the same channel as the router without user intervention.
   - if no router is in the network, users can call esp_mesh_switch_channel() on the root side to move the entire network to their desired channel.
2. support not configuring the network channel.
3. support not configuring the router BSSID even if the router is hidden.
4. add allow_channel_switch to mesh configuration.
   - if the channel is not specified, this value will be ignored.
   - if the channel is specified and this value is set, when "fail" (mesh_attempts_t) times of parent selection or look for networks are reached,
     device will change to perform a full channel scan for networks that could join.
   - if the channel is specified and this value is set to 0, when a root is not elected, channel switch is not allowed. but when a root appears,
     the root performs a full channel scan during the process of connecting to the router, so even allow_channel_switch is set to 0, the root may
     still switch channel and eventually the entire network changes channel.
5. add allow_router_switch to mesh router configuration.
   - if the BSSID of router is not specified, this value will be ignored.
   - if the BSSID of router is specified and this value is set, when the router of this specified BSSID fails to be found after "fail"
     (mesh_attempts_t) times, the entire network is allowed to switch to another router with the same SSID.
6. modify the root to perform a full channel scan when esp_wifi_connect().
7. support handling beacon without IE of DS Parameter Set.
2018-11-27 23:33:12 +08:00
892a63089b update wifi lib
Fix some wifi bugs(abbd416e)
1. Enable RX BAR
2. Fix the bug that ESP32 AP negotiates with iphone to 11g
3. Fix the bug that ESP32 STA has ap_loss because CMCC AP contains two SSID
2018-11-22 08:32:00 +08:00
f2e25be802 mesh: bugfix (e9b832)
1. fix failture of mesh stop caused by block-sending.
2. fix when FIXED_ROOT is set, 2nd layer devices can not receive mesh event ESP_ERR_MESH_NO_PARENT_FOUND.
3. fix when FIXED_ROOT is set and the root turns off mesh function, 2nd layer devices do not look for new parents.
4. add APIs esp_mesh_disconnect() and esp_mesh_connect().
5. disconnect from parent/router when the DSSS channel in received beacon is different from the home channel.
6. remove nvs task to release 3k bytes memory.
2018-11-21 19:11:34 +08:00
f013881696 Update wifi lib
bugfix of add connected event of softap after 4 way(dbc5dd2e)
2018-11-16 20:36:02 +08:00
93b9dba46f Update wifi lib (8182a24)
fix the bug that if station (sleep is enabled) and sniffer are enabled at the same time,
when disable sniffer, station will never enable phy and rf again.
2018-11-14 14:40:43 +08:00
e8e4affd6a mesh: update libs (fbe0c4)
1. fix ap_loss that occurs when the parent turns off the mesh function and becomes a normal WiFi with a different SSID.
2. add an event MESH_EVENT_NETWORK_STATE that contains information about whether there is a root in the current network.
3. modify the mechanism of mesh IE update.
4. fix a problem in the process of re-voting to select the root, the device that does not meet the conditions of being a root votes for itself.
5. fix an issue that occurs in esp_mesh_recv_toDS() when stopping the mesh.
6. when the user specifies a parent for the device, the device will set the authmode and password of its AP mode to the same value as the specified parent.
7. add two disconnected reason codes MESH_REASON_EMPTY_PASSWORD and MESH_REASON_PARENT_UNENCRYPTED.
2018-10-31 21:25:00 +08:00
ee0d0b152f Update wifi lib
bugfix of assert when do wps with mikrotik(a85ca5ef)
2018-10-29 21:25:46 +08:00
b9b1d79975 update wifi lib
Fix some WiFi bugs (5bb80782):
1. Fix the bug that MIC verification fails on soft-AP mode
2. Modify mesh root to have same behavior as normal WiFi STA in state change
3. Fix the bug that sniffer can't catch control packets
4. Fix crash bug in soft-AP mode
5. Fix ACM(Admission Control Management) bug
2018-10-25 11:53:21 +08:00
c52f13bb77 update wifi lib
Fix WiFi memory leak (3f769b91)
2018-10-21 20:35:52 +08:00
f0da16578c update coexist version to v1.1.0 (3f23198)
bugfix:
    1. fix the bug by resolve previous coexist hw blocking bug,
       it may cause some assert like rwble.c (64,0) 222
    2. resolve the bug reduce ble scan performance.
feature:
    1. update version to v1.1.0
2018-10-18 11:48:08 +08:00
5b468952c7 mesh: fix a bug in generating ESP-SSID IE (6c35f9)
MR !573
1. wifi: if Wi-Fi is not scanning, ignore beacons from different channels.
2018-10-17 17:41:39 +08:00
2f5fc77efd update wifi lib
Update WiFi lib to fix WiFi Timer bug (b0bccfae)
2018-10-17 09:45:17 +08:00
9790499df4 update wifi lib
Several bugfix/optimizations about blockack session setup (a3be6390)
1. Fix the bug that ESP32 will reject the retry AddBA request frame
   if AddBA response frame is failed to sent by WiFi LMAC
2. Fix the bug that AddBA request retrys too frequently
3. Forbid BA session setup for VO queue related TID
2018-10-09 12:05:43 +08:00
df485b43e9 Update wifi lib
bug fix of no disconnect event report if no correct status code report(75aab56c)
2018-09-27 15:54:51 +08:00
b957828199 fix coexist hardware blocking bug (addc5bd)
fix the bug following:
1. when software coexist working, there's a little ratio cause wifi task watchdog timeout
2. when software coexist working, there's a little ratio cause bluetooth cannot receive anything.

Known issues:
1. there's still a bug occurs with a very very low ratio cause bluetooth cannot receive anything.
   The reproduce interval may great than 3days ~ 1week via 7x24 hours heavy testing.
2018-09-26 21:24:11 +08:00
912dedb942 mesh: decoupling (9ac9f5)
MR !560
Remove dependencies which cause mesh code to be linked even if mesh is not used.
2018-09-25 23:48:14 +08:00
c5cc689830 update wifi lib
1. esptouch supports both multicast and broadcast packets(7777e951)
2018-09-25 10:36:59 +08:00
2f74d17a63 mesh: bugfix (e27cdc)
MR !565
1. suppport mesh type, mesh ID, router and IE crypt func&key at any time after mesh is initalized.
2. support modify parent at any time after mesh is configured.
3. fix issues in root conflicts handling.
4. modify mesh nvs storage type same as Wi-Fi.
5. add max length of beacon to menuconfig.
6. add check for the channel value in the received beacon to filter out APs without DSSS.
2018-09-23 21:05:54 +08:00
05aa0f411d Update wifi lib
bugfix of two sceanrio may cause no disconnect event report(7f4442cb)
2018-09-21 14:17:35 +08:00
8071dade6e Update wifi lib
Fix AMPDU sequence compitability issue (d8b211c2)
2018-09-17 13:55:53 +08:00
65089cdd53 Update wifi lib
bugfix of optimize scan capability in all channel scan(7e3a527)
2018-09-14 22:20:47 +08:00
4b0f2d2582 update wifi lib
fix some modem sleep bugs(f9a3bf511)

1. set wait beacon flag at TBTT no matter which state it is on.

2. send wake null data before sending data on dream and sleep state.

3. decrease wake ahead time to 1ms
2018-09-13 11:33:54 +08:00
41fa9a1ed0 update wifi lib
1. update api to set csi channel filter and ht_ltf data generating
method(d5562815)

update phy lib to v4000(37ebdfac)

2. Add filter reset to do RXIQ

3. Change freq_offset step from 16k to 4k

4. void phy_chan_filt_set(bool filt_en, bool merge_en)

5. Add chan14_mic_enable(bool en, s8 most_pwr)

6. Use esp_dport_access_reg_read() to read DPORT REG
2018-09-05 16:06:32 +08:00
ea4bb37b0f Update wifi lib
1. fix the esp_wifi_disconnect() error when wifi is not started or inited (ece97c4)
2. make osi variable in DRAM (ece97c4)
2018-08-31 10:20:46 +08:00
1373c2075a update wifi lib
1. reorder mpdu as ampdu(54ef8ed6)
2018-08-30 11:37:58 +08:00
4c69c1ad8d mesh: bugfix and two new APIs(c508db)
MR !548
1. fix hard to find the parent during connect.
2. new APIs: esp_mesh_get_subnet_nodes_num() and esp_mesh_get_subnet_nodes_list().
3. disable Wi-Fi channel switch function.
4. fix set an error password for switch candidate.
5. fix root_cap incorrect if root has no child associated
2018-08-27 19:07:25 +08:00
2cb4ce3da5 Update wifi lib
Update WiFi lib to fix several WiFi bugs(d9df9432)
1. Shouldn't scan when connect
2. Check beacon length in modem sleep
3. Fix the bug that AP may deauth wrong station when inactivity timer expires
4. Fix the bug that WiFi assert the system when receiving empty MCS in association response frame
2018-08-26 12:35:24 +08:00
3a316e1487 Update wifi lib
stop user scan when connecting(41e88392)
2018-08-15 11:54:23 +08:00
3a57e71988 Update wifi lib (633012a)
fix the bug for Android getting IP fail
2018-08-14 14:05:55 +08:00
acade41cab mesh: modify parent switch mechanism (7aac1f)
MR !531
1. modify parent switch mechanism.
2. fix non-root doesn't clear the layer value in nvs.
3. fix retransmit the remove announcement packets.
4. add API esp_mesh_flush_upstream_packets().
5. automatically adjust passsive scan time based on the change of beacon interval.
2018-08-08 13:21:05 +08:00
ecd7e6ee23 Update wifi lib
fix the bug in all channel scan(202823a7)
1. enable scan threshold in all channel scan
2. Prohibit connect to open ap if set password
2018-08-06 19:47:36 +08:00
decb309e65 Update wifi lib
change wifi behavior and fix bug(080fce7d)
1. fix ap loss
2. change station state machine when receive deauth and disassoc
3. format reason code when state machine change
2018-08-05 13:34:34 +08:00
828e457736 fix bug that wifi sleep before receive beacon
update wifi lib (807e784)

it will resolve the problem:
1. when bluetooth is running (For example: a2dp sink), wifi station cannot connect to AP easily
2. improve wifi connection success ratio when coexist is working
2018-08-01 15:03:02 +08:00
0fcb4e42f6 Update wifi lib
Fix several wpa2 enterprise issues(c6717b46)
1. Fix heap corrupted bug
2. Fix memory leak bug
3. Make wpa2 enterprise thread-safe
2018-07-31 15:43:29 +08:00
335b4755a9 Update wifi lib
fix wifi bugs(24d554eb)
1. fix wifi ap loss bug
2. change station state machine behavior
2018-07-30 17:09:17 +08:00
147e6c20e1 Update wifi lib
add compatible to ccmp encryption(e4d8ac58)
2018-07-21 14:30:48 +08:00
a6030d0879 fix coex pause bug cause BLE connection not stable(2b4abba)
After wifi sleep, coex is paused, but not switch RF to Bluetooth sometimes. So it cause BLE connection lost
2018-07-17 21:06:26 +08:00
5542102fc7 wifi: fix ampdu duplicate issue
fix ampdu duplicate issue(8fab8d1)
2018-07-16 17:09:51 +08:00
5f68b74f20 update wifi lib
1. check WiFi library git commit id in unit test(45f60804)
2018-07-12 17:48:32 +08:00