aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/I2C/tmp75.c
blob: cc1b2ca7f427b7e47b1b4be887f84ece0092e939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/**
 * TMP75 is most simple I2C device in our case. It is already useful with
 * default settings after powerup.
 * You only must read 2 sequential bytes from it.
 */

#include <stdlib.h>

#include "ch.h"
#include "hal.h"

#include "tmp75.h"


// input buffer
static i2cblock_t tmp75_rx_data[TMP75_RX_DEPTH];
static i2cblock_t tmp75_tx_data[TMP75_TX_DEPTH];
// temperature value
static int16_t temperature = 0;

// Simple error trap
static void i2c_tmp75_error_cb(I2CDriver *i2cp, I2CSlaveConfig *i2cscfg){
  (void)i2cscfg;
  int status = 0;
  status = i2cp->id_i2c->SR1;
  while(TRUE);
}

/* This callback raise up when transfer finished */
static void i2c_tmp75_cb(I2CDriver *i2cp, I2CSlaveConfig *i2cscfg){
  (void)*i2cp;
  /* store temperature value */
  temperature = (i2cscfg->rxbuf[0] << 8) + i2cscfg->rxbuf[1];
}

// Fill TMP75 config.
static I2CSlaveConfig tmp75 = {
    i2c_tmp75_cb,
    i2c_tmp75_error_cb,
    0,
    0,
    tmp75_rx_data,
    tmp75_tx_data,
    0b1001000,
    7,
    0,
    0,
    {NULL},
};

/* This is main function. */
void request_temperature(void){
  tmp75.txbytes = 0;  // set to zero because we need only reading
  tmp75.rxbytes = 2;  // we need to read 2 bytes

  i2cAcquireBus(&I2CD2);
  i2cMasterReceive(&I2CD2, &tmp75);
  i2cReleaseBus(&I2CD2);
}