summaryrefslogtreecommitdiff
path: root/apps/examples
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-01-30 09:07:22 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-01-30 09:07:22 -0600
commit85613e95e429679cd5bcff6af94e794fa1636b92 (patch)
tree5fd40e21af03b33e96e9e42e5a0a0804ba004cef /apps/examples
parentad14d6ca766f052240d9212dae0adbea8d935cdf (diff)
downloadpx4-nuttx-85613e95e429679cd5bcff6af94e794fa1636b92.tar.gz
px4-nuttx-85613e95e429679cd5bcff6af94e794fa1636b92.tar.bz2
px4-nuttx-85613e95e429679cd5bcff6af94e794fa1636b92.zip
apps/ustream and udgram: Change default FIFO path to /dev/fifo
Diffstat (limited to 'apps/examples')
-rw-r--r--apps/examples/README.txt4
-rw-r--r--apps/examples/udgram/Kconfig2
-rw-r--r--apps/examples/ustream/Kconfig2
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/examples/README.txt b/apps/examples/README.txt
index 61577dbee..1a4047592 100644
--- a/apps/examples/README.txt
+++ b/apps/examples/README.txt
@@ -1988,7 +1988,7 @@ examples/ustream
Configuration:
CONFIG_EXAMPLES_UDGRAM - Enables the Unix domain socket example.
CONFIG_EXAMPLES_UDGRAM_ADDR - Specifics the Unix domain address.
- Default "/var/fifo/fifo".
+ Default "/dev/fifo".
examples/ustream
^^^^^^^^^^^^^^^^
@@ -2002,7 +2002,7 @@ examples/ustream
Configuration:
CONFIG_EXAMPLES_USTREAM - Enables the Unix domain socket example.
CONFIG_EXAMPLES_USTREAM_ADDR - Specifics the Unix domain address.
- Default "/var/fifo/fifo".
+ Default "/dev/fifo".
examples/watchdog
^^^^^^^^^^^^^^^^^
diff --git a/apps/examples/udgram/Kconfig b/apps/examples/udgram/Kconfig
index 464a89093..67a88cab6 100644
--- a/apps/examples/udgram/Kconfig
+++ b/apps/examples/udgram/Kconfig
@@ -14,7 +14,7 @@ if EXAMPLES_UDGRAM
config EXAMPLES_UDGRAM_ADDR
string "Unix domain address"
- default "/var/fifo/fifo"
+ default "/dev/fifo"
config EXAMPLES_UDGRAM_SERVER_APPNAME
string "Server executable name"
diff --git a/apps/examples/ustream/Kconfig b/apps/examples/ustream/Kconfig
index ed61384e1..ccb0b30fa 100644
--- a/apps/examples/ustream/Kconfig
+++ b/apps/examples/ustream/Kconfig
@@ -14,6 +14,6 @@ if EXAMPLES_USTREAM
config EXAMPLES_USTREAM_ADDR
string "Unix domain address"
- default "/var/fifo/fifo"
+ default "/dev/fifo"
endif # EXAMPLES_USTREAM