THW-Funk-Audio-Switch/Programm/Audio-Switch/Programm.hpp

31 lines
372 B
C++
Raw Normal View History

2020-10-19 18:16:51 +02:00
/*
* Programm.hpp
*
* Created: 19.10.2020 18:03:50
* Author: netz
*/
#define F_CPU 8000000
#include "peripheral.h"
template <int delay_plus>
class ProgrammT {
public:
ProgrammT() {
}
void Setup() {
}
void Loop() {
}
void PttVect() {
}
};
typedef ProgrammT<settings_prog_delay_plus> Programm;