From da5c2e8d5d188d00146a8607ff28549e49ed2d22 Mon Sep 17 00:00:00 2001 From: mykola2312 <49044616+mykola2312@users.noreply.github.com> Date: Wed, 20 Apr 2022 17:16:02 +0300 Subject: [PATCH] set Cortex-M4 for STM32F429IGT6 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1a7e319..d31c4c4 100644 --- a/Makefile +++ b/Makefile @@ -3,5 +3,5 @@ debug: all: arm-none-eabi-gcc -x assembler-with-cpp -c -O0 -mcpu=cortex-m0 -mthumb -Wall core.S -o core.o - arm-none-eabi-gcc core.o -mcpu=cortex-m0 -mthumb -Wall -nostdlib -lgcc -T./linker.ld -o main.elf - arm-none-eabi-objcopy -O binary main.elf main.bin \ No newline at end of file + arm-none-eabi-gcc core.o -mcpu=cortex-m4 -mthumb -Wall -nostdlib -lgcc -T./linker.ld -o main.elf + arm-none-eabi-objcopy -O binary main.elf main.bin