diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-03-31 19:43:16 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-04-04 18:29:31 -0400 |
commit | 4c3d50693ee37f82ff2edad6a9779bcfd56fca1a (patch) | |
tree | aee76e3ecaa1f8fa5eaebc38909bc32fe8243325 /src/i2ccmds.c | |
parent | be6b29fabffeea681472bb4a0cfc63dcb4afe30e (diff) | |
download | kutter-4c3d50693ee37f82ff2edad6a9779bcfd56fca1a.tar.gz kutter-4c3d50693ee37f82ff2edad6a9779bcfd56fca1a.tar.xz kutter-4c3d50693ee37f82ff2edad6a9779bcfd56fca1a.zip |
bus: Change bus parameter in config_spi/config_i2c
Be explicit when using an spi_bus vs i2c_bus in the parameter name.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/i2ccmds.c')
-rw-r--r-- | src/i2ccmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i2ccmds.c b/src/i2ccmds.c index 01f7b36f..d518c666 100644 --- a/src/i2ccmds.c +++ b/src/i2ccmds.c @@ -22,7 +22,7 @@ command_config_i2c(uint32_t *args) i2c->i2c_config = i2c_setup(args[1], args[2], addr); } DECL_COMMAND(command_config_i2c, - "config_i2c oid=%c bus=%u rate=%u address=%u"); + "config_i2c oid=%c i2c_bus=%u rate=%u address=%u"); void command_i2c_write(uint32_t *args) |