You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
392 B
24 lines
392 B
/* i2s-node0 is the transmitter/receiver */ |
|
|
|
/ { |
|
aliases { |
|
i2s-node0 = &i2s0; |
|
}; |
|
}; |
|
|
|
&pinctrl { |
|
i2s0_default_alt: i2s0_default_alt { |
|
group1 { |
|
psels = <NRF_PSEL(I2S_SCK_M, 1, 5)>, |
|
<NRF_PSEL(I2S_LRCK_M, 1, 6)>, |
|
<NRF_PSEL(I2S_SDOUT, 1, 1)>, |
|
<NRF_PSEL(I2S_SDIN, 1, 2)>; |
|
}; |
|
}; |
|
}; |
|
|
|
&i2s0 { |
|
status = "okay"; |
|
pinctrl-0 = <&i2s0_default_alt>; |
|
pinctrl-names = "default"; |
|
};
|
|
|