forked from kernelcrash/electron-rom-emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·75 lines (55 loc) · 2.04 KB
/
Makefile
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
# example disassemble
# arm-none-eabi-objdump -dS stm32f4-rom-emulator.elf >asm.out
# Put your stlink folder here so make burn will work.
STLINK=~/stlink.git
#SRCS=main.c system_stm32f4xx.c stm32f4xx_it.c
#SRCS=main.c system_stm32f4xx.c working-stm32f4xx_it.c
SRCS=main.c system_stm32f4xx.c
# Library modules
SRCS += stm32f4xx_exti.c stm32f4xx_gpio.c stm32f4xx_rcc.c stm32f4xx_syscfg.c
SRCS += stm32f4xx_tim.c misc.c
SRCS += stm32f4_discovery.c
# Binaries will be generated with this name (.elf, .bin, .hex, etc)
PROJ_NAME=electron-rom-emulator
#######################################################################################
#STM_COMMON=../../..
# You need libs somewhere!
STM_COMMON=../STM32F4-Discovery_FW_V1.1.0
CC=arm-none-eabi-gcc
OBJCOPY=arm-none-eabi-objcopy
CFLAGS = -g -O2 -Wall -Tstm32_flash.ld
CFLAGS += -DUSE_STDPERIPH_DRIVER
CFLAGS += -mlittle-endian -mthumb -mcpu=cortex-m4 -mthumb-interwork
CFLAGS += -mfloat-abi=hard -mfpu=fpv4-sp-d16
CFLAGS += -I.
CFLAGS += --specs=nosys.specs
#CFLAGS += -DDEBUG_EDGES
#CFLAGS += -DDEBUG_ROM
#CFLAGS += -DDEBUG_FE05 -DDEBUG_FC71 -DDEBUG_FC72
#CFLAGS += -DDEBUG_FC72
# Include files from STM libraries
CFLAGS += -I$(STM_COMMON)/Utilities/STM32F4-Discovery
CFLAGS += -I$(STM_COMMON)/Libraries/CMSIS/Include
CFLAGS += -I$(STM_COMMON)/Libraries/CMSIS/ST/STM32F4xx/Include
CFLAGS += -I$(STM_COMMON)/Libraries/STM32F4xx_StdPeriph_Driver/inc
# add startup file to build
SRCS += startup_stm32f4xx.s
# You need to end asm files in capital S to get them to see preprocessor directives
SRCS += poller.S
OBJS = $(SRCS:.c=.o)
vpath %.c $(STM_COMMON)/Libraries/STM32F4xx_StdPeriph_Driver/src $(STM_COMMON)/Utilities/STM32F4-Discovery
.PHONY: proj
all: proj
proj: $(PROJ_NAME).elf
$(PROJ_NAME).elf: $(SRCS)
$(CC) $(CFLAGS) $^ -o $@
$(OBJCOPY) -O ihex $(PROJ_NAME).elf $(PROJ_NAME).hex
$(OBJCOPY) -O binary $(PROJ_NAME).elf $(PROJ_NAME).bin
clean:
rm -f *.o
rm -f $(PROJ_NAME).elf
rm -f $(PROJ_NAME).hex
rm -f $(PROJ_NAME).bin
# Flash the STM32F4
#burn: proj
# $(STLINK)/st-flash write $(PROJ_NAME).bin 0x8000000