esp_wifi_mesh: update wifi mesh libs(d5c1f19)

1. Fix FIX-ROOT does not reconnect to router when disconnect reason is too many
2. Add API esp_mesh_print_scan_result
3. Modify not to reset mesh_xonseq of self and children when flush_upstream_packets
4. Fix not switch to a parent candidate which has the same layer and assoc as current parent
5. Fix not arm parent monitor when a parent candidate is cleared without sending an event to mesh layer
6. Fix the new voted root does not reconnect to router if rssi is weak
This commit is contained in:
shenjun
2020-10-27 23:36:08 +08:00
parent f8f054e999
commit 6e05326fc7
15 changed files with 6 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -32,6 +32,12 @@ for dir in esp32 esp32s2; do
xtensa-esp32-elf-objcopy --redefine-sym printf=net80211_printf libnet80211.a xtensa-esp32-elf-objcopy --redefine-sym printf=net80211_printf libnet80211.a
fi fi
git status libmesh.a | grep "modified" >/dev/null 2>&1
if [ $? -eq 0 ]; then
echo $dir/libmesh.a fixed
xtensa-esp32-elf-objcopy --redefine-sym printf=mesh_printf libmesh.a
xtensa-esp32-elf-objcopy --redefine-sym ets_printf=mesh_printf libmesh.a
fi
git status libcore.a | grep "modified" >/dev/null 2>&1 git status libcore.a | grep "modified" >/dev/null 2>&1
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then