30 lines
643 B
C
30 lines
643 B
C
|
#ifndef _main_h
|
||
|
#define _main_h
|
||
|
|
||
|
#define SEVENSEG_PORT PORTA
|
||
|
#define SEVENSEG_DDR DDRA
|
||
|
|
||
|
#define LED_PORT PORTC
|
||
|
#define LED_DDR DDRC
|
||
|
|
||
|
#define DIG0 PD2
|
||
|
#define DIG1 PD3
|
||
|
#define DIG2 PD4
|
||
|
#define DIG3 PD5
|
||
|
#define DIG4 PD6
|
||
|
#define DIG5 PD7
|
||
|
#define LEDS_MID1 PB0
|
||
|
#define LEDS_MID2 PB1
|
||
|
#define LEDS_LOAD PB2
|
||
|
#define LEDS_GEN PB3
|
||
|
|
||
|
#define SEVENSEGDIG_PORT PORTD
|
||
|
#define SEVENSEGDIG_DDR DDRD
|
||
|
|
||
|
#define LEDDIG_PORT PORTB
|
||
|
#define LEDDIG_DDR DDRB
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|