20 lines
313 B
C
20 lines
313 B
C
/*
|
|
* peripheral.h
|
|
*
|
|
* Created: 19.10.2020 18:08:27
|
|
* Author: netz
|
|
*/
|
|
|
|
|
|
#ifndef PERIPHERAL_H_
|
|
#define PERIPHERAL_H_
|
|
|
|
namespace {
|
|
//Timer settings = 5s
|
|
extern long const settings_timer_count_till = 39062;
|
|
extern int const settings_timer_prescaler = 5;
|
|
}
|
|
|
|
|
|
|
|
#endif /* PERIPHERAL_H_ */ |