You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by an...@apache.org on 2019/01/08 13:11:16 UTC

[mynewt-core] 01/06: hw/util/i2cn: Fix functions descriptions

This is an automated email from the ASF dual-hosted git repository.

andk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git

commit e80df7c4a08437bc2df7a0eb511838abfc2e4482
Author: Andrzej Kaczmarek <an...@codecoup.pl>
AuthorDate: Mon Jan 7 11:14:53 2019 +0100

    hw/util/i2cn: Fix functions descriptions
---
 hw/util/i2cn/include/i2cn/i2cn.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/hw/util/i2cn/include/i2cn/i2cn.h b/hw/util/i2cn/include/i2cn/i2cn.h
index d6caaae..78d76ef 100644
--- a/hw/util/i2cn/include/i2cn/i2cn.h
+++ b/hw/util/i2cn/include/i2cn/i2cn.h
@@ -35,8 +35,8 @@ extern "C" {
  * @param i2c_num               The index of the I2C interface to read from.
  * @param pdata                 Additional parameters describing the read
  *                                  operation.
- * @param timeout               The time, in OS ticks, to wait for the MCU to
- *                                  indicate completion of each clocked byte.
+ * @param timeout               The time, in OS ticks, to wait for operation
+ *                                  completion.
  * @param last_op               1 if this is the final message in the
  *                                  transaction.
  *
@@ -53,8 +53,8 @@ int i2cn_master_read(uint8_t i2c_num, struct hal_i2c_master_data *pdata,
  * @param i2c_num               The index of the I2C interface to write to.
  * @param pdata                 Additional parameters describing the write
  *                                  operation.
- * @param timeout               The time, in OS ticks, to wait for the MCU to
- *                                  indicate completion of each clocked byte.
+ * @param timeout               The time, in OS ticks, to wait for operation
+ *                                  completion.
  * @param last_op               1 if this is the final message in the
  *                                  transaction.
  *