2015-02-14 05:11:43 -08:00
|
|
|
#ifndef FASTANALOG_H
|
|
|
|
#define FASTANALOG_H
|
|
|
|
|
2013-06-26 20:08:49 -07:00
|
|
|
#ifndef cbi
|
|
|
|
#define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
|
|
|
|
#endif
|
|
|
|
#ifndef sbi
|
|
|
|
#define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit))
|
|
|
|
#endif
|
|
|
|
|
2015-02-14 05:11:43 -08:00
|
|
|
#endif // FASTANALOG_H
|
2013-06-26 20:08:49 -07:00
|
|
|
|