Skip to content

Commit 6fd32ba

Browse files
jmartinez-silabsrestyled-commitsmkardous-silabs
authored
[Thread]Move the encoding of the thread diagnostics attributes to the app layer (#31766)
* Move the encoding of the thread diagnostics attributes to the app layer * Restyled by whitespace * Fix mtd build * Fix some builds * Fix general attributes read * Apply suggestions from code review Co-authored-by: mkardous-silabs <84793247+mkardous-silabs@users.noreply.github.com> * address comment --------- Co-authored-by: Restyled.io <commits@restyled.io> Co-authored-by: mkardous-silabs <84793247+mkardous-silabs@users.noreply.github.com>
1 parent d46f426 commit 6fd32ba

18 files changed

+924
-1150
lines changed

src/app/chip_data_model.gni

+6
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,12 @@ template("chip_data_model") {
356356
"${_app_root}/clusters/${cluster}/${cluster}.h",
357357
"${_app_root}/clusters/${cluster}/EnergyReportingTestEventTriggerHandler.h",
358358
]
359+
} else if (cluster == "thread-network-diagnostics-server") {
360+
sources += [
361+
"${_app_root}/clusters/${cluster}/${cluster}.cpp",
362+
"${_app_root}/clusters/${cluster}/thread-network-diagnostics-provider.cpp",
363+
"${_app_root}/clusters/${cluster}/thread-network-diagnostics-provider.h",
364+
]
359365
} else {
360366
sources += [ "${_app_root}/clusters/${cluster}/${cluster}.cpp" ]
361367
}

0 commit comments

Comments
 (0)