Primary Git Repository for the Zephyr Project. Zephyr is a new generation, scalable, optimized, secure RTOS for multiple hardware architectures.
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.
 
 
 
 
 
 

30 lines
526 B

/*
* Copyright (c) 2025 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
/* i2s-node0 is the transmitter/receiver */
/ {
aliases {
i2s-node0 = &tdm;
};
};
&pinctrl {
tdm_default_alt: tdm_default_alt {
group1 {
psels = <NRF_PSEL(TDM_SCK_M, 1, 23)>,
<NRF_PSEL(TDM_FSYNC_M, 1, 14)>,
<NRF_PSEL(TDM_SDOUT, 1, 30)>, /* TDM_SDOUT shorted to TDM_SDIN */
<NRF_PSEL(TDM_SDIN, 1, 31)>;
};
};
};
&tdm {
status = "okay";
pinctrl-0 = <&tdm_default_alt>;
pinctrl-names = "default";
};