2020-10-19 18:16:51 +02:00
|
|
|
/*
|
|
|
|
* peripheral.h
|
|
|
|
*
|
|
|
|
* Created: 19.10.2020 18:08:27
|
|
|
|
* Author: netz
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef PERIPHERAL_H_
|
|
|
|
#define PERIPHERAL_H_
|
|
|
|
|
|
|
|
namespace {
|
2020-11-02 00:27:02 +01:00
|
|
|
//Timer settings = 5s
|
|
|
|
extern long const settings_timer_count_till = 39062;
|
|
|
|
extern int const settings_timer_prescaler = 5;
|
2020-10-19 18:16:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* PERIPHERAL_H_ */
|