1/* i2s-node0 is the transmitter/receiver */ 2 3/ { 4 aliases { 5 i2s-node0 = &i2s0; 6 }; 7}; 8 9&pinctrl { 10 i2s0_default_alt: i2s0_default_alt { 11 group1 { 12 psels = <NRF_PSEL(I2S_SCK_M, 1, 5)>, 13 <NRF_PSEL(I2S_LRCK_M, 1, 6)>, 14 <NRF_PSEL(I2S_SDOUT, 1, 1)>, 15 <NRF_PSEL(I2S_SDIN, 1, 2)>; 16 }; 17 }; 18}; 19 20&i2s0 { 21 status = "okay"; 22 pinctrl-0 = <&i2s0_default_alt>; 23 pinctrl-names = "default"; 24}; 25