6 #define PIN_LED _PIN(PORTB, PORTB2)
7 #define PIN_SENSE _PIN(PORTB, PORTB4)
8 #define PIN_DRIVE _PIN(PORTB, PORTB3)
9 #define PIN_BTN _PIN(PORTB, PB1)
10 #define PIN_TRIGGER _PIN(PORTB, PB0)
11 #define BTN_PRESSED (!PINVAL(PIN_BTN))
13 #define STOP_TIMER1 ({TCCR1 = 0; TCNT1 = 1;})
17 static inline void setup_hw(void)
19 /* Turn off the 1/8 clock prescaler - now running at 16MHz*/
20 CLKPR
= (1 << CLKPCE
);
25 OUTPUT_PIN(PIN_DRIVE
);
27 OUTPUT_PIN(PIN_TRIGGER
);
29 setpin(PIN_TRIGGER
, 0);
31 setpin(PIN_BTN
, 1); /* Need pullup */
33 GIMSK
|= _BV(PCIE
); /* Enable pin change interrupt for sense port */
34 PCMSK
|= _BV(PCINT4
); /* PB4, Rail sense input */
36 /* Change interrupt for button */
37 PCMSK
|= _BV(PCINT1
); /* PB1 */
39 /* Setup timer 0, used for mm_switch */
40 TCCR0A
= 0; /* Normal mode */
41 TCCR0B
= 2; /* Prescaler 8 */
42 // TIMSK |= _BV(OCIE0A); /* Get a match interrupt */
53 GTCCR
|= _BV(PWM1B
) | _BV(COM1B0
);
59 * Function to trigger an oscilloscope on the drive pin
61 * Can be altered to use the LED.
64 static inline void __attribute__((unused
)) trigger(void)
66 setpin(PIN_TRIGGER
, 1);
67 setpin(PIN_TRIGGER
, 0);
71 static inline void __attribute__((unused
)) trigger_on(void)
73 setpin(PIN_TRIGGER
, 1);
76 static inline void __attribute__((unused
)) trigger_off(void)
78 setpin(PIN_TRIGGER
, 0);
82 * Configuration for mm receiver code.
84 #define MM_SENSE (!PINVAL(PIN_SENSE))
85 #define MM_TIMER_INT_VECT TIMER0_OVF_vect
88 GTCCR |= _BV(TSM) | _BV(PSR0); \
93 #define MM_RESETFLAG TIFR |= _BV(OVF0)
96 #ifdef USE_REGISTER_VARS
97 uint8_t register drive_on
asm("r12");
98 uint8_t register slope
asm("r13");