Merge branch 'bugfix/btdm_coex_hw_blocking_v3.1' into 'release/v3.1'

component/bt : fix coexist hardware blocking bug

See merge request idf/esp-idf!3363
This commit is contained in:
Ivan Grokhotkov
2018-09-28 11:57:26 +08:00
3 changed files with 16 additions and 2 deletions

View 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);
}