boards: bl653_dvk: Fix incorrect definition of cs-gpios in spi1

`cs-gpios = <&gpio1 23 0>;` is incorrect, since pin P1.23 does not even
exist in nRF52833. According to schematic, it should be P0.23 and this
CS line should be configured as active low.

Signed-off-by: Andrzej Głąbek <andrzej.glabek@nordicsemi.no>
This commit is contained in:
Andrzej Głąbek 2023-10-27 21:05:39 +02:00 committed by Henrik Brix Andersen
parent 09f6800d1f
commit dbf385bb08

View file

@ -148,7 +148,7 @@
&spi1 {
compatible = "nordic,nrf-spi";
status = "okay";
cs-gpios = <&gpio1 23 0>;
cs-gpios = <&gpio0 23 GPIO_ACTIVE_LOW>;
pinctrl-0 = <&spi1_default>;
pinctrl-1 = <&spi1_sleep>;
pinctrl-names = "default", "sleep";