aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2015-07-26 18:06:29 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2015-07-26 19:27:13 +0200
commitafd694f05178c22b4f71f65143c4647ce912d980 (patch)
treebde5b59098c453a4355f63eaaabdf95f9e2679bb /Makefile
parenta64156388fc92da1d151a1094e25d9d89240bb38 (diff)
downloadtrygvisio_soil_moisture-afd694f05178c22b4f71f65143c4647ce912d980.tar.gz
trygvisio_soil_moisture-afd694f05178c22b4f71f65143c4647ce912d980.tar.bz2
trygvisio_soil_moisture-afd694f05178c22b4f71f65143c4647ce912d980.tar.xz
trygvisio_soil_moisture-afd694f05178c22b4f71f65143c4647ce912d980.zip
o Much improved Debug class.
- Inlining all definitions to make everything shorter and easier to read. - More const so even more can be inlined. o Adding some support for ATTiny85, still more work to be done. o Removing two unused battery characteristics. o Dynamically adding battery and temperature characteristics if their pipes are defined.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 9445351..f96b9db 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,11 @@
-BOARD_TAG = leonardo
-#BOARD_TAG = blendmicro16
+BOARDS_TXT = ../hardware/blend/avr/boards.txt
+ARDUINO_VAR_PATH = ../hardware/blend/avr/variants
+BOARD_TAG = blendmicro16
#DEVICE_PORT = /dev/ttyACM0
-MONITOR_BAUDRATE = 115200
-MONITOR_PORT ?= /dev/ttyACM0
+MONITOR_BAUDRATE = 115200
+MONITOR_PORT ?= $(shell ls /dev/ttyACM* | head -n 1)
-ARDUINO_LIBS = BLE SPI EEPROM
+ARDUINO_LIBS = BLE SPI EEPROM Low-Power AltSoftSerial
ifdef CONFIG_MK
include $(CONFIG_MK)