Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Silabs] Add a dedicated option for PW_RPC #30239

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion scripts/examples/gn_silabs_example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ if [ "$#" == "0" ]; then
Build wifi example with extension board SiWx917. (Default false)
use_wf200
Build wifi example with extension board wf200. (Default false)
'import("//with_pw_rpc.gni")'
use_pw_rpc
Use to build the example with pigweed RPC
ota_periodic_query_timeout_sec
Periodic query timeout variable for OTA in seconds
Expand Down Expand Up @@ -242,6 +242,10 @@ else
USE_SLC=true
shift
;;
--use_pw_rpc)
optArgs+="import(\"//with_pw_rpc.gni\") "
shift
;;
--slc_reuse_files)
optArgs+="slc_reuse_files=true "
USE_SLC=true
Expand Down
Loading