Appearance
FC游戏手柄
又称为红白机, 小霸王游戏机, 大致分为两种, 一种是11针, 还有一种是9针, 可以和DR9的串口头对插
c
uint8_t joypad_read(void)
{
volatile uint8_t temp = 0;
uint8_t t;
JOYPAD_LAT(1); /* 锁存当前状态 */
joypad_delay(80);
JOYPAD_LAT(0);
for (t = 0; t < 8; t++) /* 移位输出数据*/
{
temp >>= 1;
if (JOYPAD_DATA == 0)
{
temp |= 0x80; /* LATCH之后,就得到第一个数据*/
}
JOYPAD_CLK(1);
joypad_delay(80);
JOYPAD_CLK(0);
joypad_delay(80);
}
return temp;
}