diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-11-03 14:11:42 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2019-11-03 14:11:42 +0100 |
commit | 48ac857cc3082aee3300a4d39834e109bd909f82 (patch) | |
tree | 2c8b1745a477faf929e25257230fef65bd8a4571 /sw/Makefile | |
parent | 76bd2a5423b249096699d29a995467eb2ed0513d (diff) | |
download | glutte-batteries-48ac857cc3082aee3300a4d39834e109bd909f82.tar.gz glutte-batteries-48ac857cc3082aee3300a4d39834e109bd909f82.tar.bz2 glutte-batteries-48ac857cc3082aee3300a4d39834e109bd909f82.zip |
Move timer stuff to common
Diffstat (limited to 'sw/Makefile')
-rw-r--r-- | sw/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sw/Makefile b/sw/Makefile index 6b49420..bd9f6ff 100644 --- a/sw/Makefile +++ b/sw/Makefile @@ -23,6 +23,8 @@ BUILD_DIR=build APP_NAME = sw HEADERS = \ + common.hpp \ + relays.hpp \ lib/Arduino.h \ lib/DallasTemperature.h \ lib/delay.h \ @@ -33,7 +35,7 @@ HEADERS = \ lib/util/OneWire_direct_regtype.h # Application object files -APP_CXX_OBJECTS = main.o ltc2400.o +APP_CXX_OBJECTS = main.o relays.o ltc2400.o APP_OBJECTS = # Library object files to build and use |