diff --git a/python/terminal_deployer.py b/python/terminal_deployer.py deleted file mode 100755 index 3240de5..0000000 --- a/python/terminal_deployer.py +++ /dev/null @@ -1,72 +0,0 @@ -#! /usr/bin/env python -# -*- coding: utf-8 -*- - -""" @package docstring -ARDUINO PARALLEL TERMINAL DEPLOYER -This software sends a compiled Z80 binary files to Pat80 monitor via an arduino -with flashed arduino_terminal firmware. - -USAGE: -Connect the arduino to a Pat80 I/O port. -Flash /arduino/arduino_terminal firmware into the Arduino. -Connect the Arduino to a PC via USB and power on Pat80 -In the Pat80 Memory Monitor select I for IMMEDIATE LOAD -Run this program providing the Arduino USB port and a Z80 binary file -The code contained will be copied in Pat80's memory and executed immediately. - -DISCLAIMER: -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. -You should have received a copy of the GNU General Public License -along with this program. If not, see . -""" - -import serial -import time - -class TerminalDeployer: - def __init__(self, port, baudRate, fileName): - ser = serial.Serial(port, baudRate) - print "Serial port {} opened with baudrate {}".format(port, str(baudRate)) - - ser.write(73) - while True: - x = ser.read() - print(x) - time.sleep(1) - ser.write(b'v') - - # Open z80 bin file - ''' - with open(fileName, "rb") as f: - print "Sending command IMMEDIATE" - ser.write(b'I') - time.sleep(1) - print "Sending file {}".format(fileName) - byte = f.read(1) - while byte: - print(byte) - ser.write(byte) - byte = f.read(1) - f.close() - - ser.close() - print "Completed" - ''' - -if __name__ == '__main__': - import argparse - - parser = argparse.ArgumentParser() - parser.add_argument('port', help="arduino parallel monitor USB port") - parser.add_argument('baudrate', help="arduino parallel monitor USB baudrate") - parser.add_argument('file', help="asm binary file to send") - args = parser.parse_args() - - td = TerminalDeployer(args.port, args.baudrate, args.file) diff --git a/python/terminal_emulator.py b/python/terminal_emulator.py index 92297ce..a77b985 100755 --- a/python/terminal_emulator.py +++ b/python/terminal_emulator.py @@ -26,21 +26,21 @@ along with this program. If not, see . import serial import curses import time +import textwrap + class TerminalEmulator: def __init__(self, w, ser): w.clear() w.move(0,0) while True: - try: - # read key and write to serial port - key = w.get_wch() # TODO: Mettere no delay mode - if key == 10 or (key > 31 and key < 256): - # Is a character - ser.write(key) - except Exception as e: - # No input - pass + # read key and write to serial port + key = w.getch() + if key == 10 or (key > 31 and key < 256): + # Is a character + ser.write(key) + elif int(key) == 1: # CTRL+A, enter ADB mode + self.adbMode(w, ser) # read serial port and write to curses if ser.inWaiting(): @@ -48,14 +48,47 @@ class TerminalEmulator: if ord(b) > 31 or ord(b) == 10: w.addch(b) - stdscr.refresh() + w.refresh() + + def adbMode(self, w, ser): + stdscr.nodelay(False) + curses.echo() + + # Clear first line + w.move(0,0) + w.clrtoeol() + # Ask for file path + w.addstr(0, 0, '[ADB MODE] file to load:', curses.A_REVERSE) + path = w.getstr() + try: + with open(path, "rb") as f: + byte = f.read(1) + while byte: + ser.write(byte) + byte = f.read(1) + except IOError as e: + w.move(0,0) + w.clrtoeol() + w.addstr(" {}".format(str(e)), curses.A_REVERSE) + w.refresh() + + curses.noecho() + stdscr.nodelay(True) + if __name__ == '__main__': import argparse - parser = argparse.ArgumentParser() + parser = argparse.ArgumentParser( + formatter_class=argparse.RawTextHelpFormatter, + epilog=textwrap.dedent('''\ + Pat80 Terminal Emulator with ADB (Assembly Deploy Bridge) support. + CTRL+C Exits + CTRL+A ADB mode: sends binary file + ''') + ) parser.add_argument('port', help="arduino parallel monitor USB port") parser.add_argument('baudrate', help="arduino parallel monitor USB baudrate") args = parser.parse_args() @@ -66,12 +99,19 @@ if __name__ == '__main__': curses.cbreak() stdscr.idlok(True) stdscr.scrollok(True) + stdscr.nodelay(True) + exitMessage = None + exitSuccess = True try: ser = serial.Serial(args.port, args.baudrate, timeout=0) - td = TerminalEmulator(stdscr, ser) + td = TerminalEmulator(stdscr, ser) + except KeyboardInterrupt: + exitMessage = 'Bye!' + exitSuccess = True except Exception as e: - print(e) + exitMessage = str(e) + exitSuccess = False finally: # Close serial ser.close() @@ -79,4 +119,7 @@ if __name__ == '__main__': curses.nocbreak() curses.echo() curses.endwin() + # Print exit message + print(exitMessage) + exit(0 if exitSuccess else 1)