avr-clion/easyavr.h

7 lines
142 B
C
Raw Normal View History

2015-02-05 20:52:15 +03:00
#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