mirror of
https://github.com/MickGyver/DaemonBite-Retro-Controllers-USB
synced 2024-11-27 19:52:23 -05:00
Restore 24th NTT Button + Remove PD7 clock
Adjusted the mask for the NTT buttons to allow the "disconnect" button to work, and also fixed an extraenous high/low being generated on PD7.
This commit is contained in:
parent
362c9d136d
commit
a33bcb9e69
@ -139,7 +139,7 @@ void loop() { while(1)
|
||||
buttons[gp] &= 0xC3F;
|
||||
}
|
||||
else if(controllerType[gp] == NTT) // SNES NTT Data Keypad
|
||||
buttons[gp] &= 0x3FFFFFF;
|
||||
buttons[gp] &= 0xFFFFFFF;
|
||||
else // SNES Gamepad
|
||||
buttons[gp] &= 0xFFF;
|
||||
}
|
||||
@ -236,8 +236,8 @@ void sendLatch()
|
||||
void sendClock()
|
||||
{
|
||||
// Send a clock pulse to (S)NES controller(s)
|
||||
PORTD |= B10000001; // Set HIGH
|
||||
PORTD |= B00000001; // Set HIGH
|
||||
DELAY_CYCLES(CYCLES_CLOCK);
|
||||
PORTD &= ~B10000001; // Set LOW
|
||||
PORTD &= ~B00000001; // Set LOW
|
||||
DELAY_CYCLES(CYCLES_PAUSE);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user