summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #627 from spmvg/rst-escaping-inlineHEADmasterzsquareplusc2021-12-051-3/+3
|\ | | | | docs: \n was not in inline mode, causing the backslash to be escaped
| * \n was not in inline mode, causing the backslash to be escapedspmvg2021-12-051-3/+3
|/
* feat(miniterm): handle SIGINT on POSIXChris Liechti2021-10-021-11/+21
| | | | fixes #570
* Merge pull request #584 from luzpaz/typoszsquareplusc2021-10-029-10/+10
|\ | | | | docs: Fix misc. documentation and source comment typos
| * Fix misc. documentation and source comment typosluz paz2021-05-149-10/+10
| | | | | | Found via `codespell -q 3 -L ba,ser,wont`
* | feat(list_ports): add gadget serial ports ttyGS*Chris Liechti2021-10-021-0/+2
| |
* | Merge pull request #496 from ckielstra/masterzsquareplusc2021-10-021-3/+10
|\ \ | | | | | | fix(serialposix): Add support for setting a custom baudrate on the MIPS platform
| * | Add support for setting a custom baudrate on the MIPS platformckielstra2021-02-251-3/+10
| | | | | | | | | | | | | | | Fixed the issue where a custom baudrate could not be set for the MIPS platform. The hard coded values in the IOCTL call do differ in MIPS when compared to most other platforms.
* | | docs: elaborate more on readline(s)Chris Liechti2021-10-012-6/+17
| | |
* | | Merge pull request #587 from Finwood/masterzsquareplusc2021-10-011-1/+2
|\ \ \ | | | | | | | | fix: Redirect miniterm's port prompt to stderr instead of stdout, like all other messages
| * | | Redirect Minicom's Port Prompt to stderrLasse Fröhner2021-06-101-1/+2
| | | |
* | | | Merge pull request #602 from erikbgithub/patch-1zsquareplusc2021-10-011-2/+2
|\ \ \ \ | | | | | | | | | | docs: improve language
| * | | | SpellcheckErik Bernoth2021-08-181-2/+2
| |/ / / | | | | | | | | I'm not a native speaker, but this way it sounds clearer to me. "as expected" sounds to me like "similar or equal to what you should expect".
* | | | Merge pull request #606 from madislutter/remove_duplicate_comportszsquareplusc2021-10-012-24/+25
|\ \ \ \ | |/ / / |/| | | fix(list_ports): duplicate comports listed with list_ports(include_links=True)
| * | | Fix duplicate comports listed with list_ports(include_links=True)Madis Martin Lutter2021-09-032-24/+25
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case there are any symlinks which name matches any of the previously checked globs then list_ports(include_links=True) will report them twice. For example if there's a symlink named /dev/ttyUSB_mylink then it would appear twice. The problem is fixed by storing the found paths in a set instead of a list. Documentation at https://pythonhosted.org/pyserial/tools.html#module-serial.tools.list_ports already states that "Items are returned in no particular order" so there's no need to do extra sorting before returning the results.
* | | spy: option to write to log instead of file/stdoutChris Liechti2021-05-232-2/+56
| |/ |/|
* | miniterm: make integration easier, add serial_instance argumentChris Liechti2021-05-141-3/+3
| |
* | miniterm: fix escapes, F'keys on win32Chris Liechti2021-05-141-10/+10
| |
* | docs: remove backslash in docsChris Liechti2021-05-141-1/+1
| | | | | | | | fixes #468
* | Merge pull request #581 from jonathangjertsen/jonathan/read-until-doc-fixzsquareplusc2021-05-131-0/+3
|\ \ | | | | | | docs: Add a note that the first argument to read_until was called `terminator` in previous versions
| * | Add a note that the first argument to read_util was called `terminator` in ↵Jonathan Reichelt Gjertsen2021-05-081-0/+3
| |/ | | | | | | previous versions
* | Merge pull request #580 from akiomik/patch-1zsquareplusc2021-05-131-1/+1
|\ \ | | | | | | docs: Fix link to port_publisher.sh
| * | Fix invalid link in docsAkiomi Kamakura2021-05-041-1/+1
| |/
* | Merge pull request #576 from pgrimaud/masterzsquareplusc2021-05-132-2/+2
|\ \ | |/ |/| docs: fix typos
| * docs: fix typosPierre Grimaud2021-04-192-2/+2
|/
* chore: release 3.5v3.5Chris Liechti2020-11-232-1/+23
|
* spy: ensure bytes in write()Chris Liechti2020-11-231-0/+2
|
* Merge pull request #540 from henzef/patch-1zsquareplusc2020-11-191-21/+43
|\ | | | | serialposix: Fix inconstent state after exception in open()
| * serialposix: Fix inconstent state after exception in open()Fabian Henze2020-11-041-21/+43
| | | | | | | | | | | | | | If an exception occured during _update_dtr_state(), the Serial object was left in an inconsistant state: is_open=True, but close() fails. This patch fixes this by not setting is_open to True and by cleaning up the state if an exception occurs during open()
* | Merge pull request #546 from chairman888/545-osx-use-iousbhostdevice-insteadzsquareplusc2020-11-191-1/+5
|\ \ | | | | | | list_ports_osx: getting USB info on BigSur/AppleSilicon
| * | implement patch from oskayByron Han2020-11-171-1/+5
| |/ | | | | | | | | added call to get IOUSBHostDevice before falling back to IOUSBDevice (which has been removed on Big Sur on Apple Silicon
* | Merge pull request #542 from ↵zsquareplusc2020-11-191-1/+2
|\ \ | |/ |/| | | | | chairman888/509-osx-missing-kiomasterportdefault-on-bigsur list_ports_osx: kIOMasterPortDefault no longer exported on Big Sur
| * fix issue 509 - kIOMasterPortDefault no longer exported on Big Sur, but can ↵Byron Han2020-11-131-1/+2
|/ | | | hardcode 0 instead
* Merge pull request #530 from jrowberg/windows-serialnum-stabilityzsquareplusc2020-10-011-7/+16
|\ | | | | win32: Fix exception for composite serial number search on Windows
| * Fix exception for composite serial number search on WindowsJeff Rowberg2020-09-301-7/+16
|/
* chore: beta release 3.5b0v3.5b0Chris Liechti2020-09-212-4/+6
|
* setup: change entry points, update classifiersChris Liechti2020-09-214-5/+20
| | | | related to #466 #360
* docs: add note on raspi UARTsChris Liechti2020-09-211-0/+6
|
* Merge pull request #495 from johannesacco/masterzsquareplusc2020-09-211-1/+1
|\ | | | | list_ports_linux: Correct "interface" property on Linux hosts
| * Correct "interface" property on Linux hostsJohannes Carlsson2020-03-301-1/+1
| | | | | | | | | | | | The "interface" property should be read from the "usb_interface_path" instead of the "device_path" as the later one is a directory (e.g. /sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2.3/1-2.3:1.0/ttyUSB1).
* | list_ports_linux: change debug code in mainChris Liechti2020-09-211-2/+2
| |
* | docs: update copyright, notes, changelogChris Liechti2020-09-2116-17/+21
| |
* | miniterm: add CTRL+T Q as alternative to exitChris Liechti2020-09-161-2/+4
| | | | | | | | | | | | | | the default exit key is sometimes difficult to type providing a menu command to exit is easy enough #524
* | list_ports: use hardcoded path to library on osxChris Liechti2020-09-161-3/+2
| | | | | | | | | | | | | | | | | | due to a security related change on MacOS, find_library fails. which may eventually be fixed with a Python update but it also does not hurt to use the full paths now, that should work on old and new systems. related to #509 #518
* | docs: update CHANGESChris Liechti2020-09-151-0/+57
| |
* | examples: refactor wx example, use Bind to avoid deprecated warnings, ↵Chris Liechti2020-09-152-22/+17
| | | | | | | | | | | | | | | | | | IsChecked, unichr - wxTerminal: update event handling. sending still with issues, only sending capital letters fixes #443 fixes #444
* | loop: add out_waitingChris Liechti2020-09-141-0/+11
| | | | | | | | closes #408
* | win32: extend RS485 error messagesChris Liechti2020-09-141-5/+5
| | | | | | | | fixes #481
* | miniterm: fix double use of CTRL-T + sChris Liechti2020-09-142-2/+2
| | | | | | | | | | | | use z for suspend instead fixes #497
* | Merge pull request #351 from cefn/masterzsquareplusc2020-09-141-2/+54
|\ \ | | | | | | win32: Working CMD.exe terminal using Windows 10 ANSI support