Skip to content

Commit

Permalink
Some fixes after a review.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArekBalysNordic committed Nov 22, 2022
1 parent 2b87460 commit 4e08ec4
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 39 deletions.
2 changes: 1 addition & 1 deletion config/nrfconnect/chip-module/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ config CHIP_APP_LOG_LEVEL
int "Set logging level in application"
default LOG_DEFAULT_LEVEL
help
Sets the logging level in matter application.
Sets the logging level in Matter application.
This config should be used only within application.
To set the logging level for Matter stack use MATTER_LOG_LEVEL
config.
Expand Down
16 changes: 6 additions & 10 deletions examples/all-clusters-app/nrfconnect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ creating your own application.
The example is based on
[Matter](https://github.com/project-chip/connectedhomeip) and Nordic
Semiconductor's nRF Connect SDK, and was created to facilitate testing and
certification of a Matter device communicating over a low-power, 802.15.4
network, either Thread or Wi-Fi.
certification of a Matter device communicating over a low-power 802.15.4 Thread
network, or Wi-Fi network.

The example behaves as a Matter accessory, that is a device that can be paired
into an existing Matter network and can be controlled by this network. In the
case of Thread, this device works as a Thread Sleepy End Device. Support for
both Thread and Wi-Fi is mutually exclusive and depends on the hardware
platform, so only one protocol can be supported for a specific lock device.
platform, so only one protocol can be supported for a specific device.

<hr>

Expand Down Expand Up @@ -163,7 +163,7 @@ following states are possible:

- _Short Flash Off (950ms on/50ms off)_ &mdash; The device is fully
provisioned, but does not yet have full connectivity for Thread or Wi-Fi
network, or the related services.
network.

- _Solid On_ &mdash; The device is fully provisioned.

Expand All @@ -177,18 +177,14 @@ following states are possible:

- _Pressed for more than 3 s_ &mdash; initiates the factory reset of the
device. Releasing the button within the 3-second window cancels the factory
reset procedure.This piece of hardware is o
reset procedure.

**Button 2** &mdash; Pressing the button once changes the lock state to the
opposite one.
**Button 2**:

- On nRF52840 DK, nRF5340 DK, and nRF21540 DK: Not available.

- On nRF7002 DK:

- If pressed for less than three seconds, it changes the lock state to the
opposite one.

- If pressed for more than three seconds, it starts the NFC tag emulation,
enables Bluetooth LE advertising for the predefined period of time (15
minutes by default), and makes the device discoverable over Bluetooth
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@
&uart1 {
status = "disabled";
};
&gpio1 {
status = "disabled";
};
&i2c0 {
status = "disabled";
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@
&uart1 {
status = "disabled";
};
&gpio1 {
status = "disabled";
};
&i2c0 {
status = "disabled";
};
Expand Down
9 changes: 5 additions & 4 deletions examples/light-switch-app/nrfconnect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ creating your own application.
The example is based on
[Matter](https://github.com/project-chip/connectedhomeip) and Nordic
Semiconductor's nRF Connect SDK, and was created to facilitate testing and
certification of a Matter device communicating over a low-power, 802.15.4
network, either Thread or Wi-Fi.
certification of a Matter device communicating over a low-power, 802.15.4 Thread
network, or Wi-Fi network.

The example behaves as a Matter accessory, that is a device that can be paired
into an existing Matter network and can be controlled by this network. In the
case of Thread, this device works as a Thread Sleepy End Device. Support for
both Thread and Wi-Fi is mutually exclusive and depends on the hardware
platform, so only one protocol can be supported for a specific lock device.
platform, so only one protocol can be supported for a specific light switch
device.

<hr>

Expand Down Expand Up @@ -291,7 +292,7 @@ following states are possible:

- _Short Flash Off (950ms on/50ms off)_ &mdash; The device is fully
provisioned, but does not yet have full connectivity for Thread or Wi-Fi
network, or the related services.
network.

- _Solid On_ &mdash; The device is fully provisioned.

Expand Down
12 changes: 6 additions & 6 deletions examples/lighting-app/nrfconnect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ a reference for creating your own application.
The example is based on
[Matter](https://github.com/project-chip/connectedhomeip) and Nordic
Semiconductor's nRF Connect SDK, and was created to facilitate testing and
certification of a Matter device communicating over a low-power, 802.15.4
network, either Thread or Wi-Fi.
certification of a Matter device communicating over a low-power, 802.15.4 Thread
network, or Wi-Fi network.

The example behaves as a Matter accessory, that is a device that can be paired
into an existing Matter network and can be controlled by this network. In the
case of Thread, this device works as a Thread Sleepy End Device. Support for
both Thread and Wi-Fi is mutually exclusive and depends on the hardware
platform, so only one protocol can be supported for a specific lock device.
platform, so only one protocol can be supported for a specific light device.

<hr>

Expand Down Expand Up @@ -234,7 +234,7 @@ following states are possible:

- _Short Flash Off (950ms on/50ms off)_ &mdash; The device is fully
provisioned, but does not yet have full connectivity for Thread or Wi-Fi
network, or the related services.
network.

- _Solid On_ &mdash; The device is fully provisioned.

Expand Down Expand Up @@ -264,12 +264,12 @@ following states are possible:
**Button 2** &mdash; Pressing the button once changes the lighting state to the
opposite one.

- On nRF52840 DK, nRF5340 DK, and nRF21540 DK: Changes the lock state to the
- On nRF52840 DK, nRF5340 DK, and nRF21540 DK: Changes the LED state to the
opposite one.

- On nRF7002 DK:

- If pressed for less than three seconds, it changes the lock state to the
- If pressed for less than three seconds, it changes the LED state to the
opposite one.

- If pressed for more than three seconds, it starts the NFC tag emulation,
Expand Down
6 changes: 3 additions & 3 deletions examples/lock-app/nrfconnect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ a reference for creating your own application.
The example is based on
[Matter](https://github.com/project-chip/connectedhomeip) and Nordic
Semiconductor's nRF Connect SDK, and was created to facilitate testing and
certification of a Matter device communicating over a low-power, 802.15.4
network, either Thread or Wi-Fi.
certification of a Matter device communicating over a low-power, 802.15.4 Thread
network, or Wi-Fi network.

The example behaves as a Matter accessory, that is a device that can be paired
into an existing Matter network and can be controlled by this network. In the
Expand Down Expand Up @@ -218,7 +218,7 @@ following states are possible:

- _Short Flash Off (950ms on/50ms off)_ &mdash; The device is fully
provisioned, but does not yet have full connectivity for Thread or Wi-Fi
network, or the related services.
network.

- _Solid On_ &mdash; The device is fully provisioned.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@
&uart1 {
status = "disabled";
};
&gpio1 {
status = "disabled";
};
&i2c0 {
status = "disabled";
};
Expand Down
2 changes: 1 addition & 1 deletion examples/pump-app/nrfconnect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ following states are possible:

- _Short Flash Off (950ms on/50ms off)_ &mdash; The device is fully
provisioned, but does not yet have full connectivity for Thread or Wi-Fi
network, or the related services.
network.

- _Solid On_ &mdash; The device is fully provisioned and has full Thread
network and service connectivity.
Expand Down
2 changes: 1 addition & 1 deletion examples/pump-controller-app/nrfconnect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ following states are possible:

- _Short Flash Off (950ms on/50ms off)_ &mdash; The device is fully
provisioned, but does not yet have full connectivity for Thread or Wi-Fi
network, or the related services.
network.

- _Solid On_ &mdash; The device is fully provisioned and has full Thread
network and service connectivity.
Expand Down
2 changes: 1 addition & 1 deletion examples/window-app/nrfconnect/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ following states are possible:

- _Short Flash Off (950ms on/50ms off)_ &mdash; The device is fully
provisioned, but does not yet have full connectivity for Thread or Wi-Fi
network, or the related services.
network.

- _Solid On_ &mdash; The device is fully provisioned and has full Thread
network and service connectivity.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@
&uart1 {
status = "disabled";
};
&gpio1 {
status = "disabled";
};
&i2c0 {
status = "disabled";
};
Expand Down

0 comments on commit 4e08ec4

Please sign in to comment.