/* * Programm.hpp * * Created: 19.10.2020 18:03:50 * Author: netz */ #define F_CPU 8000000 #include "peripheral.h" template class ProgrammT { public: ProgrammT() { } void Setup() { } void Loop() { } void PttVect() { } }; typedef ProgrammT Programm;