aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSelene ToyKeeper2023-05-02 05:23:22 -0600
committerSelene ToyKeeper2023-05-02 05:23:22 -0600
commitd3d29ea2c08595d8a42d36a986f24e5b5afebd41 (patch)
tree1c601ab8298248200eb790344bc011e61033afe0
parentadded ability to set channel mode for number readouts (batt check, temp check... (diff)
downloadanduril-d3d29ea2c08595d8a42d36a986f24e5b5afebd41.tar.gz
anduril-d3d29ea2c08595d8a42d36a986f24e5b5afebd41.tar.bz2
anduril-d3d29ea2c08595d8a42d36a986f24e5b5afebd41.zip
bin/flash-1616.py: added shebang header and +x bit
-rwxr-xr-x[-rw-r--r--]bin/flash-1616.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/flash-1616.py b/bin/flash-1616.py
index 6b3e2ee..f431b3a 100644..100755
--- a/bin/flash-1616.py
+++ b/bin/flash-1616.py
@@ -1,3 +1,4 @@
+#!/usr/bin/env python3
# Use with Python3, make sure to have the pymcuprog module installed (via pip)
# Read out the pymcuprog version
@@ -73,4 +74,5 @@ print("Writing complete.")
print("Verifying the write... ")
verify_status = backend.verify_hex(hexfile)
if verify_status is True:
- print("Verification successful!") \ No newline at end of file
+ print("Verification successful!")
+