Skip to content

Commit 2478e02

Browse files
authored
* Move naming qpg6100 to qpg (project-chip#7936)
* Removal Env overrides sdk root and target IC
1 parent a917264 commit 2478e02

File tree

97 files changed

+298
-406
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+298
-406
lines changed

.github/workflows/examples-qpg6100.yaml .github/workflows/examples-qpg.yaml

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020 Project CHIP Authors
1+
# Copyright (c) 2020-2021 Project CHIP Authors
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
name: Build example - QPG6100
15+
name: Build example - QPG
1616

1717
on:
1818
push:
@@ -23,12 +23,12 @@ concurrency:
2323
cancel-in-progress: true
2424

2525
jobs:
26-
qpg6100:
27-
name: QPG6100
26+
qpg:
27+
name: QPG
2828
timeout-minutes: 60
2929

3030
env:
31-
BUILD_TYPE: gn_qpg6100
31+
BUILD_TYPE: gn_qpg
3232

3333
runs-on: ubuntu-latest
3434
if: github.actor != 'restyled-io[bot]'
@@ -63,11 +63,15 @@ jobs:
6363
- name: Build example QPG6100 Lock App
6464
timeout-minutes: 5
6565
run: scripts/examples/gn_build_example.sh
66-
examples/lock-app/qpg6100 out/lock_app_debug
66+
examples/lock-app/qpg out/lock_app_debug qpg_target_ic=\"qpg6100\"
6767
- name: Build example QPG6100 Lighting App
6868
timeout-minutes: 5
6969
run: scripts/examples/gn_build_example.sh
70-
examples/lighting-app/qpg6100 out/lighting_app_debug
70+
examples/lighting-app/qpg out/lighting_app_debug qpg_target_ic=\"qpg6100\"
71+
- name: Build example QPG6100 persistent-storage
72+
timeout-minutes: 5
73+
run: scripts/examples/gn_build_example.sh
74+
examples/persistent-storage/qpg out/persistent-storage_app_debug qpg_target_ic=\"qpg6100\"
7175
- name: Binary artifact suffix
7276
id: outsuffix
7377
uses: haya14busa/action-cond@v1.0.0

.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
{
118118
"label": "Build QPG6100 Lock Example",
119119
"type": "shell",
120-
"command": "scripts/examples/gn_build_example.sh examples/lock-app/qpg6100 out/qpg6100_lock_app",
120+
"command": "scripts/examples/gn_build_example.sh examples/lock-app/qpg out/qpg6100_lock_app qpg6100",
121121
"group": "build",
122122
"problemMatcher": {
123123
"base": "$gcc",

BUILD.gn

+9-9
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ if (current_toolchain != "${dir_pw_toolchain}/default:default") {
166166
# Set this to true to enable efr32 builds by default.
167167
enable_efr32_builds = false
168168

169-
# Set this to true to enable qpg6100 builds by default.
170-
enable_qpg6100_builds = false
169+
# Set this to true to enable Qorvo qpg builds by default.
170+
enable_qpg_builds = false
171171

172172
# Set this to true to enable k32w builds by default.
173173
enable_k32w_builds = false
@@ -216,8 +216,8 @@ if (current_toolchain != "${dir_pw_toolchain}/default:default") {
216216
# Build the efr32 lock app example.
217217
enable_efr32_lock_app_build = enable_efr32_builds
218218

219-
# Build the qpg6100 lock app example.
220-
enable_qpg6100_lock_app_build = enable_qpg6100_builds && !is_debug
219+
# Build the qpgxxxx lock app example.
220+
enable_qpg_lock_app_build = enable_qpg_builds
221221

222222
# Build the efr32 lighting app example.
223223
enable_efr32_lighting_app_build = enable_efr32_builds
@@ -335,9 +335,9 @@ if (current_toolchain != "${dir_pw_toolchain}/default:default") {
335335
}
336336
}
337337

338-
if (enable_qpg6100_lock_app_build) {
339-
group("qpg6100_lock_app") {
340-
deps = [ "${chip_root}/examples/lock-app/qpg6100(${chip_root}/config/qpg6100/toolchain:qpg6100_lock_app)" ]
338+
if (enable_qpg_lock_app_build) {
339+
group("qpg_lock_app") {
340+
deps = [ "${chip_root}/examples/lock-app/qpg(${chip_root}/config/qpg/toolchain:qpg_lock_app)" ]
341341
}
342342
}
343343

@@ -429,8 +429,8 @@ if (current_toolchain != "${dir_pw_toolchain}/default:default") {
429429
if (enable_k32w_shell_app_build) {
430430
deps += [ ":k32w_shell_app" ]
431431
}
432-
if (enable_qpg6100_lock_app_build) {
433-
deps += [ ":qpg6100_lock_app" ]
432+
if (enable_qpg_lock_app_build) {
433+
deps += [ ":qpg_lock_app" ]
434434
}
435435
if (enable_cc13x2x7_26x2x7_lock_app_build) {
436436
deps += [ ":cc13x2x7_26x2x7_lock_app" ]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
![Examples - EFR32](https://github.com/project-chip/connectedhomeip/workflows/Build%20example%20-%20EFR32/badge.svg)
66
![Examples - nRF Connect SDK](https://github.com/project-chip/connectedhomeip/workflows/Build%20example%20-%20nRF%20Connect%20SDK/badge.svg)
7-
![Examples - QPG6100](https://github.com/project-chip/connectedhomeip/workflows/Build%20example%20-%20QPG6100/badge.svg)
7+
![Examples - QPG](https://github.com/project-chip/connectedhomeip/workflows/Build%20example%20-%20QPG/badge.svg)
88
![Examples - Linux Standalone](https://github.com/project-chip/connectedhomeip/workflows/Build%20example%20-%20Linux%20Standalone/badge.svg)
99
![Examples - ESP32](https://github.com/project-chip/connectedhomeip/workflows/Build%20example%20-%20ESP32/badge.svg)
1010
![Examples - K32W with SE051](https://github.com/project-chip/connectedhomeip/workflows/Build%20example%20-%20K32W%20with%20SE051/badge.svg)

examples/build_overrides/qpg6100_sdk.gni build_overrides/qpg_sdk.gni

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020 Project CHIP Authors
1+
# Copyright (c) 2020-2021 Project CHIP Authors
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -13,6 +13,6 @@
1313
# limitations under the License.
1414

1515
declare_args() {
16-
# Root directory for QPG6100 SDK.
17-
qpg6100_sdk_build_root = "//third_party/connectedhomeip/third_party/qpg_sdk"
16+
# Root directory for Qorvo QPGxxxx SDK.
17+
qpg_sdk_build_root = "//third_party/qpg_sdk"
1818
}

config/qpg6100/toolchain/BUILD.gn

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020 Project CHIP Authors
1+
# Copyright (c) 2020-2021 Project CHIP Authors
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -17,9 +17,16 @@ import("//build_overrides/chip.gni")
1717

1818
import("${build_root}/toolchain/arm_gcc/arm_toolchain.gni")
1919

20-
arm_toolchain("qpg6100_lock_app") {
20+
arm_toolchain("qpg_lock_app") {
2121
toolchain_args = {
2222
current_os = "freertos"
23-
import("${chip_root}/examples/lock-app/qpg6100/args.gni")
23+
import("${chip_root}/examples/lock-app/qpg/args.gni")
24+
}
25+
}
26+
27+
arm_toolchain("qpg_lighting_app") {
28+
toolchain_args = {
29+
current_os = "freertos"
30+
import("${chip_root}/examples/lighting-app/qpg/args.gni")
2431
}
2532
}

build_overrides/qpg6100_sdk.gni examples/build_overrides/qpg_sdk.gni

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
# limitations under the License.
1414

1515
declare_args() {
16-
# Root directory for QPG6100 SDK.
17-
qpg6100_sdk_build_root = "//third_party/qpg_sdk"
16+
# Root directory for QPG SDK.
17+
qpg_sdk_build_root = "//third_party/connectedhomeip/third_party/qpg_sdk"
1818
}
File renamed without changes.

examples/lighting-app/qpg6100/BUILD.gn examples/lighting-app/qpg/BUILD.gn

+13-13
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,31 @@
1515
import("//build_overrides/build.gni")
1616
import("//build_overrides/chip.gni")
1717
import("//build_overrides/openthread.gni")
18-
import("//build_overrides/qpg6100_sdk.gni")
18+
import("//build_overrides/qpg_sdk.gni")
1919

2020
import("${build_root}/config/defaults.gni")
21-
import("${qpg6100_sdk_build_root}/qpg6100_executable.gni")
22-
import("${qpg6100_sdk_build_root}/qpg6100_sdk.gni")
21+
import("${qpg_sdk_build_root}/qpg_executable.gni")
22+
import("${qpg_sdk_build_root}/qpg_sdk.gni")
2323

2424
assert(current_os == "freertos")
2525

26-
qpg6100_project_dir = "${chip_root}/examples/lighting-app/qpg6100"
27-
examples_plat_dir = "${chip_root}/examples/platform/qpg6100"
26+
qpg_project_dir = "${chip_root}/examples/lighting-app/qpg"
27+
examples_plat_dir = "${chip_root}/examples/platform/qpg"
2828

29-
qpg6100_sdk("sdk") {
29+
qpg_sdk("sdk") {
3030
sources = [
3131
"${examples_plat_dir}/app/include/Service.h",
3232
"${examples_plat_dir}/project_include/CHIPProjectConfig.h",
3333
]
3434

3535
include_dirs = [
36-
"${chip_root}/src/platform/qpg6100",
36+
"${chip_root}/src/platform/qpg",
3737
"${examples_plat_dir}/project_include",
3838
]
3939
}
4040

41-
qpg6100_executable("lighting_app") {
42-
output_name = "chip-qpg6100-lighting-example.out"
41+
qpg_executable("lighting_app") {
42+
output_name = "chip-${qpg_target_ic}-lighting-example.out"
4343

4444
sources = [
4545
"${examples_plat_dir}/app/main.cpp",
@@ -62,12 +62,12 @@ qpg6100_executable("lighting_app") {
6262
cflags = [ "-Wconversion" ]
6363

6464
include_dirs = [
65-
"${qpg6100_project_dir}/include/",
65+
"${qpg_project_dir}/include/",
6666
"${examples_plat_dir}",
6767
"${examples_plat_dir}/app/include",
6868
]
6969

70-
ldscript = "${qpg6100_sdk_root}/qpg6100/ldscripts/chip-qpg6100-example.ld"
70+
ldscript = "${qpg_sdk_root}/${qpg_target_ic}/ldscripts/chip-${qpg_target_ic}-example.ld"
7171

7272
inputs = [ ldscript ]
7373

@@ -76,10 +76,10 @@ qpg6100_executable("lighting_app") {
7676
output_dir = root_out_dir
7777
}
7878

79-
group("qpg6100") {
79+
group("qpg") {
8080
deps = [ ":lighting_app" ]
8181
}
8282

8383
group("default") {
84-
deps = [ ":qpg6100" ]
84+
deps = [ ":qpg" ]
8585
}

examples/lighting-app/qpg/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../platform/qpg/README.md

examples/lighting-app/qpg6100/args.gni examples/lighting-app/qpg/args.gni

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
# limitations under the License.
1414

1515
import("//build_overrides/chip.gni")
16-
import("${chip_root}/examples/platform/qpg6100/args.gni")
16+
import("${chip_root}/examples/platform/qpg/args.gni")
1717

18-
qpg6100_sdk_target = get_label_info(":sdk", "label_no_toolchain")
18+
qpg_sdk_target = get_label_info(":sdk", "label_no_toolchain")

examples/lighting-app/qpg6100/src/AppTask.cpp examples/lighting-app/qpg/src/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ using namespace chip::DeviceLayer;
4040
#if CHIP_ENABLE_OPENTHREAD
4141
#include <platform/OpenThread/OpenThreadUtils.h>
4242
#include <platform/ThreadStackManager.h>
43-
#include <platform/qpg6100/ThreadStackManagerImpl.h>
43+
#include <platform/qpg/ThreadStackManagerImpl.h>
4444
#define JOINER_START_TRIGGER_TIMEOUT 1500
4545
#endif
4646

File renamed without changes.
File renamed without changes.

examples/lock-app/qpg6100/BUILD.gn examples/lock-app/qpg/BUILD.gn

+13-13
Original file line numberDiff line numberDiff line change
@@ -15,31 +15,31 @@
1515
import("//build_overrides/build.gni")
1616
import("//build_overrides/chip.gni")
1717
import("//build_overrides/openthread.gni")
18-
import("//build_overrides/qpg6100_sdk.gni")
18+
import("//build_overrides/qpg_sdk.gni")
1919

2020
import("${build_root}/config/defaults.gni")
21-
import("${qpg6100_sdk_build_root}/qpg6100_executable.gni")
22-
import("${qpg6100_sdk_build_root}/qpg6100_sdk.gni")
21+
import("${qpg_sdk_build_root}/qpg_executable.gni")
22+
import("${qpg_sdk_build_root}/qpg_sdk.gni")
2323

2424
assert(current_os == "freertos")
2525

26-
qpg6100_project_dir = "${chip_root}/examples/lock-app/qpg6100"
27-
examples_plat_dir = "${chip_root}/examples/platform/qpg6100"
26+
qpg_project_dir = "${chip_root}/examples/lock-app/qpg"
27+
examples_plat_dir = "${chip_root}/examples/platform/qpg"
2828

29-
qpg6100_sdk("sdk") {
29+
qpg_sdk("sdk") {
3030
sources = [
3131
"${examples_plat_dir}/app/include/Service.h",
3232
"${examples_plat_dir}/project_include/CHIPProjectConfig.h",
3333
]
3434

3535
include_dirs = [
36-
"${chip_root}/src/platform/qpg6100",
36+
"${chip_root}/src/platform/qpg",
3737
"${examples_plat_dir}/project_include",
3838
]
3939
}
4040

41-
qpg6100_executable("lock_app") {
42-
output_name = "chip-qpg6100-lock-example.out"
41+
qpg_executable("lock_app") {
42+
output_name = "chip-${qpg_target_ic}-lock-example.out"
4343

4444
sources = [
4545
"${examples_plat_dir}/app/main.cpp",
@@ -60,14 +60,14 @@ qpg6100_executable("lock_app") {
6060
]
6161

6262
include_dirs = [
63-
"${qpg6100_project_dir}/include",
63+
"${qpg_project_dir}/include",
6464
"${examples_plat_dir}",
6565
"${examples_plat_dir}/app/include",
6666
]
6767

6868
cflags = [ "-Wconversion" ]
6969

70-
ldscript = "${qpg6100_sdk_root}/qpg6100/ldscripts/chip-qpg6100-example.ld"
70+
ldscript = "${qpg_sdk_root}/${qpg_target_ic}/ldscripts/chip-${qpg_target_ic}-example.ld"
7171

7272
inputs = [ ldscript ]
7373

@@ -76,10 +76,10 @@ qpg6100_executable("lock_app") {
7676
output_dir = root_out_dir
7777
}
7878

79-
group("qpg6100") {
79+
group("qpg") {
8080
deps = [ ":lock_app" ]
8181
}
8282

8383
group("default") {
84-
deps = [ ":qpg6100" ]
84+
deps = [ ":qpg" ]
8585
}

examples/lock-app/qpg/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../platform/qpg/README.md

examples/lock-app/qpg6100/args.gni examples/lock-app/qpg/args.gni

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
# limitations under the License.
1414

1515
import("//build_overrides/chip.gni")
16-
import("${chip_root}/examples/platform/qpg6100/args.gni")
16+
import("${chip_root}/examples/platform/qpg/args.gni")
1717

18-
qpg6100_sdk_target = get_label_info(":sdk", "label_no_toolchain")
18+
qpg_sdk_target = get_label_info(":sdk", "label_no_toolchain")

examples/lock-app/qpg6100/src/AppTask.cpp examples/lock-app/qpg/src/AppTask.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ using namespace chip::DeviceLayer;
4141
#if CHIP_ENABLE_OPENTHREAD
4242
#include <platform/OpenThread/OpenThreadUtils.h>
4343
#include <platform/ThreadStackManager.h>
44-
#include <platform/qpg6100/ThreadStackManagerImpl.h>
44+
#include <platform/qpg/ThreadStackManagerImpl.h>
4545
#define JOINER_START_TRIGGER_TIMEOUT 1500
4646
#endif
4747

File renamed without changes.

examples/persistent-storage/qpg6100/APPLICATION.md examples/persistent-storage/qpg/APPLICATION.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ An example application showing the use of key value storage API on the Qorvo
44
QPG6100.
55

66
More detailed information to be included in
7-
[SDK Documentation](../../platform/qpg6100/README.md).
7+
[SDK Documentation](../../platform/qpg/README.md).
88

99
## Persistent-storage-app
1010

@@ -25,8 +25,7 @@ This application does not have any LED output.
2525

2626
## Logging Output
2727

28-
- See
29-
[View Logging Output](../../platform/qpg6100/README.md#view-logging-output)
28+
- See [View Logging Output](../../platform/qpg/README.md#view-logging-output)
3029
- At startup you will see:
3130

3231
```

0 commit comments

Comments
 (0)