31 lines
372 B
C++
31 lines
372 B
C++
/*
|
|
* 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; |