Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CSA-CP][Silabs] Configure Light-Switch as a LIT ICD app (#36221) #75

Merged
merged 4 commits into from
Oct 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[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
  • Loading branch information
mkardous-silabs committed Oct 25, 2024
commit b5c185f5cdc8ee670c2413c8a194257ccbb973bb
2 changes: 1 addition & 1 deletion .github/workflows/examples-efr32.yaml
Original file line number Diff line number Diff line change
@@ -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:
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
@@ -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
Loading