diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2012-04-03 19:07:28 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2012-04-03 19:07:28 +0200 |
commit | 45fee9fe7e4385f5d1515c223ee6ab376d5b317a (patch) | |
tree | 18ecefbe07b24e6dab7dd750662473aeefbcff48 /firmware/makefile | |
parent | 79236eaaced258e4e34619ea9210faf7e621fd8e (diff) | |
download | bitraf-fridge-45fee9fe7e4385f5d1515c223ee6ab376d5b317a.tar.gz bitraf-fridge-45fee9fe7e4385f5d1515c223ee6ab376d5b317a.tar.bz2 bitraf-fridge-45fee9fe7e4385f5d1515c223ee6ab376d5b317a.tar.xz bitraf-fridge-45fee9fe7e4385f5d1515c223ee6ab376d5b317a.zip |
o Adding code to store the target temperature in EEPROM.
o Implementing a control loop to control the compressor.
Diffstat (limited to 'firmware/makefile')
-rw-r--r-- | firmware/makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/makefile b/firmware/makefile index e61623d..5b5d12d 100644 --- a/firmware/makefile +++ b/firmware/makefile @@ -1,6 +1,6 @@ # Hey Emacs, this is a -*- makefile -*-
#----------------------------------------------------------------------------
-# WinAVR Makefile Template written by Eric B. Weddington, Jörg Wunsch, et al.
+# WinAVR Makefile Template written by Eric B. Weddington, Jörg Wunsch, et al.
# >> Modified for use with the LUFA project. <<
#
# Released to the Public Domain
@@ -275,9 +275,9 @@ PRINTF_LIB_MIN = -Wl,-u,vfprintf -lprintf_min PRINTF_LIB_FLOAT = -Wl,-u,vfprintf -lprintf_flt
# If this is left blank, then it will use the Standard printf version.
-PRINTF_LIB =
+#PRINTF_LIB =
#PRINTF_LIB = $(PRINTF_LIB_MIN)
-#PRINTF_LIB = $(PRINTF_LIB_FLOAT)
+PRINTF_LIB = $(PRINTF_LIB_FLOAT)
# Minimalistic scanf version
|