diff options
| author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-11-29 17:55:13 +0100 |
|---|---|---|
| committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-11-29 17:58:09 +0100 |
| commit | 3e02a4455157422eebfc718bbbc66b0c7ea16d2e (patch) | |
| tree | a144802a18f6090fed3bf20cfe9a9b594ce092a7 /src/testapp1/Makefile | |
| parent | 679a15419631545dfd72c2cecb5385f74ecca0d3 (diff) | |
| download | renard_hb9hi-3e02a4455157422eebfc718bbbc66b0c7ea16d2e.tar.gz renard_hb9hi-3e02a4455157422eebfc718bbbc66b0c7ea16d2e.tar.bz2 renard_hb9hi-3e02a4455157422eebfc718bbbc66b0c7ea16d2e.zip | |
Fix morse routine, add LED output
Diffstat (limited to 'src/testapp1/Makefile')
| -rw-r--r-- | src/testapp1/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testapp1/Makefile b/src/testapp1/Makefile index 98dcc23..68c15e9 100644 --- a/src/testapp1/Makefile +++ b/src/testapp1/Makefile @@ -24,7 +24,7 @@ BUILD_DIR=build APP_NAME = testapp1 # Application object files -APP_OBJECTS = main.o +APP_OBJECTS = main.o morse.o # Library object files to build and use LIB_OBJECTS = @@ -92,7 +92,7 @@ clean: rm -rf build # Send to device -program: $(BUILD_DIR)/$(APP_HEX) +program: $(APP_HEX) $(SIZE) -C $(BUILD_DIR)/$(APP_ELF) $(AVRDUDE) $(AVRDUDE_FLAGS) -c $(PROG) -P $(AVRDUDE_DEV) -p $(AVRDUDE_PART) -U flash:w:$(BUILD_DIR)/$(APP_HEX) -v |
