7 lines
142 B
C
7 lines
142 B
C
|
#ifndef __EASYAVR_H_
|
||
|
#define __EASYAVR_H_
|
||
|
|
||
|
#define PIN_ON(x,p) ((PORT ## x) |= 1<<(p))
|
||
|
#define PIN_OFF(x,p) ((PORT ## x) &= ~(1<<(p)))
|
||
|
|
||
|
#endif
|