From 7c1ca40f7dbbba4687f715fa65718924352c893a Mon Sep 17 00:00:00 2001 From: gitknilch Date: Sun, 17 Apr 2011 20:01:17 +0200 Subject: [PATCH] don't ignore config.mk --- firmware/.gitignore | 1 - firmware/fnordlicht-firmware/config.mk | 69 ++++++++++++++++++++++++++ 2 files changed, 69 insertions(+), 1 deletion(-) create mode 100644 firmware/fnordlicht-firmware/config.mk diff --git a/firmware/.gitignore b/firmware/.gitignore index dc9c13b..2783341 100644 --- a/firmware/.gitignore +++ b/firmware/.gitignore @@ -6,6 +6,5 @@ *.hex *.lst *.elf -config.mk tags *.bin diff --git a/firmware/fnordlicht-firmware/config.mk b/firmware/fnordlicht-firmware/config.mk new file mode 100644 index 0000000..883aa76 --- /dev/null +++ b/firmware/fnordlicht-firmware/config.mk @@ -0,0 +1,69 @@ +# Put your own config here! +# +# This file is not under version control, and your settings +# will not be modified when upgrading the repository + + +################################################################### +# HARDWARE PLATFORM TYPE +# +# possible values: +# - fnordlicht -- original fnordlicht hardware +# - fnordlichtmini -- fnordlichtmini hardware +HARDWARE = fnordlichtmini + +# default program +# +# possible values: +# - 0 -- colorwheel +# - 1 -- random colors (default) +CONFIG_SCRIPT_DEFAULT = 0 + +################################################################### +# PROGRAMMER +# +# avrdude programmer protocol +PROG = avrispmkii + +# avrdude programmer device +#DEV = usb + +# further flags for avrdude +#AVRDUDE_FLAGS = + + +################################################################### +# controller +# +# possible values: +# - atmega8 +# - atmega88 +# - atmega168 +# +MCU = atmega8 + +# frequency +F_CPU = 16000000UL + +# use more debug-flags when compiling +#DEBUG = 1 + +################################################################### +# FIRMWARE CONFIGURATION +# + +# include the script interpreter +CONFIG_SCRIPT = 1 + +# include uart support +CONFIG_SERIAL = 1 + +# include remote command support (needs uart) +CONFIG_REMOTE = 1 + +# secondary pwm output +CONFIG_SECONDARY_PWM = 1 + +# default baudrate +CONFIG_SERIAL_BAUDRATE = 19200 + -- 2.39.2