aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/I2C/tmp75.c
diff options
context:
space:
mode:
authorbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-06-24 10:36:41 +0000
committerbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-06-24 10:36:41 +0000
commit73ce7b4fe096f227fbabbe471a283f1b916383fb (patch)
treeb1438dbe42067257e464a5630471ede88fda48a4 /testhal/STM32/I2C/tmp75.c
parentd2b62026fc589cb36955d173417c0741edea4b4a (diff)
downloadChibiOS-73ce7b4fe096f227fbabbe471a283f1b916383fb.tar.gz
ChibiOS-73ce7b4fe096f227fbabbe471a283f1b916383fb.tar.bz2
ChibiOS-73ce7b4fe096f227fbabbe471a283f1b916383fb.zip
I2C. Commets in examples changed to /**/
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/i2c_dev@3077 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/STM32/I2C/tmp75.c')
-rw-r--r--testhal/STM32/I2C/tmp75.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/testhal/STM32/I2C/tmp75.c b/testhal/STM32/I2C/tmp75.c
index 6a8fe603d..0833e47c1 100644
--- a/testhal/STM32/I2C/tmp75.c
+++ b/testhal/STM32/I2C/tmp75.c
@@ -12,13 +12,13 @@
#include "tmp75.h"
-// input buffer
+/* input buffer */
static i2cblock_t tmp75_rx_data[TMP75_RX_DEPTH];
static i2cblock_t tmp75_tx_data[TMP75_TX_DEPTH];
-// temperature value
+/* temperature value */
static int16_t temperature = 0;
-// Simple error trap
+/* Simple error trap */
static void i2c_tmp75_error_cb(I2CDriver *i2cp, const I2CSlaveConfig *i2cscfg){
(void)i2cscfg;
int status = 0;
@@ -33,7 +33,7 @@ static void i2c_tmp75_cb(I2CDriver *i2cp, const I2CSlaveConfig *i2cscfg){
temperature = (i2cscfg->rxbuf[0] << 8) + i2cscfg->rxbuf[1];
}
-// Fill TMP75 config.
+/* Fill TMP75 config. */
static const I2CSlaveConfig tmp75 = {
i2c_tmp75_cb,
i2c_tmp75_error_cb,
@@ -45,8 +45,8 @@ static const I2CSlaveConfig tmp75 = {
/* This is main function. */
void request_temperature(void){
-#define TXBYTES 0 // set to zero because we need only reading
-#define RXBYTES 2 // we need to read 2 bytes
+#define TXBYTES 0 /* set to zero because we need only reading */
+#define RXBYTES 2 /* we need to read 2 bytes */
i2cAcquireBus(&I2CD2);
i2cMasterReceive(&I2CD2, &tmp75, tmp75_addr, RXBYTES);