]> granicus.if.org Git - esp-idf/commitdiff
component/bt : fix coexist hardware blocking bug
authorTian Hao <tianhao@espressif.com>
Thu, 20 Sep 2018 04:31:22 +0000 (12:31 +0800)
committerTian Hao <tianhao@espressif.com>
Wed, 26 Sep 2018 13:24:46 +0000 (21:24 +0800)
fix the bug following:
1. after disable bluetooth controller, wifi cannot TX/RX any packets.
2. when software coexist working, there's a little ratio cause wifi task watchdog timeout
3. when software coexist working, there's a little ratio cause bluetooth cannot receive anything.

feature:
1. add libbtdm_app.a git commit local and remote checking

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.

components/bt/lib
components/bt/test/test_bt_common.c [new file with mode: 0644]
components/esp32/lib

index 3f564c30f0b0a8cd7fbc0064f7d97db1c08bb0e8..18363e9395a2f28473dce38a206c18d62850c67a 160000 (submodule)
@@ -1 +1 @@
-Subproject commit 3f564c30f0b0a8cd7fbc0064f7d97db1c08bb0e8
+Subproject commit 18363e9395a2f28473dce38a206c18d62850c67a
diff --git a/components/bt/test/test_bt_common.c b/components/bt/test/test_bt_common.c
new file mode 100644 (file)
index 0000000..6818760
--- /dev/null
@@ -0,0 +1,14 @@
+/*
+ Tests for the BT common things implementation
+*/
+
+#include <stdbool.h>
+
+#include "unity.h"
+
+extern bool btdm_controller_compile_version_check(void);
+
+TEST_CASE("bt_controller_git_commit_check", "[bt_common]")
+{
+    TEST_ASSERT(btdm_controller_compile_version_check() == true);
+}
index 912dedb9420e936e44fe5f34f7e9ae06909bafd7..b9578281990fea536f05d1a6d511c323cedfc50a 160000 (submodule)
@@ -1 +1 @@
-Subproject commit 912dedb9420e936e44fe5f34f7e9ae06909bafd7
+Subproject commit b9578281990fea536f05d1a6d511c323cedfc50a