aboutsummaryrefslogtreecommitdiff
path: root/nuttx/ChangeLog
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-18 17:08:27 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-18 17:08:27 +0000
commit530040b164b352fcee157f317b2ac7e1609d5956 (patch)
tree19315fef4996c7f98e75525ffa73ee284eb5c7de /nuttx/ChangeLog
parent6aa752b3380cebd42e1870e8c8f85d02f8956465 (diff)
downloadpx4-firmware-530040b164b352fcee157f317b2ac7e1609d5956.tar.gz
px4-firmware-530040b164b352fcee157f317b2ac7e1609d5956.tar.bz2
px4-firmware-530040b164b352fcee157f317b2ac7e1609d5956.zip
drivers/serial: Don't disable Rx interrrupts on each character
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4631 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/ChangeLog')
-rw-r--r--nuttx/ChangeLog5
1 files changed, 3 insertions, 2 deletions
diff --git a/nuttx/ChangeLog b/nuttx/ChangeLog
index 6457739f4..ce0dbed52 100644
--- a/nuttx/ChangeLog
+++ b/nuttx/ChangeLog
@@ -2667,7 +2667,8 @@
file was opened in binary mode.
* lib/stdio/lib_fopen.c: Correct an error in parsing open mode string. The
plus sign may not appear right after the basic mode. For example, "r+", "rb+",
- and "r+b" are all value open strings and mean the same thing.
+ and "r+b" are all valid open strings and mean the same thing.
* lib/stdio/lib_fopen.c: Correct return errno value from f_open() and
f_fdopen() if the open mode string is invalid.
-
+ * drivers/serial/serial.c: Do not disable Rx interrupts on each byte.
+ Rather, only disable Rx interrupts when the Rx ring buffer may be empty.