Skip to content

Commit

Permalink
boards: bl653_dvk: Fix incorrect definition of cs-gpios in spi1
Browse files Browse the repository at this point in the history
`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 <[email protected]>
  • Loading branch information
anangl authored and henrikbrixandersen committed Oct 28, 2023
1 parent 09f6800 commit dbf385b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boards/arm/bl653_dvk/bl653_dvk.dts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit dbf385b

Please sign in to comment.