WinAVR20050214で、従来バージョンとの互換性をとる // 互換性のためのマクロ #ifndef sbi #define sbi(port,bit) (_SFR_BYTE(port) |= _BV(bit)) #endif #ifndef cbi #define cbi(port,bit) (_SFR_BYTE(port) &= ~_BV(bit)) #endif #ifndef outp #define outp(port, variable) variable = port #endif #ifndef inp #define inp(port) port #endif #ifdef inw #define inw(port) port #endif TWI #include <avr/twi.h> => #include <compat/twi.h> ↑