-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[nrfconnect] Added Wi-Fi support to nrfconnect examples. (#23715)
* [nrfconnect] Added Wi-Fi support to nrfconnect examples. In this commit: - Added the first support for Wi-Fi to nrfconnect examples: lightinig-app, lock-app, light-switch-app, all-clusters-app - Enabled CI all wi-fi samples checking for Wi-Fi target nrf7002 - all-clusters-app on each commit, others related to nrfconnect sources. - Aligned Common api to NCS 2.1.1. - Updated documentation for all samples and added Wi-Fi nRF7002 target and descriptions * Restyled by clang-format * Restyled by prettier-markdown * Some fixes after a review. Co-authored-by: Restyled.io <commits@restyled.io>
- Loading branch information
Showing
138 changed files
with
3,567 additions
and
2,139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,9 +37,6 @@ | |
&uart1 { | ||
status = "disabled"; | ||
}; | ||
&gpio1 { | ||
status = "disabled"; | ||
}; | ||
&i2c0 { | ||
status = "disabled"; | ||
}; | ||
|
21 changes: 21 additions & 0 deletions
21
examples/all-clusters-app/nrfconnect/boards/nrf7002dk_nrf5340_cpuapp.overlay
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* Copyright (c) 2022 Project CHIP Authors | ||
* | ||
* 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. | ||
*/ | ||
|
||
/ { | ||
chosen { | ||
nordic,pm-ext-flash = &mx25r64; | ||
}; | ||
}; |
25 changes: 25 additions & 0 deletions
25
examples/all-clusters-app/nrfconnect/child_image/hci_rpmsg/prj.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# | ||
# Copyright (c) 2022 Project CHIP Authors | ||
# | ||
# 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. | ||
# | ||
|
||
# This target uses Kconfig.hci_rpmsg.defaults to set options common for all | ||
# samples using hci_rpmsg. This file should contain only options specific for this sample | ||
# hci_rpmsg configuration or overrides of default values. | ||
|
||
# Disable not used modules that cannot be set in Kconfig.hci_rpmsg.defaults due to overriding | ||
# in board files. | ||
|
||
CONFIG_SERIAL=n | ||
CONFIG_UART_CONSOLE=n |
25 changes: 25 additions & 0 deletions
25
examples/all-clusters-app/nrfconnect/child_image/hci_rpmsg/prj_no_dfu.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# | ||
# Copyright (c) 2022 Project CHIP Authors | ||
# | ||
# 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. | ||
# | ||
|
||
# This target uses Kconfig.hci_rpmsg.defaults to set options common for all | ||
# samples using hci_rpmsg. This file should contain only options specific for this sample | ||
# hci_rpmsg configuration or overrides of default values. | ||
|
||
# Disable not used modules that cannot be set in Kconfig.hci_rpmsg.defaults due to overriding | ||
# in board files. | ||
|
||
CONFIG_SERIAL=n | ||
CONFIG_UART_CONSOLE=n |
25 changes: 25 additions & 0 deletions
25
examples/all-clusters-app/nrfconnect/child_image/hci_rpmsg/prj_release.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# | ||
# Copyright (c) 2022 Project CHIP Authors | ||
# | ||
# 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. | ||
# | ||
|
||
# This target uses Kconfig.hci_rpmsg.defaults to set options common for all | ||
# samples using hci_rpmsg. This file should contain only options specific for this sample | ||
# hci_rpmsg configuration or overrides of default values. | ||
|
||
# Disable not used modules that cannot be set in Kconfig.hci_rpmsg.defaults due to overriding | ||
# in board files. | ||
|
||
CONFIG_SERIAL=n | ||
CONFIG_UART_CONSOLE=n |
Oops, something went wrong.