aboutsummaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-02-01 19:07:57 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-02-01 19:07:57 +0000
commit6a4e8b32b36f90188dd0a1a961c99b2bc825b627 (patch)
tree058c4031d3edf80d524112e76c6da2bdc0be8e5c /nuttx/ChangeLog
parent47fa99c4a804956d537a3570587c59ecfb589717 (diff)
downloadpx4-firmware-6a4e8b32b36f90188dd0a1a961c99b2bc825b627.tar.gz
px4-firmware-6a4e8b32b36f90188dd0a1a961c99b2bc825b627.tar.bz2
px4-firmware-6a4e8b32b36f90188dd0a1a961c99b2bc825b627.zip
Move lib/stdio/lib_fgets.c to apps/system/readline; simplify fgets(); use readline instead of fgets in NSH
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4356 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index dbe87bb88..bd73f2899 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -2425,3 +2425,9 @@
* lib/dirent: Moved readdir_r() and telldir() from lib/misc to this new
directory where they belong.
* lib/termios. Implemented tcsetattr() and tcgetattr().
+ * lib/stdio/lib_fgets.c: The old fgets includes some terminal related
+ functionality: It handles VT-100 commands, includes a command line editor
+ and echo characters back to the terminal. This old, overloaded fgets()
+ was renamed readline() and moved to apps/system/readline. The version
+ of fgets() in lib/stdio was them simplified and stripped down so that it
+ *only* gets a string -- as its description implies.