Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b5c185f

Browse files
committedOct 25, 2024·
[Silabs] Configure Light-Switch as a LIT ICD app (#36221)
* Add ICD shell and make Light-switch LIT ICD * remove zcl changes * Move and rename shell files * Move ICD shells files * Start the shell structure refactor * Add lit-icd light-switch zap file * Add missing define guard * Add comment * Address review comments * remove empty change * fix gn file * Add missing include dir * zap generation * Update docker image version * restore zap templtes * Pull latest docker image * zap generation
1 parent e4ab2f8 commit b5c185f

File tree

21 files changed

+9304
-117
lines changed

21 files changed

+9304
-117
lines changed
 

‎.github/workflows/examples-efr32.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
if: github.actor != 'restyled-io[bot]'
4242

4343
container:
44-
image: ghcr.io/project-chip/chip-build-efr32:85
44+
image: ghcr.io/project-chip/chip-build-efr32:89
4545
volumes:
4646
- "/tmp/bloat_reports:/tmp/bloat_reports"
4747
steps:

‎examples/light-switch-app/light-switch-common/BUILD.gn

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,13 @@
1414

1515
import("//build_overrides/chip.gni")
1616
import("${chip_root}/src/app/chip_data_model.gni")
17+
import("${chip_root}/src/app/icd/icd.gni")
1718

1819
chip_data_model("light-switch-common") {
19-
zap_file = "light-switch-app.zap"
20+
if (chip_enable_icd_lit) {
21+
zap_file = "icd-lit-light-switch-app.zap"
22+
} else {
23+
zap_file = "light-switch-app.zap"
24+
}
2025
is_server = true
2126
}

0 commit comments

Comments
 (0)
Please sign in to comment.