rp2040

RP2040 Programming without SDK
Log | Files | Refs

commit 6ca5a365f12207ef72e483c3fb1870763bb8f153
parent 5ca7441102daf5ab906359f8f45e3d74979b470a
Author: Matsuda Kenji <info@mtkn.jp>
Date:   Sat, 16 Mar 2024 09:53:31 +0900

delete pic and optimization options from CFLAGS

Diffstat:
Mex3/Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ex3/Makefile b/ex3/Makefile @@ -8,7 +8,7 @@ BIN2UF2 = ../tools/bin2uf2 MCPU = -mcpu=cortex-m0plus ASFLAGS = $(MCPU) -CFLAGS = $(MCPU) -mthumb -ffreestanding -nostartfiles -O0 -fpic -c +CFLAGS = $(MCPU) -mthumb -ffreestanding -nostartfiles -c LDFLAGS = --no-relax -nostdlib OBJS = boot2.o start.o main.o proc.o