Paparazzi UAS
v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
temp_lm75.c
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2010 Martin Mueller
3
*
4
* This file is part of paparazzi.
5
*
6
* paparazzi is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; either version 2, or (at your option)
9
* any later version.
10
*
11
* paparazzi is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
15
*
16
* You should have received a copy of the GNU General Public License
17
* along with paparazzi; see the file COPYING. If not, write to
18
* the Free Software Foundation, 59 Temple Place - Suite 330,
19
* Boston, MA 02111-1307, USA.
20
*
21
*/
22
30
#include "
modules/meteo/temp_lm75.h
"
31
32
#include "
mcu_periph/i2c.h
"
33
#include "
led.h
"
34
#include "
mcu_periph/uart.h
"
35
#include "pprzlink/messages.h"
36
#include "
subsystems/datalink/downlink.h
"
37
38
39
uint8_t
lm75_meas_started
;
40
struct
i2c_transaction
lm75_trans
;
41
42
#ifndef LM75_I2C_DEV
43
#define LM75_I2C_DEV i2c0
44
#endif
45
46
/* address can be set through A0..A2, starting at 0x90 */
47
48
#ifndef LM75_SLAVE_ADDR
49
#define LM75_SLAVE_ADDR 0x90
50
#endif
51
52
void
lm75_init
(
void
)
53
{
54
lm75_trans
.
status
=
I2CTransDone
;
55
}
56
57
void
lm75_periodic
(
void
)
58
{
59
lm75_trans
.
buf
[0] =
LM75_TEMP_REG
;
60
i2c_transceive
(&
LM75_I2C_DEV
, &
lm75_trans
,
LM75_SLAVE_ADDR
, 1, 2);
61
}
62
63
void
lm75_event
(
void
)
64
{
65
if
(
lm75_trans
.
status
==
I2CTransSuccess
) {
66
uint16_t
lm75_temperature;
67
float
flm75_temperature;
68
69
/* read two byte temperature */
70
lm75_temperature =
lm75_trans
.
buf
[0] << 8;
71
lm75_temperature |=
lm75_trans
.
buf
[1];
72
lm75_temperature >>= 7;
73
if
(lm75_temperature & 0x0100) {
74
lm75_temperature |= 0xFE00;
75
}
76
77
flm75_temperature = ((
int16_t
) lm75_temperature) / 2.;
78
79
DOWNLINK_SEND_TMP_STATUS(
DefaultChannel
,
DefaultDevice
, &lm75_temperature, &flm75_temperature);
80
lm75_trans
.
status
=
I2CTransDone
;
81
}
82
}
uint16_t
unsigned short uint16_t
Definition:
types.h:16
i2c_transaction::buf
volatile uint8_t buf[I2C_BUF_LEN]
Transaction buffer With I2C_BUF_LEN number of bytes.
Definition:
i2c.h:122
LM75_SLAVE_ADDR
#define LM75_SLAVE_ADDR
Definition:
temp_lm75.c:49
lm75_trans
struct i2c_transaction lm75_trans
Definition:
temp_lm75.c:40
I2CTransSuccess
@ I2CTransSuccess
transaction successfully finished by I2C driver
Definition:
i2c.h:57
uart.h
arch independent UART (Universal Asynchronous Receiver/Transmitter) API
lm75_event
void lm75_event(void)
Definition:
temp_lm75.c:63
temp_lm75.h
LM75_TEMP_REG
#define LM75_TEMP_REG
Definition:
temp_lm75.h:6
i2c_transceive
bool i2c_transceive(struct i2c_periph *p, struct i2c_transaction *t, uint8_t s_addr, uint8_t len_w, uint16_t len_r)
Submit a write/read transaction.
Definition:
i2c.c:344
int16_t
signed short int16_t
Definition:
types.h:17
uint8_t
unsigned char uint8_t
Definition:
types.h:14
i2c_transaction::status
enum I2CTransactionStatus status
Transaction status.
Definition:
i2c.h:126
led.h
arch independent LED (Light Emitting Diodes) API
i2c_transaction
I2C transaction structure.
Definition:
i2c.h:93
downlink.h
Common code for AP and FBW telemetry.
LM75_I2C_DEV
#define LM75_I2C_DEV
Definition:
temp_lm75.c:43
lm75_meas_started
uint8_t lm75_meas_started
Definition:
temp_lm75.c:39
I2CTransDone
@ I2CTransDone
transaction set to done by user level
Definition:
i2c.h:59
DefaultChannel
#define DefaultChannel
Definition:
downlink.h:42
lm75_periodic
void lm75_periodic(void)
Definition:
temp_lm75.c:57
DefaultDevice
#define DefaultDevice
Definition:
downlink.h:46
i2c.h
lm75_init
void lm75_init(void)
Definition:
temp_lm75.c:52
sw
airborne
modules
meteo
temp_lm75.c
Generated on Tue Feb 1 2022 13:51:16 for Paparazzi UAS by
1.8.17