hw-rollerderby-scoreboard/avr.h

22 lines
463 B
C
Raw Normal View History

2013-03-31 21:13:51 -06:00
#ifndef AVR_H
#define AVR_H
#include <stdint.h>
#include <avr/io.h>
#include <avr/interrupt.h>
2013-04-01 21:17:18 -06:00
#define bit(pin, bit, on) pin = (on ? (pin | bit) : (pin & ~bit))
#define sin(on) bit(PORTA, _BV(3), on)
#define sclk(on) bit(PORTA, _BV(4), on)
#define sltch(on) bit(PORTA, _BV(5), on)
2013-03-31 21:13:51 -06:00
#define nesclk(on) bit(PORTA, _BV(0), on)
#define nesltch(on) bit(PORTA, _BV(1), on)
#define NESOUT 2
2013-05-04 19:46:18 -06:00
#define nesout() ((PINA & _BV(NESOUT)) << NESOUT)
2013-03-31 21:13:51 -06:00
void init(void);
2013-07-28 21:42:25 -06:00
#endif