mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
tools: fix ci example build report reassign warnning
This commit is contained in:
parent
ee787085f9
commit
ab73e0ff13
@ -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
|
||||
|
@ -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"
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user