aboutsummaryrefslogtreecommitdiffstats
path: root/testhal/STM32/I2C/tmp75.c
blob: 4d992388152628d3bd3eb7345e312e8a8b52d4ca (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
62
63
64
65
66
67
68
69
70
71
72
/**
 * 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];

// 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){
  int16_t temperature = 0;

  /* Manually send stop signal to the bus. This is important! */
  i2cMasterStop(i2cp);
  /* unlock bus */
  i2cReleaseBus(&I2CD2);

  /* store temperature value */
  temperature = (i2cscfg->rxbuf[0] << 8) + i2cscfg->rxbuf[1];

}

// Fill TMP75 config.
static I2CSlaveConfig tmp75 = {
    i2c_tmp75_cb,
    i2c_tmp75_error_cb,
    tmp75_rx_data,
    TMP75_RX_DEPTH,
    0,
    0,
    tmp75_tx_data,
    TMP75_TX_DEPTH,
    0,
    0,
    0b1001000,
    FALSE,
};

/* This is main function. */
void request_temperature(void){
  tmp75.txbytes = 0;  // set to zero just to be safe

  /* tune receiving buffer */
  tmp75.rxbufhead = 0;// point to beginig of buffer
  tmp75.rxbytes = 2;  // we need read 2 bytes

  /* get exclusive access to the bus */
  i2cAcquireBus(&I2CD2);

  /* start receiving process in background and return */
  i2cMasterReceive(&I2CD2, &tmp75);
}