File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -44,9 +44,10 @@ source_set("default") {
44
44
deps += [ " ${ chip_root } /src/platform/ASR:logging" ]
45
45
} else if (chip_device_platform == " webos" ) {
46
46
deps += [ " ${ chip_root } /src/platform/webos:logging" ]
47
- } else if (chip_device_platform == " zephyr" ||
48
- chip_device_platform == " nxp_zephyr" ) {
47
+ } else if (chip_device_platform == " zephyr" ) {
49
48
deps += [ " ${ chip_root } /src/platform/Zephyr:logging" ]
49
+ } else if (chip_device_platform == " nxp_zephyr" ) {
50
+ deps += [ " ${ chip_root } /src/platform/nxp/zephyr:logging" ]
50
51
} else if (chip_device_platform == " nrfconnect" ) {
51
52
deps += [ " ${ chip_root } /src/platform/nrfconnect:logging" ]
52
53
} else if (chip_device_platform == " telink" ) {
Original file line number Diff line number Diff line change @@ -108,3 +108,11 @@ static_library("nxp_zephyr") {
108
108
109
109
cflags = [ " -Wconversion" ]
110
110
}
111
+
112
+ source_set (" logging" ) {
113
+ deps = [
114
+ " ${ chip_root } /src/platform:platform_base" ,
115
+ " ${ chip_root } /src/platform/logging:headers" ,
116
+ ]
117
+ sources = [ " ../../Zephyr/Logging.cpp" ]
118
+ }
You can’t perform that action at this time.
0 commit comments