本帖最后由 dreamc 于 2014-7-14 23:25 编辑
GPIO Init
- GPIO_InitTypeDef GPIO_InitStructure;
- RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOB, ENABLE);
- RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOC, ENABLE);
- RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABLE);
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_12 | GPIO_Pin_13 |GPIO_Pin_14 | GPIO_Pin_15;//WS CK SD
- GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
- GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
- GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
- GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
- GPIO_Init(GPIOB, &GPIO_InitStructure);
- GPIO_PinAFConfig(GPIOB, GPIO_PinSource12, GPIO_AF_SPI2);
- GPIO_PinAFConfig(GPIOB, GPIO_PinSource13, GPIO_AF_SPI2);
- GPIO_PinAFConfig(GPIOB, GPIO_PinSource15, GPIO_AF_SPI2);
- GPIO_PinAFConfig(GPIOB, GPIO_PinSource14, GPIO_AF_I2S2ext);
-
- GPIO_InitStructure.GPIO_Pin = GPIO_Pin_6; //MCLK
- GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
- GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
- GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
- GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
- GPIO_Init(GPIOC, &GPIO_InitStructure);
- GPIO_PinAFConfig(GPIOC, GPIO_PinSource6, GPIO_AF_SPI2);
复制代码
I2S Init
- I2S_InitTypeDef I2S_InitStructure;
- RCC_APB1PeriphClockCmd(RCC_APB1Periph_SPI2, ENABLE);
- SPI_I2S_DeInit(SPI2);
-
- I2S_StructInit(&I2S_InitStructure);
- I2S_InitStructure.I2S_AudioFreq = I2S_AudioFreq_8k;;
- I2S_InitStructure.I2S_Standard = I2S_Standard_MSB;
- I2S_InitStructure.I2S_DataFormat = I2S_DataFormat_16b;
- I2S_InitStructure.I2S_CPOL = I2S_CPOL_Low;
- I2S_InitStructure.I2S_Mode = I2S_Mode_MasterTx;
- I2S_InitStructure.I2S_MCLKOutput = I2S_MCLKOutput_Enable;
- I2S_Init(SPI2, &I2S_InitStructure);
- I2S_FullDuplexConfig(I2S2ext, &I2S_InitStructure);
- I2S_Cmd(SPI2, DISABLE);
-
- I2S_Cmd(I2S2ext, ENABLE);
复制代码-
- for(i=0;i<200;i++)
- {
- while (SPI_I2S_GetFlagStatus(I2S2ext, SPI_FLAG_RXNE) == RESET);
- soundbuf1[i] = SPI_I2S_ReceiveData(I2S2ext);
- }
复制代码
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>