Skip to content

Commit

Permalink
Make upload-file.py work better on CDC-ACM console.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jade Mattsson committed Oct 27, 2024
1 parent 2e2d231 commit f108d65
Showing 1 changed file with 92 additions and 28 deletions.
120 changes: 92 additions & 28 deletions scripts/upload-file.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,15 @@

# The loader we send to NodeMCU so that we may upload a (binary) file safely.
# Uses STX/ETX/DLE framing and escaping.
# The CDC-ACM console gets overwhelmed unless we throttle the send by using
# an ack scheme. We use a fake prompt for simplicity's sake for that.
loader = b'''
(function()
local function transmission_receiver(chunk_cb)
local inframe = false
local escaped = false
local done = false
local len = 0
local STX = 2
local ETX = 3
local DLE = 16
Expand All @@ -30,6 +33,11 @@
end
return function(data)
if done then return end
len = len + #data
while len >= @BLOCKSIZE@ do
len = len - @BLOCKSIZE@
console.write("> ")
end
local from
local to
for i = 1, #data
Expand All @@ -38,10 +46,7 @@
if inframe
then
if not from then from = i end -- first valid byte
if escaped
then
escaped = false
else
if escaped then escaped = false else
if b == DLE
then
escaped = true
Expand All @@ -57,8 +62,7 @@
else -- look for an (unescaped) STX to sync frame start
if b == DLE then escaped = true
elseif b == STX and not escaped then inframe = true
else escaped = false
end
else escaped = false end
end
-- else ignore byte outside of framing
end
Expand All @@ -70,17 +74,18 @@
local function file_saver(name)
local f = io.open(name, "w")
return function(chunk)
if chunk then f:write(chunk)
else
if chunk then f:write(chunk) else
f:close()
console.on("data", 0, nil)
console.mode(console.INTERACTIVE)
end
end
end
console.on("data", 0, transmission_receiver(file_saver("@FILENAME@")))
console.on("data", 0, transmission_receiver(file_saver(
"@FILENAME@")))
console.mode(console.NONINTERACTIVE)
console.write("ready")
end)()
'''

Expand All @@ -91,6 +96,7 @@ def parse_args():
parser.add_argument("name", nargs="?", help="Name to upload file as.")
parser.add_argument("-p", "--port", default="/dev/ttyUSB0", help="Serial port (default: /dev/ttyUSB0).")
parser.add_argument("-b", "--bitrate", type=int, default=115200, help="Bitrate (default: 115200).")
parser.add_argument("-s", "--blocksize", type=int, default=80, help="Block size of file data, tweak for speed/reliability of upload (default: 80)")
return parser.parse_args()

def load_file(filename):
Expand All @@ -103,26 +109,49 @@ def load_file(filename):
print(f"Error reading file {filename}: {e}")
sys.exit(1)

def wait_prompt(ser):
def xprint(msg):
print(msg, end='', flush=True)

def wait_prompt(ser, ignore):
"""Wait until we see the '> ' prompt, or the serial times out"""
buf = bytearray()
b = ser.read()
while b != b'':
buf.extend(b)
timeout = 5
while timeout > 0:
if b == b'':
timeout -= 1
xprint('!')
else:
buf.extend(b)
if not ignore and buf.find(b'Lua error:') != -1:
xprint(buf.decode())
line = ser.readline()
while line != b'':
xprint(line.decode())
line = ser.readline()
sys.exit(1)
if buf.find(b'> ') != -1:
return True
b = ser.read()
xprint(buf.decode())
return False

def sync(ser):
"""Get ourselves to a clean prompt so we can understand the output"""
ser.write(b'\x03\x03\n')
wait_prompt(ser)
if not wait_prompt(ser, True):
return False
ser.write(b"print('sync')\n")
line = ser.readline()
while line != b"sync\n":
line = ser.readline()
return wait_prompt(ser)
timeout = 5
while timeout > 0:
if line == b'sync\n':
return True
elif line == b'':
timeout -= 1
xprint('!')
line = ser.readline()
return wait_prompt(ser, True)

def cleanup():
"""Cleanup function to send final data and close the serial port."""
Expand All @@ -140,7 +169,26 @@ def line_interactive_send(ser, data):
for line in data.split(b'\n'):
ser.write(line)
ser.write(b'\n')
wait_prompt(ser)
if not wait_prompt(ser, False):
return False
xprint('.')
return True

def chunk_data(data, size):
return (data[0+i:size+i] for i in range(0, len(data), size))

def chunk_interactive_send(ser, data, size):
"""Send the data chunked into blocks, waiting for an ack in between"""
n=0
for chunk in chunk_data(data, size):
ser.write(chunk)
if len(chunk) == size and not wait_prompt(ser, False):
print(f"failed after sending {n} blocks")
return False
xprint('.')
n += 1
print(f" ok, sent {n} blocks")
return True

def transmission(data):
"""Perform STX/ETX/DLE framing and escaping of the data"""
Expand All @@ -159,30 +207,46 @@ def transmission(data):
upload_name = args.name if args.name else args.file

file_data = load_file(args.file)
print(f"Loaded {len(file_data)} bytes of file contents")

blocksize = bytes(str(args.blocksize).encode())

try:
ser = serial.Serial(args.port, args.bitrate, timeout=1)
ser = serial.Serial(port=args.port, baudrate=args.bitrate, timeout=1)
except serial.SerialException as e:
print(f"Error opening serial port {args.port}: {e}")
sys.exit(1)

print("Synchronising serial...")
print("Synchronising serial...", end='')
if not sync(ser):
print("NodeMCU not responding\n")
print("\nNodeMCU not responding\n")
sys.exit(1)

print(f'Uploading "{args.file}" as "{upload_name}"')
print(f' ok\nUploading "{args.file}" as "{upload_name}"')

atexit.register(cleanup)

print("Sending loader...")
line_interactive_send(
ser, loader.replace(b"@FILENAME@", upload_name.encode()))
xprint("Sending loader")
ok = line_interactive_send(
ser, loader.replace(
b"@FILENAME@", upload_name.encode()).replace(
b"@BLOCKSIZE@", blocksize))

if ok:
xprint(" ok\nWaiting for go-ahead...")
line = ser.readline()
while line.find(b"ready") == -1:
xprint('.')
line = ser.readline()
xprint(f" ok\nSending file contents (using blocksize {args.blocksize})")
ok = chunk_interactive_send(
ser, transmission(file_data), int(blocksize))
ser.write(b"\n")

print("Sending file contents...")
ser.write(transmission(file_data))
wait_prompt(ser)
if not ok or not wait_prompt(ser, False):
print("transmission timed out")
sys.exit(1)

ser.close()
ser = None
print("Done.")
print("Upload complete.")

0 comments on commit f108d65

Please sign in to comment.