mirror of
https://github.com/mcgurk/Arduino-USB-HID-RetroJoystickAdapter
synced 2024-11-21 08:35:05 -05:00
Update c64_usb_mouse_2.ino
This commit is contained in:
parent
4341e8961a
commit
ee7e1f9f73
@ -220,7 +220,7 @@ inline void startTimers() {
|
|||||||
|
|
||||||
ISR(TIMER1_CAPT_vect) {
|
ISR(TIMER1_CAPT_vect) {
|
||||||
// Now we little after start of SID reading process
|
// Now we little after start of SID reading process
|
||||||
// Start moment is in ICR1L and time now is in TCNT2
|
// SID trigger pulse timer value is in ICR1
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
Serial.println("TIMER1_CAPT_vect:");
|
Serial.println("TIMER1_CAPT_vect:");
|
||||||
#endif
|
#endif
|
||||||
@ -237,7 +237,7 @@ ISR(TIMER1_CAPT_vect) {
|
|||||||
// 2. force output compare to make it happen (doesn't raise interrupts)
|
// 2. force output compare to make it happen (doesn't raise interrupts)
|
||||||
TCCR1C |= _BV(FOC1A) | _BV(FOC1B); // FOC1A / FOC1B Force Output Compare A and B (that are in register TCCR1C)
|
TCCR1C |= _BV(FOC1A) | _BV(FOC1B); // FOC1A / FOC1B Force Output Compare A and B (that are in register TCCR1C)
|
||||||
|
|
||||||
// OCIE1A: Timer/Counter Output Compare Match Interrupt Enable A, ISR(TIMER1_COMPA_vect)
|
// OCIE1A: Timer/Counter Output Compare Match Interrupt Enable A, ISR(TIMER1_COMPA_vect) // disable ICIE1, Input Capture Interrupt
|
||||||
TIMSK1 = _BV(OCIE1A);
|
TIMSK1 = _BV(OCIE1A);
|
||||||
|
|
||||||
// init the output compare values
|
// init the output compare values
|
||||||
@ -263,7 +263,7 @@ ISR(TIMER1_CAPT_vect) {
|
|||||||
|
|
||||||
ISR(TIMER1_COMPA_vect) {
|
ISR(TIMER1_COMPA_vect) {
|
||||||
// now potx are sent. we don't know if poty is still in progress.
|
// now potx are sent. we don't know if poty is still in progress.
|
||||||
// POTX is HIGH from OC1A TIMER1 compare match
|
// POTX is HIGH from OC1A TIMER1 compare match. POTY is ?.
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
Serial.println("TIMER1_COMPA_vect"); Serial.flush();
|
Serial.println("TIMER1_COMPA_vect"); Serial.flush();
|
||||||
|
Loading…
Reference in New Issue
Block a user