Added template for film scanner firmware

This commit is contained in:
2022-04-21 16:54:58 +02:00
parent e6126970a5
commit 971f150959
8 changed files with 707 additions and 235 deletions

View File

@@ -1,10 +1,12 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.stdenv
buildInputs = with pkgs; [
tio
stdenv
elf2uf2-rs
probe-run
# keep this line if you use bash
pkgs.bashInteractive
bashInteractive
];
}