74HC165级联数据返回失败

2019-08-14 04:39发布

void GPIO_HC165_Input(void)
{
   GPIO_InitTypeDef  GPIO_InitStructure;
   RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
   GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;        
   GPIO_InitStructure.GPIO_Mode=GPIO_Mode_IN_FLOATING;     //设置为浮空输入
   GPIO_Init(GPIOC, &GPIO_InitStructure);                //调用GPIO初始化函数
}
void GPIO_HC165_Configuration(void)
{
    GPIO_InitTypeDef  GPIO_InitStructure;   
  
   RCC_APB2PeriphClockCmd(RCC_APB2Periph_AFIO,ENABLE);             //开启AFIO时钟
   GPIO_PinRemapConfig(GPIO_Remap_SWJ_JTAGDisable, ENABLE);        //禁止JTAG功能
   RCC_APB2PeriphClockCmd( RCC_APB2Periph_GPIOA  , ENABLE);
   GPIO_InitStructure.GPIO_Pin = GPIO_Pin_15;
   GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP ;
   GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;     //最大输出速度为50MHz
   GPIO_Init(GPIOA, &GPIO_InitStructure);   
   
   RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOC, ENABLE);
   GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;                      //CLK
   GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;                  
   GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;     //最大输出速度为50MHz
   GPIO_Init(GPIOC, &GPIO_InitStructure);                   //调用GPIO初始化函数  
   GPIO_HC165_Input();
}

long int GetHC74165(void)
{
  long int  i;
  long int indata=0;
  GPIO_WriteBit(GPIOA,GPIO_Pin_15,Bit_RESET);//SH-0;
  Delay_ms(10);
  GPIO_WriteBit(GPIOA,GPIO_Pin_15,Bit_SET);//SH-1;
  Delay_ms(20);
  for(i=0;i<8;i++)
  {
    GPIO_WriteBit(GPIOC,GPIO_Pin_10,Bit_RESET);//CLK-0;
    Delay_ms(10);
   
    indata=indata<<1;      //左移一位
    if(GPIO_ReadInputDataBit(GPIOC,GPIO_Pin_11)==1)
    {
      indata=indata+1;  
    }     
     GPIO_WriteBit(GPIOC,GPIO_Pin_10,Bit_SET);//CLK-1;
     Delay_ms(10);
  }
   return(~indata);  
}
上面代码中当i<8时数据反回正常,当i<16时无任何数据返回。求各路大神指导。

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。