forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.gn
195 lines (162 loc) · 6.53 KB
/
BUILD.gn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
# Copyright (c) 2021 Project CHIP Authors
# Copyright 2023 NXP
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import("//build_overrides/build.gni")
import("//build_overrides/chip.gni")
import("//build_overrides/nxp_sdk.gni")
import("//build_overrides/openthread.gni")
import("${chip_root}/src/platform/device.gni")
#allows to get common NXP SDK gn options
import("${nxp_sdk_build_root}/nxp_sdk.gni")
# Allows to get various RT gn options
import("${nxp_sdk_build_root}/${nxp_sdk_name}/rt_sdk.gni")
import("${chip_root}/src/platform/nxp/${nxp_platform}/args.gni")
import(
"${nxp_sdk_build_root}/${nxp_sdk_name}/${rt_platform}/${rt_platform}.gni")
import("${nxp_sdk_build_root}/${nxp_sdk_name}/nxp_executable.gni")
assert(current_os == "freertos")
assert(target_os == "freertos")
assert(nxp_platform == "rt/rw61x")
declare_args() {
# This defines the device type as a "thermostat" by default,
# use "all-clusters" in order to build the all-clusters-app
nxp_device_type = "thermostat"
}
example_platform_dir = "${chip_root}/examples/platform/nxp/${nxp_platform}"
if (nxp_device_type == "thermostat") {
app_common_folder = "${nxp_device_type}/nxp/zap"
} else {
app_common_folder = "${nxp_device_type}-app/${nxp_device_type}-common"
}
# Create here the SDK instance.
# Particular sources/defines/includes could be added/changed depending on the target application.
rt_sdk("sdk") {
defines = []
cflags = []
public_deps = []
public_configs = []
sources = []
include_dirs = []
# Indicate paths to default board files
include_dirs += [ "${example_platform_dir}/board/" ]
sources += [ "${example_platform_dir}/board/pin_mux.c" ]
sources += [ "${example_platform_dir}/board/hardware_init.c" ]
sources += [ "${example_platform_dir}/board/clock_config.c" ]
sources += [ "${example_platform_dir}/board/board.c" ]
sources += [ "${example_platform_dir}/board/peripherals.c" ]
# Indicate the path to CHIPProjectConfig.h
include_dirs += [ "include/config" ]
# Indicate the default path to FreeRTOSConfig.h
include_dirs += [ "${example_platform_dir}/app/project_include/freeRTOS" ]
# Indicate the default path to OpenThreadConfig.h
include_dirs += [ "${example_platform_dir}/app/project_include/openthread" ]
}
# Create the SDK driver instance.
# Particular sources/defines/includes could be added to add other drivers not available in the default sdk driver template
rw61x_sdk_drivers("sdk_driver") {
}
rt_executable("all_cluster_app") {
output_name = "chip-rw61x-all-cluster-example"
defines = [ "CONFIG_RENDEZVOUS_MODE=7" ]
include_dirs = [
"../../common/main/include",
"../../common/main",
"${chip_root}/examples/all-clusters-app/all-clusters-common/include",
"${chip_root}/examples/providers/",
]
sources = [
"${chip_root}/examples/all-clusters-app/all-clusters-common/src/binding-handler.cpp",
"${chip_root}/examples/providers/DeviceInfoProviderImpl.cpp",
"../../common/main/AppFactoryDataDefaultImpl.cpp",
"../../common/main/AppMatterButtonEmpty.cpp",
"../../common/main/AppMatterCli.cpp",
"../../common/main/AppTask.cpp",
"../../common/main/CHIPDeviceManager.cpp",
"../../common/main/DeviceCallbacks.cpp",
"../../common/main/ZclCallbacks.cpp",
"../../common/main/include/AppEvent.h",
"../../common/main/include/AppTask.h",
"../../common/main/include/CHIPDeviceManager.h",
"../../common/main/include/DeviceCallbacks.h",
"../../common/main/main.cpp",
]
deps = [ "${chip_root}/examples/${app_common_folder}" ]
if (nxp_device_type == "all-clusters") {
defines += [ "DEVICE_TYPE_ALL_CLUSTERS" ]
sources += [
"${chip_root}/examples/${app_common_folder}/src/EnergyEvseDelegateImpl.cpp",
"${chip_root}/examples/${app_common_folder}/src/EnergyEvseManager.cpp",
"${chip_root}/examples/${app_common_folder}/src/EnergyEvseTargetStore.cpp",
"${chip_root}/examples/${app_common_folder}/src/bridged-actions-stub.cpp",
"${chip_root}/examples/${app_common_folder}/src/energy-evse-stub.cpp",
"${chip_root}/examples/${app_common_folder}/src/smco-stub.cpp",
"${chip_root}/examples/${app_common_folder}/src/static-supported-modes-manager.cpp",
]
}
if (chip_enable_matter_cli) {
defines += [ "ENABLE_CHIP_SHELL" ]
deps += [
"${chip_root}/examples/shell/shell_common:shell_common",
"${chip_root}/src/lib/shell:shell",
]
}
if (chip_enable_ota_requestor) {
sources += [
"${chip_root}/examples/platform/nxp/common/OTARequestorInitiator.cpp",
"${chip_root}/examples/platform/nxp/common/OTARequestorInitiator.h",
]
include_dirs += [ "${chip_root}/examples/platform/nxp/common" ]
}
# In case a dedicated assert function needs to be supported the flag sdk_fsl_assert_support should be set to false
# The would add to the build a dedicated application assert implementation.
if (!sdk_fsl_assert_support) {
sources += [ "../../common/main/AppAssert.cpp" ]
}
cflags = [ "-Wconversion" ]
ldscript = "${example_platform_dir}/app/ldscripts/RW610_flash.ld"
inputs = [ ldscript ]
ldflags = [
"-T" + rebase_path(ldscript, root_build_dir),
"-fno-common",
"-Wl,--defsym=__stack_size__=2048",
"-ffreestanding",
"-fno-builtin",
"-mapcs",
"-u qspiflash_config",
"-u image_vector_table",
"-u boot_data",
"-u dcd_data",
"-Wl,-print-memory-usage",
"-Wl,--no-warn-rwx-segments",
]
if (chip_enable_ota_requestor) {
if (no_mcuboot) {
# If "no_mcuboot" is set to true, the application will be linked at the base of the flash.
print(
"Warning : The OTA Requestor is enabled without MCUBoot. This will prevent the application from applying software updates.")
} else {
# we need to reserve enough space for the bootloader (MCUBoot)
# MCUBoot requires 0x20000 Bytes to be reserved at the base of the flash
# Consequently, some sections will need to be shifted
ldflags += [ "-Wl,--defsym=__m_mcuboot_size__=0x20000" ]
}
}
output_dir = root_out_dir
}
group("rw61x") {
deps = [ ":all_cluster_app" ]
}
group("default") {
deps = [ ":rw61x" ]
}