PN532 updates
[hackover2013-badge-firmware.git] / Makefile
1 ##########################################################################
2 # User configuration and firmware specific object files
3 ##########################################################################
4
5 # The target, flash and ram of the LPC1xxx microprocessor.
6 # Use for the target the value: LPC11xx, LPC13xx or LPC17xx
7 TARGET = LPC13xx
8 FLASH = 32K
9 SRAM = 8K
10
11 # For USB HID support the LPC134x reserves 384 bytes from the sram,
12 # if you don't want to use the USB features, just use 0 here.
13 SRAM_USB = 384
14
15 VPATH =
16 OBJS = main.o
17
18 ##########################################################################
19 # Debug settings
20 ##########################################################################
21
22 # Set DEBUGBUILD to 'TRUE' for full debugging (larger, slower binaries),
23 # or to 'FALSE' for release builds (smallest, fastest binaries)
24 DEBUGBUILD = FALSE
25
26 ##########################################################################
27 # Project-specific files
28 ##########################################################################
29
30 VPATH += project
31 OBJS += commands.o
32
33 VPATH += project/commands
34 OBJS += cmd_chibi_addr.o cmd_chibi_tx.o
35 OBJS += cmd_i2ceeprom_read.o cmd_i2ceeprom_write.o cmd_lm75b_gettemp.o
36 OBJS += cmd_reset.o cmd_sd_dir.o cmd_sysinfo.o cmd_uart.o
37 OBJS += cmd_roundedcorner.o
38
39 VPATH += project/commands/drawing
40 OBJS += cmd_backlight.o cmd_bmp.o cmd_button.o cmd_calibrate.o
41 OBJS += cmd_circle.o cmd_clear.o cmd_line.o cmd_orientation.o
42 OBJS += cmd_pixel.o cmd_progress.o cmd_rectangle.o cmd_text.o
43 OBJS += cmd_textw.o cmd_tsthreshhold.o cmd_tswait.o cmd_triangle.o
44
45 ##########################################################################
46 # Optional driver files
47 ##########################################################################
48
49 # Chibi Light-Weight Wireless Stack (AT86RF212)
50 VPATH += drivers/chibi
51 OBJS += chb.o chb_buf.o chb_drvr.o chb_eeprom.o chb_spi.o
52
53 # 4K EEPROM
54 VPATH += drivers/eeprom drivers/eeprom/mcp24aa
55 OBJS += eeprom.o mcp24aa.o
56
57 # LM75B temperature sensor
58 VPATH += drivers/sensors/lm75b
59 OBJS += lm75b.o
60
61 # ISL12022M RTC
62 VPATH += drivers/rtc/isl12022m
63 OBJS += isl12022m.o
64
65 # TFT LCD support
66 VPATH += drivers/lcd/tft drivers/lcd/tft/hw drivers/lcd/tft/fonts
67 VPATH += drivers/lcd/tft/dialogues
68 OBJS += drawing.o touchscreen.o bmp.o alphanumeric.o
69 OBJS += dejavusans9.o dejavusansbold9.o dejavusanscondensed9.o
70 OBJS += dejavusansmono8.o dejavusansmonobold8.o
71 OBJS += verdana9.o verdana14.o verdanabold14.o
72
73 # LCD Driver (Only one can be included at a time!)
74 OBJS += ILI9328.o
75 # OBJS += ILI9325.o
76 # OBJS += ssd1331.o
77 # OBJS += ssd1351.o
78 # OBJS += st7735.o
79 # OBJS += st7783.o
80
81 # Bitmap/Monochrome LCD support (ST7565, SSD1306, etc.)
82 VPATH += drivers/lcd drivers/lcd/bitmap/st7565
83 VPATH += drivers/lcd/bitmap/ssd1306
84 OBJS += smallfonts.o st7565.o ssd1306.o
85
86 # ChaN FatFS and SD card support
87 VPATH += drivers/fatfs
88 OBJS += ff.o mmc.o
89
90 # Motors
91 VPATH += drivers/motor/stepper
92 OBJS += stepper.o
93
94 # RSA Encryption/Descryption
95 VPATH += drivers/rsa
96 OBJS += rsa.o
97
98 # DAC
99 VPATH += drivers/dac/mcp4725
100 OBJS += mcp4725.o
101
102 # RFID/NFC
103 VPATH += drivers/sensors/pn532 drivers/sensors/pn532/helpers
104 OBJS += pn532.o pn532_bus_i2c.o pn532_bus_uart.o
105 OBJS += pn532_mifare_classic.o pn532_mifare_ultralight.o
106
107 # TAOS Light Sensors
108 VPATH += drivers/sensors/tcs3414 drivers/sensors/tsl2561
109 OBJS += tcs3414.o tsl2561.o
110
111 # SPI Flash
112 VPATH += drivers/spiflash/w25q16bv
113 OBJS += w25q16bv.o
114
115 ##########################################################################
116 # Library files
117 ##########################################################################
118
119 VPATH += core core/adc core/cmd core/cpu core/gpio core/i2c core/pmu
120 VPATH += core/ssp core/systick core/timer16 core/timer32 core/uart
121 VPATH += core/usbhid-rom core/libc core/wdt core/usbcdc core/pwm
122 VPATH += core/iap
123 OBJS += adc.o cpu.o cmd.o gpio.o i2c.o pmu.o ssp.o systick.o timer16.o
124 OBJS += timer32.o uart.o uart_buf.o usbconfig.o usbhid.o stdio.o string.o
125 OBJS += wdt.o cdcuser.o cdc_buf.o usbcore.o usbdesc.o usbhw.o usbuser.o
126 OBJS += sysinit.o pwm.o iap.o
127
128 ##########################################################################
129 # GNU GCC compiler prefix and location
130 ##########################################################################
131
132 CROSS_COMPILE = arm-none-eabi-
133 AS = $(CROSS_COMPILE)gcc
134 CC = $(CROSS_COMPILE)gcc
135 LD = $(CROSS_COMPILE)gcc
136 SIZE = $(CROSS_COMPILE)size
137 OBJCOPY = $(CROSS_COMPILE)objcopy
138 OBJDUMP = $(CROSS_COMPILE)objdump
139 OUTFILE = firmware
140 LPCRC = ./lpcrc
141 CP = cp
142
143 ##########################################################################
144 # GNU GCC compiler flags
145 ##########################################################################
146 ROOT_PATH = .
147 INCLUDE_PATHS = -I$(ROOT_PATH) -I$(ROOT_PATH)/project
148
149 ##########################################################################
150 # Startup files
151 ##########################################################################
152
153 LD_PATH = lpc1xxx
154 LD_SCRIPT = $(LD_PATH)/linkscript.ld
155 LD_TEMP = $(LD_PATH)/memory.ld
156
157 ifeq (LPC11xx,$(TARGET))
158 CORTEX_TYPE=m0
159 else
160 CORTEX_TYPE=m3
161 endif
162
163 CPU_TYPE = cortex-$(CORTEX_TYPE)
164 VPATH += lpc1xxx
165 OBJS += $(TARGET)_handlers.o LPC1xxx_startup.o
166
167 ##########################################################################
168 # Compiler settings, parameters and flags
169 ##########################################################################
170 ifeq (TRUE,$(DEBUGBUILD))
171 CFLAGS = -c -g -O0 $(INCLUDE_PATHS) -Wall -mthumb -ffunction-sections -fdata-sections -fmessage-length=0 -mcpu=$(CPU_TYPE) -DTARGET=$(TARGET) -fno-builtin
172 ASFLAGS = -c -g -O0 $(INCLUDE_PATHS) -Wall -mthumb -ffunction-sections -fdata-sections -fmessage-length=0 -mcpu=$(CPU_TYPE) -D__ASSEMBLY__ -x assembler-with-cpp
173 else
174 CFLAGS = -c -g -Os $(INCLUDE_PATHS) -Wall -mthumb -ffunction-sections -fdata-sections -fmessage-length=0 -mcpu=$(CPU_TYPE) -DTARGET=$(TARGET) -fno-builtin
175 ASFLAGS = -c -g -Os $(INCLUDE_PATHS) -Wall -mthumb -ffunction-sections -fdata-sections -fmessage-length=0 -mcpu=$(CPU_TYPE) -D__ASSEMBLY__ -x assembler-with-cpp
176 endif
177
178 LDFLAGS = -nostartfiles -mthumb -mcpu=$(CPU_TYPE) -Wl,--gc-sections
179 LDLIBS = -lm
180 OCFLAGS = --strip-unneeded
181
182 all: firmware
183
184 %.o : %.c
185 $(CC) $(CFLAGS) -o $@ $<
186
187 %.o : %.s
188 $(AS) $(ASFLAGS) -o $@ $<
189
190 firmware: $(OBJS) $(SYS_OBJS)
191 -@echo "MEMORY" > $(LD_TEMP)
192 -@echo "{" >> $(LD_TEMP)
193 -@echo " flash(rx): ORIGIN = 0x00000000, LENGTH = $(FLASH)" >> $(LD_TEMP)
194 -@echo " sram(rwx): ORIGIN = 0x10000000+$(SRAM_USB), LENGTH = $(SRAM)-$(SRAM_USB)" >> $(LD_TEMP)
195 -@echo "}" >> $(LD_TEMP)
196 -@echo "INCLUDE $(LD_SCRIPT)" >> $(LD_TEMP)
197 $(LD) $(LDFLAGS) -T $(LD_TEMP) -o $(OUTFILE).elf $(OBJS) $(LDLIBS)
198 -@echo ""
199 $(SIZE) $(OUTFILE).elf
200 -@echo ""
201 $(OBJCOPY) $(OCFLAGS) -O binary $(OUTFILE).elf $(OUTFILE).bin
202 $(OBJCOPY) $(OCFLAGS) -O ihex $(OUTFILE).elf $(OUTFILE).hex
203 -@echo ""
204 $(LPCRC) firmware.bin
205
206 clean:
207 rm -f $(OBJS) $(LD_TEMP) $(OUTFILE).elf $(OUTFILE).bin $(OUTFILE).hex
This page took 0.077742 seconds and 5 git commands to generate.