Skip to content

Commit

Permalink
[Silabs] Configure Light-Switch as a LIT ICD app (project-chip#36221)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
mkardous-silabs authored and yyzhong-g committed Dec 11, 2024
1 parent 1ba398f commit 1b22fdf
Show file tree
Hide file tree
Showing 21 changed files with 9,304 additions and 117 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/examples-efr32.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
if: github.actor != 'restyled-io[bot]'

container:
image: ghcr.io/project-chip/chip-build-efr32:85
image: ghcr.io/project-chip/chip-build-efr32:89
volumes:
- "/tmp/bloat_reports:/tmp/bloat_reports"
steps:
Expand Down
7 changes: 6 additions & 1 deletion examples/light-switch-app/light-switch-common/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,13 @@

import("//build_overrides/chip.gni")
import("${chip_root}/src/app/chip_data_model.gni")
import("${chip_root}/src/app/icd/icd.gni")

chip_data_model("light-switch-common") {
zap_file = "light-switch-app.zap"
if (chip_enable_icd_lit) {
zap_file = "icd-lit-light-switch-app.zap"
} else {
zap_file = "light-switch-app.zap"
}
is_server = true
}
Loading

0 comments on commit 1b22fdf

Please sign in to comment.