Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | feat(miniterm): handle SIGINT on POSIX | Chris Liechti | 2021-10-02 | 1 | -11/+21 |
| | | | | fixes #570 | ||||
* | Redirect Minicom's Port Prompt to stderr | Lasse Fröhner | 2021-06-10 | 1 | -1/+2 |
| | |||||
* | miniterm: make integration easier, add serial_instance argument | Chris Liechti | 2021-05-14 | 1 | -3/+3 |
| | |||||
* | miniterm: fix escapes, F'keys on win32 | Chris Liechti | 2021-05-14 | 1 | -10/+10 |
| | |||||
* | miniterm: add CTRL+T Q as alternative to exit | Chris Liechti | 2020-09-16 | 1 | -2/+4 |
| | | | | | | | the default exit key is sometimes difficult to type providing a menu command to exit is easy enough #524 | ||||
* | miniterm: fix double use of CTRL-T + s | Chris Liechti | 2020-09-14 | 1 | -1/+1 |
| | | | | | | use z for suspend instead fixes #497 | ||||
* | Manually wrap comment. Add note of Windows 10 compatibility. | Cefn Hoile | 2018-06-08 | 1 | -1/+2 |
| | |||||
* | Remove spurious newline | Cefn Hoile | 2018-06-08 | 1 | -1/+0 |
| | |||||
* | Added extra codes from miniterm_mpy.py and finalised setconsolemode shenanigans. | Cefn Hoile | 2018-06-08 | 1 | -14/+40 |
| | |||||
* | First proven version with minimal nav keys | Cefn Hoile | 2018-06-08 | 1 | -1/+27 |
| | |||||
* | Merge branch 'master' into 326-miniterm.py-exclusive-access | zsquareplusc | 2018-05-07 | 1 | -59/+61 |
|\ | |||||
| * | Merge pull request #324 from carlosperate/fix_miniterm_menu_exit | zsquareplusc | 2018-05-07 | 1 | -2/+2 |
| |\ | | | | | | | Fix miniterm constructor defaults for exit_character and menu_character variables | ||||
| | * | Fix miniterm constructor exit_character and menu_character | Carlos | 2018-03-16 | 1 | -2/+2 |
| | | | | | | | | | | | | The MiniTerm.writer() method expects the exit_character and menu_character in character format instead of integer. The main() function works because both member variables are overwritten with the correct format, but for any other scripts using the default values from the constructor won't be able to exit or view the menu. | ||||
| * | | Merge pull request #315 from kurtmckee/use-absolute-imports | zsquareplusc | 2018-05-07 | 1 | -0/+2 |
| |\ \ | | | | | | | | | Use absolute import everywhere | ||||
| | * | | Use absolute import everywhere | Kurt McKee | 2018-02-07 | 1 | -0/+2 |
| | |/ | | | | | | | | | | | | | This prevents Python 2.7 from attempting to import system modules like sys and ctypes from the 'serial' directory. | ||||
| * | | style: quotes | Chris Liechti | 2018-05-07 | 1 | -53/+53 |
| |/ | |||||
* | | miniterm.py: use exclusive access for native serial ports by default | Sascha Silbe | 2018-03-19 | 1 | -0/+10 |
|/ | | | | | | | Fixes #326. miniterm.py now uses exclusive access for serial.Serial instances by default. The new option --non-exclusive can be used to override the default, disabling exclusive access for native ports. No change for non-native ports. | ||||
* | miniterm: use !r format instead of repr() | Chris Liechti | 2017-08-27 | 1 | -4/+4 |
| | |||||
* | miniterm: workaround for non ASCII port descriptions | Chris Liechti | 2017-07-19 | 1 | -1/+1 |
| | | | | | | | printing the list of ports may fail with UnicodeEncodeError. workaround using repr. fixes #237 | ||||
* | miniterm: refactor key handler and extend suspend function | Chris Liechti | 2017-07-17 | 1 | -104/+138 |
| | |||||
* | miniterm: reconnect in a loop handling errors, exit key | Chris Liechti | 2017-07-14 | 1 | -4/+12 |
| | |||||
* | miniterm: add suspend function (quickly close/reopen ports) | Chris Liechti | 2017-07-13 | 1 | -0/+11 |
| | |||||
* | miniterm: change cancel impl. for console, fixes #174 | Chris Liechti | 2016-12-07 | 1 | -9/+2 |
| | | | | | the way select was used, was incompatible with the text io wrapper used by python3 for sys.stdin | ||||
* | miniterm: fix missing newline in filter error message | Chris Liechti | 2016-10-01 | 1 | -1/+1 |
| | |||||
* | miniterm: Python 3 fix for cancel, fixes #137 | Chris Liechti | 2016-06-19 | 1 | -1/+1 |
| | |||||
* | style: use .format() in various places instead of "%" formatting | Chris Liechti | 2016-06-08 | 1 | -2/+1 |
| | |||||
* | miniterm: doc update for win32 cancel | Chris Liechti | 2016-05-14 | 1 | -1/+2 |
| | |||||
* | miniterm: use cancel_read instead of timeout for alive flag polling, when ↵ | Chris Liechti | 2016-05-13 | 1 | -1/+4 |
| | | | | | | available and gone is the (small) CPU load when idle | ||||
* | miniterm: make getkey cancelable on posix too, see #107 | Chris Liechti | 2016-05-09 | 1 | -0/+11 |
| | |||||
* | miniterm: use cancel_read when available to speed up port closing/exit | Chris Liechti | 2016-05-04 | 1 | -0/+9 |
| | |||||
* | miniterm: add a cancel() function to console wrapper object and a win32 ↵ | Chris Liechti | 2016-04-27 | 1 | -3/+11 |
| | | | | | | implementation - see also #107 | ||||
* | fix: error formating message | Chris Liechti | 2016-02-13 | 1 | -1/+1 |
| | |||||
* | style: some of the suggestions from flake8 and pylint | Chris Liechti | 2016-02-13 | 1 | -24/+38 |
| | |||||
* | style: some of the suggestions from flake8 and pylint | Chris Liechti | 2016-02-11 | 1 | -108/+120 |
| | |||||
* | style: some of the suggestions from flake8 | Chris Liechti | 2016-02-09 | 1 | -6/+3 |
| | |||||
* | style: some of the suggestions from flake8 | Chris Liechti | 2016-02-06 | 1 | -32/+30 |
| | |||||
* | miniterm: new option --ask to repeat port question on errors | Chris Liechti | 2015-12-24 | 1 | -36/+47 |
| | |||||
* | update file headers | Chris Liechti | 2015-12-16 | 1 | -0/+1 |
| | |||||
* | remove relative import, replace with absolute | Chris Liechti | 2015-09-30 | 1 | -4/+4 |
| | |||||
* | miniterm: use unichr instead of u'' literals (support for < python 3.4) | Chris Liechti | 2015-09-13 | 1 | -5/+5 |
| | |||||
* | miniterm:fix error when using input on wrapped stdout | Chris Liechti | 2015-09-10 | 1 | -0/+1 |
| | |||||
* | miniterm: add '-' as value for the port for "ask the user" | Chris Liechti | 2015-09-01 | 1 | -2/+2 |
| | | | | | without this value, it would not be possible to specify the baudrate and let the user select the port. | ||||
* | miniterm: improve port list, allow selection by index, fix port switching | Chris Liechti | 2015-09-01 | 1 | -15/+41 |
| | |||||
* | pep-8 and small cleanups | Chris Liechti | 2015-08-30 | 1 | -30/+40 |
| | |||||
* | miniterm: fix encoding problems on win32 | Chris Liechti | 2015-08-28 | 1 | -12/+16 |
| | |||||
* | miniterm: save and restore console codepage on windows | Chris Liechti | 2015-08-27 | 1 | -2/+8 |
| | |||||
* | miniterm: fix backspace conversion for Python 2.x | Chris Liechti | 2015-08-26 | 1 | -51/+50 |
| | |||||
* | miniterm: fix console state problem with Python 2.x after user input | Chris Liechti | 2015-08-25 | 1 | -4/+5 |
| | |||||
* | miniterm: restore EOL and repr toggles, rename transformation->filter | Chris Liechti | 2015-08-25 | 1 | -18/+71 |
| | | | | | | | - EOL mode can be toggled (menu + CTRL+L) - filters can be edited at runtime (menu + CTRL+F) - encoding can be changed at runtime (menu + CTRL+A) | ||||
* | miniterm: add "hexlify" codec | Chris Liechti | 2015-08-25 | 1 | -0/+6 |
| | | | | the hexlify codec can send and receive hex encoded data and converts bytes to strings (unlike the built-in hex code) try it with --encoding hexlify |