summaryrefslogtreecommitdiff
path: root/binmaker.py
diff options
context:
space:
mode:
authorAlex Evans <aevans@midjourney.com>2023-07-25 18:31:24 +0100
committerAlex Evans <aevans@midjourney.com>2023-07-25 18:31:24 +0100
commitc59d7de334928a65a3fc81bdf389b08e8c189de4 (patch)
tree2ca1d8659233a6fb0821e71b42f30b60bc401f84 /binmaker.py
parentc99c2060eefd43ee092974159ec8e86e6cd7a269 (diff)
downloadplinky-c59d7de334928a65a3fc81bdf389b08e8c189de4.tar.gz
fix path of bootloader bin
Diffstat (limited to 'binmaker.py')
-rw-r--r--binmaker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/binmaker.py b/binmaker.py
index da7a26e..4e3b6e2 100644
--- a/binmaker.py
+++ b/binmaker.py
@@ -4,7 +4,7 @@ def main():
ver2 = '0'
ver3 = '0'
try:
- with open("sw/Release/plinkybl.bin", "rb") as f1:
+ with open("bootloader/Release/plinkybl.bin", "rb") as f1:
bl_content = f1.read()
with open("sw/Release/plinkyblack.bin", "rb") as f2:
app_content = f2.read()