summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/ChangeLog.txt9
-rwxr-xr-xnuttx/ChangeLog2
2 files changed, 10 insertions, 1 deletions
diff --git a/apps/ChangeLog.txt b/apps/ChangeLog.txt
index 98d9f2432..b9e79f338 100644
--- a/apps/ChangeLog.txt
+++ b/apps/ChangeLog.txt
@@ -1150,4 +1150,13 @@
joystick driver (2014-12-03).
* apps/nshlib/nsh_netcmds.c: NSH TFTP get command: Wrong file namei
used for the destination. From Lazlo (2014-12-10).
+ * apps/system/cu: Add a minimalist implementation of the 'cu' terminal
+ program (part of Taylor UUCP for ages). Using it, you can simply open
+ a serial port and interact with it. Using '~.' you can leave the
+ terminal program and drop back to nsh. This might come in handy for
+ people that have e.g. GSM modems, GPS receivers or other devices with
+ text based serial communications attached to their Nuttx systems. From
+ Harald Welte (2014-12-13).
+
+ This might come in handy for other people that have e.g. GSM modems, GPS receivers or other devices with text based serial commu
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 7e1d6b69b..3dbdd62d0 100755
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -9207,7 +9207,7 @@
mode): Disable ULPI clock enable in RCC AHB1 Register. If Both ULPI
and the FS clock enable bits are set in FS mode, then the ARM never
awakens from WFI due to a chip issue. This is only an issue if you
- are using the internal PHY. From Ken Pettit (2012-12-13).
+ are using the internal PHY. From Ken Pettit (2014-12-13).
* drivers/serial/serial.c: In case a thread is doing a blockingi
operation (e.g. read()) on a serial device, while it is being
terminated by pthread_cancel(), then uart_close() gets called, but