aboutsummaryrefslogtreecommitdiff
path: root/apps/system
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-14 20:22:48 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-04-14 20:22:48 +0000
commit5868e1dc923d4b066a0eb6a2ce61f0a3e9190540 (patch)
tree5e029bfe0e09ca46b3a8ab206776255f6c936c63 /apps/system
parent585a7030150e7b153f53fe4ea2e186d33efe5896 (diff)
downloadpx4-firmware-5868e1dc923d4b066a0eb6a2ce61f0a3e9190540.tar.gz
px4-firmware-5868e1dc923d4b066a0eb6a2ce61f0a3e9190540.tar.bz2
px4-firmware-5868e1dc923d4b066a0eb6a2ce61f0a3e9190540.zip
More Kconfig updates
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4610 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'apps/system')
-rw-r--r--apps/system/i2c/Kconfig11
-rw-r--r--apps/system/readline/Kconfig1
2 files changed, 8 insertions, 4 deletions
diff --git a/apps/system/i2c/Kconfig b/apps/system/i2c/Kconfig
index f21ee21c1..745378b37 100644
--- a/apps/system/i2c/Kconfig
+++ b/apps/system/i2c/Kconfig
@@ -11,34 +11,37 @@ config SYSTEM_I2CTOOL
---help---
Enable support for the I2C tool.
-if SYSTEM_I2CTOOL
config I2CTOOL_BUILTIN
bool "NSH built-in command"
default y
- depends on NSH_BUILTIN_APPS
+ depends on SYSTEM_I2CTOOL && NSH_BUILTIN_APPS
---help---
Build the tools as an NSH built-in command
config I2CTOOL_MINBUS
int "Minimum bus number"
default 0
+ depends on SYSTEM_I2CTOOL
---help---
Smallest bus index supported by the hardware (default 0).
config I2CTOOL_MAXBUS
int "Maximum bus number"
+ depends on SYSTEM_I2CTOOL
default 3
---help---
Largest bus index supported by the hardware (default 3)
config I2CTOOL_MINADDR
hex "Minimum I2C address"
+ depends on SYSTEM_I2CTOOL
default 0x03
---help---
Minium 7-bit device address (default: 0x03)
config I2CTOOL_MAXADDR
hex "Maximum I2C address"
+ depends on SYSTEM_I2CTOOL
default 0x77
---help---
Largest 7-bit device address (default: 0x77)
@@ -46,13 +49,13 @@ config I2CTOOL_MAXADDR
config I2CTOOL_MAXREGADDR
hex "Maximum I2C register address"
default 0xff
+ depends on SYSTEM_I2CTOOL
---help---
Largest I2C register address (default: 0xff)
config I2CTOOL_DEFFREQ
int "Default I2C frequency"
default 4000000
+ depends on SYSTEM_I2CTOOL
---help---
Default I2C frequency (default: 4000000)
-
-endif \ No newline at end of file
diff --git a/apps/system/readline/Kconfig b/apps/system/readline/Kconfig
index a7467b15d..2ed9cafd6 100644
--- a/apps/system/readline/Kconfig
+++ b/apps/system/readline/Kconfig
@@ -10,6 +10,7 @@ config SYSTEM_READLINE
Enable support for the readline() function.
if SYSTEM_READLINE
+config READLINE_ECHO
bool "Echo character input"
default y
---help---