diff options
author | Daniel Campora <daniel@wipy.io> | 2015-03-25 16:56:14 +0100 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-03-25 16:56:14 +0100 |
commit | 7f41f650de449c74e07ad35e0c944699eba7949c (patch) | |
tree | 42ba2513f77fc7d0bf06593fc147af77deacc366 /cc3200/mods/pybspi.c | |
parent | 26d230419c37a9b28a3b76f3e20af6799d0098c4 (diff) |
cc3200: Remove superflous params from the I2C API.
Diffstat (limited to 'cc3200/mods/pybspi.c')
-rw-r--r-- | cc3200/mods/pybspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/mods/pybspi.c b/cc3200/mods/pybspi.c index e047c7a6a..eadd7f76b 100644 --- a/cc3200/mods/pybspi.c +++ b/cc3200/mods/pybspi.c @@ -174,7 +174,7 @@ STATIC void pyb_spi_print(void (*print)(void *env, const char *fmt, ...), void * pyb_spi_obj_t *self = self_in; if (self->baudrate > 0) { - print(env, "<SPI0, SPI.MASTER, baudrate=%u, config=%u, submode=%u, bits=%u", + print(env, "<SPI0, SPI.MASTER, baudrate=%u, config=%u, submode=%u, bits=%u>", self->baudrate, self->config, self->submode, (self->wlen * 8)); } else { |