GPIO_Init(GPIOA, &GPIO_InitStructure);//初始化 //这些AF...等等,注意看stm32f4xx_gpio.h的相关定义,特别是ext,否则会有问题 GPIO_PinAFConfig(GPIOB, GPIO_PinSource3, GPIO_AF_SPI3);// _CK GPIO_PinAFConfig(GPIOB, GPIO_PinSource4, GPIO_AF_I2S3ext)...
The board has the Codec ADC output connected to I2S2ext_SD on PI2. The clocks look good, WS is toggling as it should, and I can see data on the ADC out of the codec, but the data in the I2S2 (SPI2) data register is always 0xFFFF, implying (to me) that the input is ...
IRQChannelCmd = ENABLE;//使能外部中断通道NVIC_Init(&NVIC_InitStructure);//配置}}void I2S2ext_...
If you aren't using the same pins then you will need to adjust the pinmuxing and then if you aren't using AUD3 you will need to change mux-ext-port in the sound module to the AUD you are using. Anyways once you get that all setup and enable the new driver in your kernel...
GPIO_Init(GPIOA, &GPIO_InitStructure);//初始化//这些AF...等等,注意看stm32f4xx_gpio.h的相关定义,特别是ext,否则会有问题GPIO_PinAFConfig(GPIOB, GPIO_PinSource3, GPIO_AF_SPI3);// _CKGPIO_PinAFConfig(GPIOB, GPIO_PinSource4, GPIO_AF_I2S3ext);// _EXT_SD GPIO_AF_I2S3extGPIO_PinAFConfi...
mux-ext-port = <3>; };} /* Pinmuxing for the AUDMUX lines my microphone is connected to */&audmux { pinctrl-names = "default"; pinctrl-0 = <&pinctrl_micmux>; status = "okay";}; /* Enable the SSI2 as an I2S master */&ssi2 { fsl,mode = "i2s-master"; assigned-clocks =...