diff options
Diffstat (limited to 'firmware/Makefile')
-rw-r--r-- | firmware/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/Makefile b/firmware/Makefile index 3d8c42d..a916ae6 100644 --- a/firmware/Makefile +++ b/firmware/Makefile @@ -53,7 +53,7 @@ RUN_MODE=RUN_FROM_ROM #RUN_MODE=RUN_FROM_RAM ## We want to produce a full-flash image, but including DFU -IMGTYPE=-dfu-fullimage +IMGTYPE=-sam7dfu-app # with / at end PATH_TO_LINKSCRIPTS=link/ @@ -86,8 +86,8 @@ endif SRCARM += src/os/pcd_enumerate.c src/os/fifo.c src/os/dbgu.c \ src/os/led.c src/os/req_ctx.c src/os/trigger.c \ src/os/main.c src/os/syscalls.c src/os/usb_handler.c \ - src/os/usb_benchmark.c src/os/dfu.c src/start/Cstartup_SAM7.c \ - src/os/tc_cdiv.c src/os/pit.c src/os/pwm.c src/os/pio_irq.c + src/os/usb_benchmark.c src/os/tc_cdiv.c src/os/pit.c \ + src/os/pwm.c src/os/pio_irq.c ifeq ($(BOARD), PCD) # PCD support code @@ -134,7 +134,7 @@ ASRCLIB += lib/lib1funcs.S lib/div64.S endif # List Assembler source files here which must be assembled in ARM-Mode.. -ASRCARM = src/start/Cstartup.S $(ASRCLIB) +ASRCARM = src/start/Cstartup_app.S $(ASRCLIB) ## Output format. (can be ihex or binary) ## (binary i.e. for openocd and SAM-BA, hex i.e. for lpc21isp and uVision) |