summaryrefslogtreecommitdiff
path: root/apps/system/Make.defs
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-12-13 10:36:37 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-12-13 10:36:37 -0600
commit1675114a0fc2a49396f884df3093ace836f4d1b9 (patch)
treefec23dd5dc2aecad355e0e921e19002cec8c79cb /apps/system/Make.defs
parent26ebd60ef8a3983dcef6dca9d8370d56465be79b (diff)
downloadnuttx-1675114a0fc2a49396f884df3093ace836f4d1b9.tar.gz
nuttx-1675114a0fc2a49396f884df3093ace836f4d1b9.tar.bz2
nuttx-1675114a0fc2a49396f884df3093ace836f4d1b9.zip
Add a minimalist implemention 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 other people that have e.g. GSM modems, GPS receivers or other devices with text based serial communications attached to their Nuttx systems.
Diffstat (limited to 'apps/system/Make.defs')
-rw-r--r--apps/system/Make.defs4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/system/Make.defs b/apps/system/Make.defs
index 125a2ffec..23a8d69c5 100644
--- a/apps/system/Make.defs
+++ b/apps/system/Make.defs
@@ -42,6 +42,10 @@ ifeq ($(CONFIG_SYSTEM_COMPOSITE),y)
CONFIGURED_APPS += system/composite
endif
+ifeq ($(CONFIG_SYSTEM_CUTERM),y)
+CONFIGURED_APPS += system/cu
+endif
+
ifeq ($(CONFIG_SYSTEM_FREE),y)
CONFIGURED_APPS += system/free
endif