blob: d862c252672e665f31c03b5b6a26a775363f7cc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
all: build
build: hexedit.uf2
hexedit.uf2: hexedit.elf
../elf/elf2uf2 hexedit.elf hexedit.uf2
objects = main.o uart.o hexedit.o
hexedit.elf: $(objects)
arm-none-eabi-ld -T pico_persist.ld -o hexedit.elf $(objects) ../setup/setup.so
$(objects): %.o: %.s
arm-none-eabi-as -o $@ $<
clean:
rm hexedit.elf hexedit.uf2 *.o
flash: hexedit.uf2
[ -h /dev/disk/by-label/RPI-RP2 ] || sleep 3s
cat hexedit.uf2 > /dev/disk/by-label/RPI-RP2
|