]> granicus.if.org Git - esp-idf/commitdiff
tools: fix ci example build report reassign warnning
authorTian Hao <tianhao@espressif.com>
Wed, 8 Aug 2018 11:46:53 +0000 (19:46 +0800)
committerTian Hao <tianhao@espressif.com>
Thu, 16 Aug 2018 03:12:22 +0000 (11:12 +0800)
components/bt/Kconfig
tools/ci/build_examples.sh

index 0a8061de794f9f63bc22c7a4dc8354b36e9fc091..7083abf707ff7c402711c11f3e422bf54e45fb36 100644 (file)
@@ -27,31 +27,31 @@ config BTDM_CONTROLLER_MODE_BTDM
 endchoice
 
 config BTDM_CONTROLLER_BLE_MAX_CONN
-    int "BLE Max Connection Numbers"
+    int "BLE Max Connections"
     depends on BTDM_CONTROLLER_MODE_BLE_ONLY || BTDM_CONTROLLER_MODE_BTDM
     default 3
     range 1 9
     help
-        Maximum connection numbers of BLE controller.
-        Decrease the value will save the memory of DRAM. Each connection will save 1.2KB DRAM
+        BLE maximum connections of bluetooth controller.
+        Each connection uses 1KB static DRAM whenever the BT controller is enabled.
 
 config BTDM_CONTROLLER_BR_EDR_MAX_ACL_CONN
-    int "BR/EDR Max ACL Connection Numbers"
+    int "BR/EDR ACL Max Connections"
     depends on BTDM_CONTROLLER_MODE_BR_EDR_ONLY || BTDM_CONTROLLER_MODE_BTDM
     default 2
     range 1 7
     help
-        Maximum ACL connection numbers of BR/EDR controller.
-        Decrease the value will save the memory of DRAM. Each connection will save 1KB DRAM.
+        BR/EDR ACL maximum connections of bluetooth controller. 
+        Each connection uses 1.2KB static DRAM whenever the BT controller is enabled.
 
 config BTDM_CONTROLLER_BR_EDR_MAX_SYNC_CONN
-    int "BR/EDR Max Sync(SCO/eSCO) Connection Numbers"
+    int "BR/EDR Sync(SCO/eSCO) Max Connections"
     depends on BTDM_CONTROLLER_MODE_BR_EDR_ONLY || BTDM_CONTROLLER_MODE_BTDM
     default 0
     range 0 3
     help
-        Maximum Synchronize connection numbers of BR/EDR controller.
-        Decrease the value will save the memory of DRAM. Each connection will save 2KB DRAM.
+        BR/EDR Synchronize maximum connections of bluetooth controller.
+        Each connection uses 2KB static DRAM whenever the BT controller is enabled.
 
 config BTDM_CONTROLLER_BLE_MAX_CONN_EFF
     int
index f36ff60dfddb274ccb3d0c69922ca152b97bb4e9..a36ab8f80b415adb5ec4bf26eaac5e5f00701245 100755 (executable)
@@ -158,7 +158,7 @@ echo -e "\nFound issues:"
 # "error.o" or "-Werror" in compiler's command line
 # "reassigning to symbol" or "changes choice state" in sdkconfig
 sort -u "${LOG_SUSPECTED}" | \
-grep -v "library/error.o\|\ -Werror\|reassigning to symbol\|changes choice state" \
+grep -v "library/error\.o\|\ -Werror\|error\.d\|reassigning to symbol\|changes choice state" \
     && RESULT=$RESULT_ISSUES \
     || echo -e "\tNone"