Skip to content

Commit 89dbad7

Browse files
committed
Python controller: add build option for ble
If you're just doing local dev, and don't have BLE, the controller take a long time attempting to initialize BLE before timing out. I'd rather not wait.
1 parent 8edcecd commit 89dbad7

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

scripts/build_python.sh

+12-2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ echo_bold_white() {
3737
CHIP_ROOT=$(_normpath "$(dirname "$0")/..")
3838
OUTPUT_ROOT="$CHIP_ROOT/out/python_lib"
3939

40+
declare enable_ble=true
4041
declare chip_detail_logging=false
4142
declare enable_pybindings=false
4243
declare chip_mdns
@@ -53,6 +54,7 @@ help() {
5354
echo "General Options:
5455
-h, --help Display this information.
5556
Input Options:
57+
-b, --enable_ble <true/false> Enable BLE in the controller (default=true)
5658
-d, --chip_detail_logging <true/false> Specify ChipDetailLoggingValue as true or false.
5759
By default it is false.
5860
-m, --chip_mdns ChipMDNSValue Specify ChipMDNSValue as platform or minimal.
@@ -82,6 +84,14 @@ while (($#)); do
8284
help
8385
exit 1
8486
;;
87+
--enable_ble | -b)
88+
enable_ble=$2
89+
if [[ "$enable_ble" != "true" && "$enable_ble" != "false" ]]; then
90+
echo "chip_detail_logging should have a true/false value, not '$enable_ble'"
91+
exit
92+
fi
93+
shift
94+
;;
8595
--chip_detail_logging | -d)
8696
chip_detail_logging=$2
8797
if [[ "$chip_detail_logging" != "true" && "$chip_detail_logging" != "false" ]]; then
@@ -147,7 +157,7 @@ while (($#)); do
147157
done
148158

149159
# Print input values
150-
echo "Input values: chip_detail_logging = $chip_detail_logging , chip_mdns = \"$chip_mdns\", enable_pybindings = $enable_pybindings, chip_case_retry_delta=\"$chip_case_retry_delta\", pregen_dir=\"$pregen_dir\""
160+
echo "Input values: chip_detail_logging = $chip_detail_logging , chip_mdns = \"$chip_mdns\", enable_pybindings = $enable_pybindings, chip_case_retry_delta=\"$chip_case_retry_delta\", pregen_dir=\"$pregen_dir\", enable_ble=\"$enable_ble\""
151161

152162
# Ensure we have a compilation environment
153163
source "$CHIP_ROOT/scripts/activate.sh"
@@ -174,7 +184,7 @@ export SYSTEM_VERSION_COMPAT=0
174184
# Make all possible human redable tracing available.
175185
tracing_options="matter_log_json_payload_hex=true matter_log_json_payload_decode_full=true matter_enable_tracing_support=true"
176186

177-
gn --root="$CHIP_ROOT" gen "$OUTPUT_ROOT" --args="$tracing_options chip_detail_logging=$chip_detail_logging enable_pylib=$enable_pybindings enable_rtti=$enable_pybindings chip_project_config_include_dirs=[\"//config/python\"] $chip_mdns_arg $chip_case_retry_arg $pregen_dir_arg"
187+
gn --root="$CHIP_ROOT" gen "$OUTPUT_ROOT" --args="$tracing_options chip_detail_logging=$chip_detail_logging enable_pylib=$enable_pybindings enable_rtti=$enable_pybindings chip_project_config_include_dirs=[\"//config/python\"] $chip_mdns_arg $chip_case_retry_arg $pregen_dir_arg chip_config_network_layer_ble=$enable_ble chip_enable_ble=$enable_ble"
178188

179189
function ninja_target() {
180190
# Print the ninja target required to build a gn label.

0 commit comments

Comments
 (0)