File tree 3 files changed +1
-9
lines changed
3 files changed +1
-9
lines changed Original file line number Diff line number Diff line change 67
67
./scripts/run_in_build_env.sh \
68
68
"./scripts/build/build_examples.py \
69
69
--enable-flashbundle \
70
- --target efr32-brd4187c-air-quality-sensor \
71
70
--target efr32-brd4187c-thermostat-openthread-mtd \
72
71
--target efr32-brd4187c-switch-shell-use-ot-coap-lib \
73
72
--target efr32-brd4187c-unit-test \
Original file line number Diff line number Diff line change @@ -266,8 +266,7 @@ def BuildEfr32Target():
266
266
TargetPart ('light' , app = Efr32App .LIGHT ),
267
267
TargetPart ('lock' , app = Efr32App .LOCK ),
268
268
TargetPart ('thermostat' , app = Efr32App .THERMOSTAT ),
269
- TargetPart ('pump' , app = Efr32App .PUMP ),
270
- TargetPart ('air-quality-sensor' , app = Efr32App .AIR_QUALITY_SENSOR )
269
+ TargetPart ('pump' , app = Efr32App .PUMP )
271
270
])
272
271
273
272
target .AppendModifier ('rpc' , enable_rpcs = True )
Original file line number Diff line number Diff line change @@ -46,8 +46,6 @@ def ExampleName(self):
46
46
return 'thermostat'
47
47
elif self == Efr32App .PUMP :
48
48
return 'pump-app'
49
- elif self == Efr32App .AIR_QUALITY_SENSOR :
50
- return 'air-quality-sensor-app'
51
49
else :
52
50
raise Exception ('Unknown app type: %r' % self )
53
51
@@ -66,8 +64,6 @@ def AppNamePrefix(self):
66
64
return 'matter-silabs-pump-example'
67
65
elif self == Efr32App .UNIT_TEST :
68
66
return 'matter-silabs-device_tests'
69
- elif self == Efr32App .AIR_QUALITY_SENSOR :
70
- return 'matter-silabs-air-quality-sensor-example'
71
67
else :
72
68
raise Exception ('Unknown app type: %r' % self )
73
69
@@ -86,8 +82,6 @@ def FlashBundleName(self):
86
82
return 'pump_app.flashbundle.txt'
87
83
elif self == Efr32App .UNIT_TEST :
88
84
return os .path .join ('tests' , 'efr32_device_tests.flashbundle.txt' )
89
- elif self == Efr32App .AIR_QUALITY_SENSOR :
90
- return 'air_quality_sensor_app.flashbundle.txt'
91
85
else :
92
86
raise Exception ('Unknown app type: %r' % self )
93
87
You can’t perform that action at this time.
0 commit comments