diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-12-16 16:31:30 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-12-16 16:31:30 +0000 |
commit | 22a629e5a12f7cc498a76db563a07210c76335a5 (patch) | |
tree | 2e277c5cd1b130f7475b98290bffa5531e725127 /os/hal/platforms/AT91SAM7 | |
parent | 9a58d1b6e303b559c54b26bd1cfb91eea26f20bd (diff) | |
download | ChibiOS-22a629e5a12f7cc498a76db563a07210c76335a5.tar.gz ChibiOS-22a629e5a12f7cc498a76db563a07210c76335a5.tar.bz2 ChibiOS-22a629e5a12f7cc498a76db563a07210c76335a5.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4927 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/AT91SAM7')
-rwxr-xr-x | os/hal/platforms/AT91SAM7/i2c_lld.c | 12 | ||||
-rwxr-xr-x | os/hal/platforms/AT91SAM7/i2c_lld.h | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/os/hal/platforms/AT91SAM7/i2c_lld.c b/os/hal/platforms/AT91SAM7/i2c_lld.c index 2d113824e..c1f0e83f6 100755 --- a/os/hal/platforms/AT91SAM7/i2c_lld.c +++ b/os/hal/platforms/AT91SAM7/i2c_lld.c @@ -23,9 +23,9 @@ */
/**
- * @file SAM7/i2c_lld.c
- * @brief SAM7 I2C subsystem low level driver source.
- * @note I2C peripheral interrupts on SAM7 platform must have highest
+ * @file AT91SAM7/i2c_lld.c
+ * @brief AT91SAM7 I2C subsystem low level driver source.
+ * @note I2C peripheral interrupts on AT91SAM7 platform must have highest
* priority in system.
*
* @addtogroup I2C
@@ -275,7 +275,7 @@ void i2c_lld_stop(I2CDriver *i2cp) { * @param[out] rxbuf pointer to the receive buffer
* @param[in] rxbytes number of bytes to be received
* @param[in] timeout this value is ignored on SAM7 platform.
- * .
+ *
* @return The operation status.
* @retval RDY_OK if the function succeeded.
* @retval RDY_RESET if one or more I2C errors occurred, the errors can
@@ -331,7 +331,7 @@ msg_t i2c_lld_master_receive_timeout(I2CDriver *i2cp, i2caddr_t addr, * @param[out] rxbuf pointer to the receive buffer
* @param[in] rxbytes number of bytes to be received
* @param[in] timeout this value is ignored on SAM7 platform.
- * .
+ *
* @return The operation status.
* @retval RDY_OK if the function succeeded.
* @retval RDY_RESET if one or more I2C errors occurred, the errors can
@@ -396,7 +396,7 @@ msg_t i2c_lld_transceive_timeout(I2CDriver *i2cp, i2caddr_t addr, * @param[out] rxbuf pointer to the receive buffer
* @param[in] rxbytes number of bytes to be received
* @param[in] timeout this value is ignored on SAM7 platform.
- * .
+ *
* @return The operation status.
* @retval RDY_OK if the function succeeded.
* @retval RDY_RESET if one or more I2C errors occurred, the errors can
diff --git a/os/hal/platforms/AT91SAM7/i2c_lld.h b/os/hal/platforms/AT91SAM7/i2c_lld.h index cf7d2705c..7791ab399 100755 --- a/os/hal/platforms/AT91SAM7/i2c_lld.h +++ b/os/hal/platforms/AT91SAM7/i2c_lld.h @@ -23,8 +23,8 @@ */
/**
- * @file SAM72/i2c_lld.h
- * @brief SAM72 I2C subsystem low level driver header.
+ * @file AT91SAM7/i2c_lld.h
+ * @brief AT91SAM7 I2C subsystem low level driver header.
*
* @addtogroup I2C
* @{
|