firmware for my Touchscreen E-Paper Input Module for Framework Laptop 16
1#!/bin/sh
2
3rm -rf out
4mkdir out
5mkdir out/bins
6
7for slot in `seq -f "%02g" 31`
8do
9 EPD_PROG_SLOT=$slot cargo build --release
10 elf2epb -i ../target/thumbv6m-none-eabi/release/eepy-example-app -o "out/bins/eepy-example-app.s$slot.epb"
11done
12
13(cd out/bins && tar --zstd -cf ../eepy-example-app.epa *)