mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/btdm_coex_hw_blocking' into 'master'
component/bt : fix coexist hardware blocking bug See merge request idf/esp-idf!3362
This commit is contained in:
commit
6163e1d713
@ -1 +1 @@
|
||||
Subproject commit 3f564c30f0b0a8cd7fbc0064f7d97db1c08bb0e8
|
||||
Subproject commit 18363e9395a2f28473dce38a206c18d62850c67a
|
14
components/bt/test/test_bt_common.c
Normal file
14
components/bt/test/test_bt_common.c
Normal file
@ -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);
|
||||
}
|
@ -1 +1 @@
|
||||
Subproject commit 912dedb9420e936e44fe5f34f7e9ae06909bafd7
|
||||
Subproject commit b9578281990fea536f05d1a6d511c323cedfc50a
|
Loading…
Reference in New Issue
Block a user