aboutsummaryrefslogtreecommitdiff
path: root/apps/modbus/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-23 15:37:13 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-23 15:37:13 +0000
commit1e15a6d1cff9fe105d094316f06a01e0fc7e4465 (patch)
treebdace79b95ff390c7c1b0ccdd005816be2c83e6c /apps/modbus/README.txt
parentfce36677c1495e988ba118f4721d45de5c2f42d6 (diff)
downloadpx4-firmware-1e15a6d1cff9fe105d094316f06a01e0fc7e4465.tar.gz
px4-firmware-1e15a6d1cff9fe105d094316f06a01e0fc7e4465.tar.bz2
px4-firmware-1e15a6d1cff9fe105d094316f06a01e0fc7e4465.zip
Baud definitions (B9600 for example) are again encoded; Now supports the BOTHER settings which allows specifying the baud via c_ispeed and c_ospeed termios fields
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4970 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'apps/modbus/README.txt')
-rw-r--r--apps/modbus/README.txt11
1 files changed, 7 insertions, 4 deletions
diff --git a/apps/modbus/README.txt b/apps/modbus/README.txt
index 46b6b2b0e..c7a8ef245 100644
--- a/apps/modbus/README.txt
+++ b/apps/modbus/README.txt
@@ -60,10 +60,6 @@ The NuttX-named configuration options that are available include:
CONFIG_MB_ASCII_ENABLED - Modbus ASCII support
CONFIG_MB_RTU_ENABLED - Modbus RTU support
CONFIG_MB_TCP_ENABLED - Modbus TCP support
- CONFIG_MB_TERMIOS - Serial driver supports termios.h interfaces (tcsetattr,
- tcflush, etc.). If this is not defined, then the terminal settings (baud,
- parity, etc.) are not configurable at runtime; serial streams will not be
- flushed when closed.
CONFIG_MB_ASCII_TIMEOUT_SEC - Character timeout value for Modbus ASCII. The
character timeout value is not fixed for Modbus ASCII and is therefore
a configuration option. It should be set to the maximum expected delay
@@ -106,6 +102,13 @@ The NuttX-named configuration options that are available include:
CONFIG_MB_FUNC_READWRITE_HOLDING_ENABLED - If the Read/Write Multiple
Registers function should be enabled.
+See also other serial settings, in particular:
+
+ CONFIG_SERIAL_TERMIOS - Serial driver supports termios.h interfaces (tcsetattr,
+ tcflush, etc.). If this is not defined, then the terminal settings (baud,
+ parity, etc.) are not configurable at runtime; serial streams will not be
+ flushed when closed.
+
Note
====