add spl, first tries programming

This commit is contained in:
seppl
2025-06-28 16:14:14 +02:00
parent 2155e2b176
commit 012355c2e8
104 changed files with 58111 additions and 3 deletions

20
firmware/SDCC/_UX_clean.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
# change to current working directory
cd `dirname $0`
# just for output
echo off
clear
# target device (for supported devices see stm8l15x.h)
DEVICE=STM8L15X_MD
# set make tool (if not in PATH, set complete path)
MAKE=make
# use Makefiles to delete outputs
$MAKE -f Makefile DEVICE=$DEVICE clean
echo on