trennfix/sw: Single timer single delay solution seems to work
[eisenbahn.git] / trennfix / sw / mk / trennfix_attiny85.mk
1
2 SRC = src/main.c
3
4
5 ################################################################################
6 ################################################################################
7
8 AVRDUDE_PROGRAMMER = avrisp2
9 MCU=attiny85
10 F_CPU = 16000000
11
12 # Fuse-Bits gibts praktisch bei http://www.engbedded.com/fusecalc !
13 # 8 MHz interner RC-Oszillator usw. Brown out 4V
14
15
16 #LFUSE=0x61
17 #HFUSE=0xdc
18 #EFUSE=0xff
19
20 LFUSE=0x61
21
22 ifneq ($(KEEP_EEPROM),)
23
24 HFUSE=0xd4
25
26 else
27
28 HFUSE=0xdc
29
30 endif
31
32 EFUSE=0xff
33
34
35
36
37
38
39
40
41