Skip to content

Commit

Permalink
Pull request #185: Enable WF200 builds
Browse files Browse the repository at this point in the history
Merge in WMN_TOOLS/matter from feature/enable-wf200-builds to silabs

Squashed commit of the following:

commit 5616ddd8ac3927287c0b511b962f9b0e769591a3
Author: Rehan Rasool <[email protected]>
Date:   Tue Oct 11 15:50:46 2022 -0400

    Set is_debug=false for MG12+WF200, otherwise it does not fit

commit 9933bf8c79cd0d4d63707fa2007f647f021ca4f5
Author: Rehan Rasool <[email protected]>
Date:   Tue Oct 11 11:59:47 2022 -0400

    Enable WF200 builds
  • Loading branch information
rerasool authored and jmartinez-silabs committed Oct 17, 2023
1 parent 64d5810 commit c2b74c9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,11 @@ def buildWiFiExample(name, board, wifi_radio)
{
try {
// TODO remove enable_openthread_cli once master is updated.
sh "./scripts/examples/gn_efr32_example.sh examples/${name}/efr32/ out/${name}_wifi_${wifi_radio} ${board} \" disable_lcd=true use_external_flash=false enable_openthread_cli=true\" --wifi ${wifi_radio}"
if (board == "BRD4161A" && wifi_radio == "wf200") { // set is_debug=false, otherwise it does not fit
sh "./scripts/examples/gn_efr32_example.sh examples/${name}/efr32/ out/${name}_wifi_${wifi_radio} ${board} \" is_debug=false disable_lcd=true use_external_flash=false enable_openthread_cli=true\" --wifi ${wifi_radio}"
} else {
sh "./scripts/examples/gn_efr32_example.sh examples/${name}/efr32/ out/${name}_wifi_${wifi_radio} ${board} \" disable_lcd=true use_external_flash=false enable_openthread_cli=true\" --wifi ${wifi_radio}"
}
} catch (e) {
deactivateWorkspaceOverlay(advanceStageMarker.getBuildStagesList(),
workspaceTmpDir,
Expand Down Expand Up @@ -890,9 +894,7 @@ def pipeline()

def wifiApps = [ "lighting-app", "lock-app", "thermostat"]

//TODO FIX ME Enable WF200 once silabs branch is updated with CSA for MG24 and WF200 support
def wifiRCP = ["rs911x"]
// def wifiRCP = ["rs911x", "wf200"]
def wifiRCP = ["rs911x", "wf200"]

wifiApps.each { appName ->
wifiBoards.each { board ->
Expand Down

0 comments on commit c2b74c9

Please sign in to comment.