Files
@ 41c563eb0a68
Branch filter:
Location: therm/Makefile - annotation
41c563eb0a68
3.2 KiB
text/x-makefile
Remove old usb cruft
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | 287a302c9d20 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 3dd364248179 3dd364248179 3dd364248179 3dd364248179 3dd364248179 41c563eb0a68 3dd364248179 970a161634a0 970a161634a0 3dd364248179 970a161634a0 3dd364248179 3dd364248179 3dd364248179 3dd364248179 3dd364248179 3dd364248179 3dd364248179 3dd364248179 3dd364248179 3dd364248179 3dd364248179 3dd364248179 970a161634a0 970a161634a0 970a161634a0 41c563eb0a68 41c563eb0a68 41c563eb0a68 41c563eb0a68 970a161634a0 970a161634a0 41c563eb0a68 970a161634a0 970a161634a0 970a161634a0 a3acc7c3a063 41c563eb0a68 a3acc7c3a063 1c5909c633fa 109bc69daf49 49b0586d1fdf 49b0586d1fdf 41c563eb0a68 91fbdc7bc1b8 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 555930ccae9f 970a161634a0 555930ccae9f 555930ccae9f 555930ccae9f 555930ccae9f 555930ccae9f 555930ccae9f 555930ccae9f 555930ccae9f 555930ccae9f 555930ccae9f 970a161634a0 970a161634a0 5dc11468ff0b 5dc11468ff0b 5dc11468ff0b 5dc11468ff0b 5dc11468ff0b 5dc11468ff0b 5dc11468ff0b 5dc11468ff0b 5dc11468ff0b 5dc11468ff0b 5dc11468ff0b 5dc11468ff0b 970a161634a0 970a161634a0 555930ccae9f 970a161634a0 970a161634a0 555930ccae9f 555930ccae9f 970a161634a0 970a161634a0 5bb33b7045ec 5bb33b7045ec 89dc4e02c836 5bb33b7045ec 5bb33b7045ec 5bb33b7045ec 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 676f49902c7d 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 970a161634a0 676f49902c7d 676f49902c7d 676f49902c7d 676f49902c7d 676f49902c7d 676f49902c7d | TARGET:=therm
TOOLCHAIN_PATH:=/usr/bin
TOOLCHAIN_PREFIX:=arm-none-eabi
OPTLVL:=3 # Optimization level, can be [0, 1, 2, 3, s].
#PROJECT_NAME:=$(notdir $(lastword $(CURDIR)))
TOP:=$(shell readlink -f "../..")
LIBDIR:=libraries
HAL_LIB:=$(LIBDIR)/STM32F0xx_HAL_Driver
USB_LIB:=$(LIBDIR)/STM32_USB_Device_Library
STARTUP:=$(STMLIB)/CMSIS/Device/ST/STM32F0xx/Source/Templates/gcc
LINKER_SCRIPT:=$(CURDIR)/stm32-flash.ld
# Local libs
INCLUDE=-I$(CURDIR)
# CMSIS
INCLUDE+=-I$(LIBDIR)/CMSIS/Include
INCLUDE+=-I$(LIBDIR)/CMSIS/Device/ST/STM32F0xx/Include
# USB
INCLUDE+=-I$(USB_LIB)/Class/CDC
INCLUDE+=-I$(USB_LIB)/Core
# HAL
INCLUDE+=-I$(HAL_LIB)/Inc
# vpath is used so object files are written to the current directory instead
# of the same directory as their source files
vpath %.c $(HAL_LIB)/src \
$(LIBDIR)/$(USB_LIB) \
$(LIBDIR)/$(USB_LIB)/Class/CDC \
$(LIBDIR)/$(USB_LIB)/Core
vpath %.s $(STARTUP)
ASRC=startup_stm32f042x6.s
# Project Source Files
SRC=main.c
SRC+=stm32f0xx_it.c
SRC+=stm32f0xx_hal_msp.c
SRC+=system_stm32f0xx.c
SRC+=ssd1306.c
SRC+=eeprom_min.c
SRC+=gpio.c
SRC+=spi.c
SRC+=clock.c
SRC+=stringhelpers.c
# Discovery Source Files
#SRC+=stm32f4_discovery_lis302dl.c
#SRC+=stm32f4_discovery.c
#SRC+=stm32f4_discovery_audio_codec.c
# Standard Peripheral Source Files
SRC+=stm32f0xx_syscfg.c
SRC+=misc.c
SRC+=stm32f0xx_adc.c
SRC+=stm32f0xx_dac.c
SRC+=stm32f0xx_dma.c
SRC+=stm32f0xx_exti.c
SRC+=stm32f0xx_flash.c
SRC+=stm32f0xx_gpio.c
SRC+=stm32f0xx_i2c.c
SRC+=stm32f0xx_rcc.c
SRC+=stm32f0xx_spi.c
SRC+=stm32f0xx_tim.c
# USB Source Files
SRC+=usb_core.c
SRC+=usb_init.c
SRC+=usb_int.c
SRC+=usb_mem.c
SRC+=usb_regs.c
SRC+=usb_sil.c
SRC+=hw_config.c
SRC+=usb_desc.c
SRC+=usb_endp.c
SRC+=usb_istr.c
SRC+=usb_prop.c
SRC+=usb_pwr.c
CDEFS=-DUSE_STDPERIPH_DRIVER
CDEFS+=-DSTM32F0XX
CDEFS+=-DMANGUSTA_DISCOVERY
#CDEFS+=-DUSE_USB_OTG_FS
# EMZ FIXME
CDEFS+=-DHSE_VALUE=8000000
#EMZ Optimized:
MCUFLAGS=-mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections -mfloat-abi=soft
# Default: MCUFLAGS=-mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections
#MCUFLAGS=-mcpu=cortex-m4 -mthumb -mlittle-endian -mfpu=fpa -mfloat-abi=hard -mthumb-interwork
#MCUFLAGS=-mcpu=cortex-m4 -mfpu=vfpv4-sp-d16 -mfloat-abi=hard
COMMONFLAGS=-O$(OPTLVL) -g -Wall
CFLAGS=$(COMMONFLAGS) $(MCUFLAGS) $(INCLUDE) $(CDEFS)
LDLIBS=
LDFLAGS=$(COMMONFLAGS) -fno-exceptions -ffunction-sections -fdata-sections \
-nostartfiles -Wl,--gc-sections,-T$(LINKER_SCRIPT)
#####
#####
OBJ = $(SRC:%.c=%.o) $(ASRC:%.s=%.o)
CC=$(TOOLCHAIN_PATH)/$(TOOLCHAIN_PREFIX)-gcc
LD=$(TOOLCHAIN_PATH)/$(TOOLCHAIN_PREFIX)-gcc
OBJCOPY=$(TOOLCHAIN_PATH)/$(TOOLCHAIN_PREFIX)-objcopy
AS=$(TOOLCHAIN_PATH)/$(TOOLCHAIN_PREFIX)-as
AR=$(TOOLCHAIN_PATH)/$(TOOLCHAIN_PREFIX)-ar
GDB=$(TOOLCHAIN_PATH)/$(TOOLCHAIN_PREFIX)-gdb
SIZE=$(TOOLCHAIN_PATH)/$(TOOLCHAIN_PREFIX)-size
all: $(OBJ)
$(CC) -o $(TARGET).elf $(LDFLAGS) $(OBJ) $(LDLIBS)
$(OBJCOPY) -O ihex $(TARGET).elf $(TARGET).hex
$(OBJCOPY) -O binary $(TARGET).elf $(TARGET).bin
.PHONY: clean
clean:
rm -f $(OBJ)
rm -f $(TARGET).elf
rm -f $(TARGET).hex
rm -f $(TARGET).bin
# Display size
size: $(TARGET).elf
@echo Invoking: ARM GNU Print Size
$(SIZE) --format=berkeley $<
@echo
|