MP3 RAM测试的问题

2019-08-23 14:25发布

我RAM 测试,显i示的值是63123大概吧,忘记了。一般是什么原因。
我在整点院子的开发板上,弄MP3是正常的。MP3模块是自己做的。
引脚配置如下:
void VS_Init(void)
{  GPIO_InitTypeDef GPIO_InitStructure;
         
 RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOA, ENABLE);
 GPIO_InitStructure.GPIO_Pin = GPIO_Pin_0|GPIO_Pin_3|GPIO_Pin_4;
 GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP ; 
 GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
 GPIO_Init(GPIOA, &GPIO_InitStructure);  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_1;
 GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU ; 
 GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
 GPIO_Init(GPIOA, &GPIO_InitStructure);
  //SPIx_Init();     //初始化SPI     
}

#define VS_DQ       PAin(1) 
#define VS_RST      PAout(0)
#define VS_XCS      PAout(3) 
#define VS_XDCS     PAout(4)
有问题吗,
大侠相助
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。