#if __has_include() #include #if ((COMPONENT_VERSION_MAJOR == 1) && (COMPONENT_VERSION_MINOR == 2) && \ (BUILD_NUMBER < 118)) #error \ "Microchip pack component version greater than 1.2.118 required to support ATtiny3216" #endif #else #include #if !(__AVR_LIBC_VERSION__ > 20100UL) #error "AVR LibC version greater than 2.1 does support ATtiny3216" #endif #endif #include int main() { return 0; }