这个板子的程序我搞定了。根据pdf能很容易使板子工作起来。我将TP1跟TP2通过1K的电阻接地,就选择了16键模式,高电平有效。根据时序,有
[mw_shl_code=c,true]void TTP229_Config(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
//TTP229 SCLK-PG13
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_13 ;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;
GPIO_InitStructure.GPIO_Speed = GPIO_Speed_2MHz;
GPIO_Init(GPIOG, &GPIO_InitStructure);
//TTP229 SDO-PG11
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11 ;
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IPU;
GPIO_Init(GPIOG, &GPIO_InitStructure);
}
u8 fetchData(u8 *Key)
{
u8 i;
//扫描U1
GPIO_ResetBits(GPIOG,GPIO_Pin_13); //SCLK Low
delay_xus(15);
for(i=1;i<17;i++)
{
GPIO_SetBits(GPIOG,GPIO_Pin_13); //SCLK High
if(GPIO_ReadInputDataBit(GPIOG,GPIO_Pin_11))
{
*Key=i;
}
GPIO_ResetBits(GPIOG,GPIO_Pin_13); //SCLK Low
}
return(*Key);
}[/mw_shl_code]
希望对你有帮助
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
一周热门 更多>