Skip to content

Commit

Permalink
nfc: Fix NFC TNEP Poller CS Pin config
Browse files Browse the repository at this point in the history
This commit fixes SPI CS Pin configuration for
the ST25R3911B in the TNEP Poller sample.

NCSDK-4934

Signed-off-by: Kamil Gawor <[email protected]>
  • Loading branch information
KAGA164 authored and anangl committed Aug 25, 2020
1 parent 7ad24e0 commit fde77b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion samples/nfc/tnep_poller/nrf52840dk_nrf52840.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
sck-pin = <47>;
mosi-pin = <45>;
miso-pin = <46>;
cs-gpios = <&gpio1 12 0>;
cs-gpios = <&gpio1 12 GPIO_ACTIVE_LOW>;

st25r3911b@0 {
label = "ST25R3911B";
Expand Down
2 changes: 1 addition & 1 deletion samples/nfc/tnep_poller/nrf52dk_nrf52832.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
sck-pin = <25>;
mosi-pin = <23>;
miso-pin = <24>;
cs-gpios = <&gpio0 22 0>;
cs-gpios = <&gpio0 22 GPIO_ACTIVE_LOW>;

st25r3911b@0 {
label = "ST25R3911B";
Expand Down
2 changes: 1 addition & 1 deletion samples/nfc/tnep_poller/nrf5340pdk_nrf5340_cpuapp.overlay
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
sck-pin = <47>;
mosi-pin = <45>;
miso-pin = <46>;
cs-gpios = <&gpio1 12 0>;
cs-gpios = <&gpio1 12 GPIO_ACTIVE_LOW>;

st25r3911b@0 {
label = "ST25R3911B";
Expand Down

0 comments on commit fde77b9

Please sign in to comment.