blob: 2ff0812db2f0b30aa6da96a0220c12f938773fa4 (
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: echo.uf2
echo.uf2: echo.elf
../elf/elf2uf2 echo.elf echo.uf2
objects = main.o uart.o
echo.elf: $(objects)
arm-none-eabi-ld -T pico_ram_only.ld -o echo.elf $(objects) ../setup/setup.so
$(objects): %.o: %.s
arm-none-eabi-as -o $@ $<
clean:
rm echo.elf echo.uf2 *.o
flash: echo.uf2
[ -h /dev/disk/by-label/RPI-RP2 ] || sleep 3s
cat echo.uf2 > /dev/disk/by-label/RPI-RP2
|