1
0
mirror of https://github.com/UzixLS/picocom.git synced 2025-07-19 07:21:18 +03:00

117 Commits

Author SHA1 Message Date
110c15ea3c Added support for locking using flock(2) (now default)
Fixes #26
Old-style UUCP-lockdir code is maintained.
Preferred locking style is selected via the Makefile
2015-08-07 08:21:09 +03:00
208bb118e6 Input-buffer size (TTY_Q_SZ) now defined in Makefile
Fixes #20
2015-08-07 04:52:46 +03:00
aa0bccf948 Added support for more high baud rates. See issue:
http://code.google.com/p/picocom/issues/detail?id=25

This should also fix issue:
  http://code.google.com/p/picocom/issues/detail?id=17

The following baud-rates are now supported:

Standard:

  0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400, 4800, 9600,
  19200, 38400, 57600, 115200,

HIGH_BAUD:

  230400, 460800, 500000, 576000, 921600, 1000000, 1152000, 1500000,
  2000000, 2500000, 3000000, 3500000, 4000000,

Now every baudrate above 115200 is compiled-in only if the respective
macros are defined in the system header files. This should allow
picocom with HIGH_BAUD support to compile cleanly for more systems.
2015-08-06 23:42:49 +00:00
6b824ee71a - Added support for the linenoise library, which allows line-editing
and path completion when entering filenames for receive- and send-
  file operations. Support can be compiled-out if you wish. See Makefile.

- When entering a filename for receive- or send- file operations, 
  pressing C-c cancels the operation. 
  This works regardless of whether linenoise support (see above) has
  been compiled in or not

- Use debian's xmltoman to convert manual page form xml to man.
2015-08-06 20:07:40 +00:00
afcfc6829b Added O_NOCTTY when opening serial port 2012-02-21 06:40:56 +00:00
b63e54f201 Instead of select(FD_SETSIZE...) do select(tty_fd + 1...).
We know that tty_fd is the numerically largest filedes.
2012-02-21 06:30:08 +00:00
5e6893d851 Handle the case when read(tty_fd) or read(STI) fails
with EAGAIN or EWOULDBLOCK
2012-02-21 06:24:49 +00:00
fcecde9d1a Add conditionals to allow compile with UUCP_LOCK_DIR undefined 2012-02-21 05:13:24 +00:00
8f171bb8b6 Corrected typo tha caused the send command to be run instead
of the receive command when a filename was given.

(fixes issue 5)
2010-06-24 19:54:23 +00:00
0c37a3e089 Reverted changes to picocom.c applied, by mistake, in r16 2010-06-12 21:10:22 +00:00
02eb9aa22e Incremented version to 1.7 2010-06-12 20:41:01 +00:00
ea72b654ed Added features:
- Local echo
  - Configurable input mapping (CR --> LF, DEL --> BS, etc)
  - Configurable output mapping
  - Configurable local-echo mapping

May still need some testing...
2010-05-29 02:47:00 +00:00
035f65fe4d Allow non-alpha escape keys (e.g. C-])
Thanks Niels Moller
2010-05-28 01:34:18 +00:00
8a48fc24aa Enabled support for higher baudrates up to 921600. Support is
compiled-in conditionally on the HIGH_BAUD macro.

Thanks to Pavel Vymetalek
2010-05-28 01:12:12 +00:00
08c1f08adf Silenced compiler warning 2010-05-28 00:42:21 +00:00
6837a7ed4e Changed default send_cmd to "sz -vv"
(fixes issue 3)
2010-05-28 00:38:55 +00:00
464e25056f Imported 1.4 source 2010-05-28 00:17:52 +00:00