-
Notifications
You must be signed in to change notification settings - Fork 310
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
14 changed files
with
66 additions
and
22,190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,34 @@ | ||
CFLAGS ?= -W -Wall -Wextra -Werror -Wundef -Wshadow -Wdouble-promotion \ | ||
-Wformat-truncation -fno-common -Wconversion \ | ||
-g3 -Os -ffunction-sections -fdata-sections -I. -Iinclude \ | ||
-g3 -Os -ffunction-sections -fdata-sections \ | ||
-I. -Iinclude -Icmsis_core/CMSIS/Core/Include -Icmsis_f4/Include \ | ||
-mcpu=cortex-m4 -mthumb -mfloat-abi=hard -mfpu=fpv4-sp-d16 $(EXTRA_CFLAGS) | ||
LDFLAGS ?= -Tlink.ld -nostartfiles -nostdlib --specs nano.specs -lc -lgcc -Wl,--gc-sections -Wl,-Map=$@.map | ||
SOURCES = main.c startup.c syscalls.c | ||
SOURCES = main.c syscalls.c | ||
SOURCES += cmsis_f4/Source/Templates/gcc/startup_stm32f429xx.s # ST startup file. Compiler-dependent! | ||
|
||
ifeq ($(OS),Windows_NT) | ||
RM = cmd /C del /Q /F | ||
else | ||
RM = rm -f | ||
RM = rm -rf | ||
endif | ||
|
||
build: firmware.bin | ||
|
||
firmware.elf: $(SOURCES) | ||
arm-none-eabi-gcc $(SOURCES) $(CFLAGS) $(LDFLAGS) -o $@ | ||
firmware.elf: cmsis_core cmsis_f4 mcu.h link.ld Makefile $(SOURCES) | ||
arm-none-eabi-gcc $(SOURCES) $(CFLAGS) $(CFLAGS_EXTRA) $(LDFLAGS) -o $@ | ||
|
||
firmware.bin: firmware.elf | ||
arm-none-eabi-objcopy -O binary $< $@ | ||
|
||
flash: firmware.bin | ||
st-flash --reset write $< 0x8000000 | ||
|
||
cmsis_core: | ||
git clone --depth 1 -b 5.9.0 https://github.com/ARM-software/CMSIS_5 $@ | ||
|
||
cmsis_f4: | ||
git clone --depth 1 -b v2.6.8 https://github.com/STMicroelectronics/cmsis_device_f4 $@ | ||
|
||
clean: | ||
$(RM) firmware.* | ||
$(RM) firmware.* cmsis_* |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,25 @@ | ||
ENTRY(_reset); | ||
ENTRY(Reset_Handler); | ||
MEMORY { | ||
flash(rx) : ORIGIN = 0x08000000, LENGTH = 2048k | ||
sram(rwx) : ORIGIN = 0x20000000, LENGTH = 192k /* remaining 64k in a separate address space */ | ||
} | ||
_estack = ORIGIN(sram) + LENGTH(sram); /* stack points to end of SRAM */ | ||
|
||
SECTIONS { | ||
.vectors : { KEEP(*(.vectors)) } > flash | ||
.text : { *(.text*) } > flash | ||
.rodata : { *(.rodata*) } > flash | ||
.vectors : { KEEP(*(.isr_vector)) } > flash | ||
.text : { *(.text*) } > flash | ||
.rodata : { *(.rodata*) } > flash | ||
|
||
.data : { | ||
_sdata = .; /* .data section start */ | ||
_sdata = .; | ||
*(.first_data) | ||
*(.data SORT(.data.*)) | ||
_edata = .; /* .data section end */ | ||
_edata = .; | ||
} > sram AT > flash | ||
_sidata = LOADADDR(.data); | ||
|
||
.bss : { | ||
_sbss = .; /* .bss section start */ | ||
*(.bss SORT(.bss.*) COMMON) | ||
_ebss = .; /* .bss section end */ | ||
} > sram | ||
.bss : { _sbss = .; *(.bss SORT(.bss.*) COMMON) _ebss = .; } > sram | ||
|
||
. = ALIGN(8); | ||
_end = .; /* for cmsis_gcc.h */ | ||
_end = .; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters