Skip to content

Commit

Permalink
remove hardcode string
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Jan 13, 2025
1 parent ed76fa5 commit 3ce4bfd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/examples/gn_silabs_example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -193,13 +193,13 @@ else
fi
if [ "$2" = "rs9116" ]; then
optArgs+="use_rs9116=true "
NCP_DIR_SUFFIX="/rs9116"
NCP_DIR_SUFFIX="/"$2
elif [ "$2" = "SiWx917" ]; then
optArgs+="use_SiWx917=true "
NCP_DIR_SUFFIX="/SiWx917"
NCP_DIR_SUFFIX="/"$2
elif [ "$2" = "wf200" ]; then
optArgs+="use_wf200=true "
NCP_DIR_SUFFIX="/wf200"
NCP_DIR_SUFFIX="/"$2
else
echo "Wifi usage: --wifi rs9116|SiWx917|wf200"
exit 1
Expand Down

0 comments on commit 3ce4bfd

Please sign in to comment.