trennfix/sw: Temporary first working time measurement method
[eisenbahn.git] / trennfix / sw / mk / trennfix_0.4.mk
... / ...
CommitLineData
1
2SRC = src/main.c
3
4################################################################################
5################################################################################
6
7AVRDUDE_PROGRAMMER = avrisp2
8MCU?=attiny25
9F_CPU = 16000000
10
11# Fuse-Bits gibts praktisch bei http://www.engbedded.com/fusecalc !
12# 8 MHz interner RC-Oszillator usw. Brown out 4V
13
14ifneq ($(KEEP_EEPROM),)
15
16HFUSE=0xd4
17
18else
19
20HFUSE=0xdc
21
22endif
23
24LFUSE=0x61
25EFUSE=0xff
26
27#CFLAGS+= -DMM_FILTER_REPEATED
28CFLAGS+= -DUSE_REGISTER_VARS
29CFLAGS+= -DWITH_EEPROM_UPDATE
30CFLAGS+= -DWITH_PWM
31CFLAGS+= -DWITH_SOUND
32CFLAGS+= -DWITH_INITIAL_PULSE
33