TestDoxygen
1.0.21
Test for Doxygen
|
Deprecated sbi and cbi operations for port bits. More...
Go to the source code of this file.
Defines | |
#define | sbi(REG, BIT) |
#define | cbi(REG, BIT) |
#define | setbit(REG, BIT) REG |= (1 << BIT) |
#define | clrbit(REG, BIT) REG &= ~(1 << BIT) |
Deprecated sbi and cbi operations for port bits.
#define cbi | ( | REG, | |
BIT | |||
) |
__asm__ __volatile__ \ ("cbi %0, %1" :: "I" (_SFR_IO_ADDR(REG)), "I" (BIT))
#define sbi | ( | REG, | |
BIT | |||
) |
__asm__ __volatile__ \ ("sbi %0, %1" :: "I" (_SFR_IO_ADDR(REG)), "I" (BIT))