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
|
endchoice
|
||||||
|
|
||||||
config BTDM_CONTROLLER_BLE_MAX_CONN
|
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
|
depends on BTDM_CONTROLLER_MODE_BLE_ONLY || BTDM_CONTROLLER_MODE_BTDM
|
||||||
default 3
|
default 3
|
||||||
range 1 9
|
range 1 9
|
||||||
help
|
help
|
||||||
Maximum connection numbers of BLE controller.
|
BLE maximum connections of bluetooth controller.
|
||||||
Decrease the value will save the memory of DRAM. Each connection will save 1.2KB DRAM
|
Each connection uses 1KB static DRAM whenever the BT controller is enabled.
|
||||||
|
|
||||||
config BTDM_CONTROLLER_BR_EDR_MAX_ACL_CONN
|
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
|
depends on BTDM_CONTROLLER_MODE_BR_EDR_ONLY || BTDM_CONTROLLER_MODE_BTDM
|
||||||
default 2
|
default 2
|
||||||
range 1 7
|
range 1 7
|
||||||
help
|
help
|
||||||
Maximum ACL connection numbers of BR/EDR controller.
|
BR/EDR ACL maximum connections of bluetooth controller.
|
||||||
Decrease the value will save the memory of DRAM. Each connection will save 1KB DRAM.
|
Each connection uses 1.2KB static DRAM whenever the BT controller is enabled.
|
||||||
|
|
||||||
config BTDM_CONTROLLER_BR_EDR_MAX_SYNC_CONN
|
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
|
depends on BTDM_CONTROLLER_MODE_BR_EDR_ONLY || BTDM_CONTROLLER_MODE_BTDM
|
||||||
default 0
|
default 0
|
||||||
range 0 3
|
range 0 3
|
||||||
help
|
help
|
||||||
Maximum Synchronize connection numbers of BR/EDR controller.
|
BR/EDR Synchronize maximum connections of bluetooth controller.
|
||||||
Decrease the value will save the memory of DRAM. Each connection will save 2KB DRAM.
|
Each connection uses 2KB static DRAM whenever the BT controller is enabled.
|
||||||
|
|
||||||
config BTDM_CONTROLLER_BLE_MAX_CONN_EFF
|
config BTDM_CONTROLLER_BLE_MAX_CONN_EFF
|
||||||
int
|
int
|
||||||
|
@ -158,7 +158,7 @@ echo -e "\nFound issues:"
|
|||||||
# "error.o" or "-Werror" in compiler's command line
|
# "error.o" or "-Werror" in compiler's command line
|
||||||
# "reassigning to symbol" or "changes choice state" in sdkconfig
|
# "reassigning to symbol" or "changes choice state" in sdkconfig
|
||||||
sort -u "${LOG_SUSPECTED}" | \
|
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 \
|
&& RESULT=$RESULT_ISSUES \
|
||||||
|| echo -e "\tNone"
|
|| echo -e "\tNone"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user