I2C Tool: Use default oof 4ooKhz, not 4MHz

This commit is contained in:
Gregory Nutt 2013-10-10 09:55:08 -06:00
parent 95be6425a9
commit 429e26f960
2 changed files with 4 additions and 2 deletions

View File

@ -674,4 +674,6 @@
in a somewhat different form. (2013-9-30). in a somewhat different form. (2013-9-30).
* apps/nshlib/nsm_routecmds.c: Add addroute and delroute * apps/nshlib/nsm_routecmds.c: Add addroute and delroute
commands (2013-10-5). commands (2013-10-5).
* apps/system/i2ctool/Kconfig: Fix default I2C frequency: 400KHz
instead of 4MHz. Suggested by Max Kriegleder (2013-10-10).

View File

@ -50,9 +50,9 @@ config I2CTOOL_MAXREGADDR
config I2CTOOL_DEFFREQ config I2CTOOL_DEFFREQ
int "Default I2C frequency" int "Default I2C frequency"
default 4000000 default 400000
depends on SYSTEM_I2CTOOL depends on SYSTEM_I2CTOOL
---help--- ---help---
Default I2C frequency (default: 4000000) Default I2C frequency (default: 400000)
endif endif