aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal
diff options
context:
space:
mode:
authorTheodore Ateba <tf.ateba@gmail.com>2017-09-02 14:15:45 +0000
committerTheodore Ateba <tf.ateba@gmail.com>2017-09-02 14:15:45 +0000
commit978b233c04d78c163407605edf4d01a7a822cb55 (patch)
tree9e2baecebfad122a52033208f5ea22c82262e9c3 /os/hal
parenta437767a7386cd4d2c66f2dc57dd3828cb491475 (diff)
downloadChibiOS-978b233c04d78c163407605edf4d01a7a822cb55.tar.gz
ChibiOS-978b233c04d78c163407605edf4d01a7a822cb55.tar.bz2
ChibiOS-978b233c04d78c163407605edf4d01a7a822cb55.zip
Correct the I2C driver code style and comment.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10534 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r--os/hal/ports/AVR/MEGA/LLD/I2Cv1/hal_i2c_lld.c9
-rw-r--r--os/hal/ports/AVR/MEGA/LLD/I2Cv1/hal_i2c_lld.h4
2 files changed, 9 insertions, 4 deletions
diff --git a/os/hal/ports/AVR/MEGA/LLD/I2Cv1/hal_i2c_lld.c b/os/hal/ports/AVR/MEGA/LLD/I2Cv1/hal_i2c_lld.c
index bf253f25e..989cf5e6d 100644
--- a/os/hal/ports/AVR/MEGA/LLD/I2Cv1/hal_i2c_lld.c
+++ b/os/hal/ports/AVR/MEGA/LLD/I2Cv1/hal_i2c_lld.c
@@ -15,8 +15,8 @@
*/
/**
- * @file hal_i2c_lld.c
- * @brief AVR I2C subsystem low level driver source.
+ * @file I2Cv1/hal_i2c_lld.c
+ * @brief AVR/MEGA I2C subsystem low level driver source.
*
* @addtogroup I2C
* @{
@@ -144,6 +144,7 @@ OSAL_IRQ_HANDLER(TWI_vect) {
* @notapi
*/
void i2c_lld_init(void) {
+
i2cObjectInit(&I2CD1);
I2CD1.thread = NULL;
}
@@ -156,6 +157,7 @@ void i2c_lld_init(void) {
* @notapi
*/
void i2c_lld_start(I2CDriver *i2cp) {
+
uint32_t clock_speed = 100000;
/* TODO: Test TWI without external pull-ups (use internal) */
@@ -209,6 +211,7 @@ void i2c_lld_stop(I2CDriver *i2cp) {
msg_t i2c_lld_master_receive_timeout(I2CDriver *i2cp, i2caddr_t addr,
uint8_t *rxbuf, size_t rxbytes,
systime_t timeout) {
+
i2cp->errors = I2C_NO_ERROR;
i2cp->addr = addr;
i2cp->txbuf = NULL;
@@ -251,6 +254,7 @@ msg_t i2c_lld_master_transmit_timeout(I2CDriver *i2cp, i2caddr_t addr,
const uint8_t *txbuf, size_t txbytes,
uint8_t *rxbuf, size_t rxbytes,
systime_t timeout) {
+
i2cp->errors = I2C_NO_ERROR;
i2cp->addr = addr;
i2cp->txbuf = txbuf;
@@ -268,3 +272,4 @@ msg_t i2c_lld_master_transmit_timeout(I2CDriver *i2cp, i2caddr_t addr,
#endif /* HAL_USE_I2C */
/** @} */
+
diff --git a/os/hal/ports/AVR/MEGA/LLD/I2Cv1/hal_i2c_lld.h b/os/hal/ports/AVR/MEGA/LLD/I2Cv1/hal_i2c_lld.h
index b939a790b..6822abca7 100644
--- a/os/hal/ports/AVR/MEGA/LLD/I2Cv1/hal_i2c_lld.h
+++ b/os/hal/ports/AVR/MEGA/LLD/I2Cv1/hal_i2c_lld.h
@@ -15,8 +15,8 @@
*/
/**
- * @file hal_i2c_lld.h
- * @brief AVR I2C subsystem low level driver header.
+ * @file I2Cv1/hal_i2c_lld.h
+ * @brief AVR/MEGA I2C subsystem low level driver header.
*
* @addtogroup I2C
* @{