Make builds a bit more robust and reusable

- Lock our vendored dependencies (also pull in some new ones I will be
needing soon)

- Ensure we have a sane way of pulling those vendored dependencies into
the DFU-flashable images (upy-freeze.txt)

- Break up the Makefile into a bunch of smaller, sometimes reusable
chunks

- Add a noop keyboard that simply exits, so we can flash a "keyboard"
that just dumps us straight to REPL

- Remove my personal ampy config since that's not portable at all
This commit is contained in:
Josh Klar
2018-09-03 01:23:15 -07:00
parent 0865a828c4
commit 4ea5fcd004
8 changed files with 67 additions and 17 deletions

5
boards/noop.py Normal file
View File

@@ -0,0 +1,5 @@
import sys
def main():
sys.exit(0)