Seeing if i can get this to work

This commit is contained in:
Ben Kyd
2023-06-09 23:57:12 +01:00
parent 6253ee1e27
commit 8423640e35
50 changed files with 122 additions and 164 deletions

16
makefile Normal file
View File

@@ -0,0 +1,16 @@
.ONESHELL:
all: compile flash
compile:
cd build && cmake .. -DCMAKE_EXPORT_COMPILE_COMMANDS=on && make
flash: compile
sudo mount -L RPI-RP2 /mnt
sudo cp build/pico_vga.uf2 /mnt
echo "Copied pico_vga.uf2 to pico"
clean:
rm -rf build
mkdir build