Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
ir_mlx.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
31
32#include "mcu_periph/sys_time.h"
33#include "mcu_periph/i2c.h"
34#include "led.h"
35#include "mcu_periph/uart.h"
36#include "pprzlink/messages.h"
38
39
40#ifndef MLX_I2C_DEV
41#define MLX_I2C_DEV i2c0
42#endif
43
45
53
54/* I2C address is set to 6 (8 bit) */
55#ifndef MLX90614_ADDR
56#define MLX90614_ADDR 0x06
57#endif
58
59#define MLX90614_GENERAL_ADDR 0
60
61// printf("Ta = %2.2f°C (0x%04X)\n", (tp*0.02)-273.15, tp);
62
63void ir_mlx_crc(unsigned char addr, volatile unsigned char *data)
64{
65 unsigned char i, bit, crc = 0;
66
67 for (i = 0; i < 4; i++) {
68 if (i != 0) { crc ^= (data[i - 1]); }
69 else { crc ^= addr; }
70 for (bit = 8; bit > 0; bit--) {
71 if (crc & 0x80)
72 /* SMBus x^8 + x^2 + x + 1 */
73 {
74 crc = (crc << 1) ^ 0x107;
75 } else {
76 crc = (crc << 1);
77 }
78 }
79 }
80 data[3] = crc;
81}
82
83void ir_mlx_init(void)
84{
85#ifdef IR_MLX_ONE_TIME_CONFIG
86#warning Starting MLX90614 in CONFIGURATION MODE, do this only once for
87#warning setup, then turn this MODE off again and recompile/flash
89#else
91#endif
92}
93
95{
96#ifdef IR_MLX_ONE_TIME_CONFIG
97 if (sys_time.nb_sec > 4) {
98#else
99 if (sys_time.nb_sec > 1) {
100#endif
101 if (ir_mlx_status >= IR_MLX_IDLE) {
102 /* start two byte case temperature */
106 /* send serial number every 30 seconds */
108 } else if (ir_mlx_status == IR_MLX_UNINIT) {
109 /* start two byte ID 0 */
113 }
114 }
115#ifdef IR_MLX_ONE_TIME_CONFIG
116 else if ((sys_time.nb_sec > 1) && (ir_mlx_status == IR_MLX_ADDR_CHANGE)) {
117 /* erase address by writing zero to SMBus address register */
120 mlx_trans.buf[1] = 0;
121 mlx_trans.buf[2] = 0;
124 } else if ((sys_time.nb_sec > 2) && (ir_mlx_status == IR_MLX_ADDR_ERASE)) {
125 /* set address by writing it to AMBus address register */
128 mlx_trans.buf[1] = MLX90614_ADDR >> 1;
129 mlx_trans.buf[2] = 0;
132 } else if ((sys_time.nb_sec > 3) && (ir_mlx_status == IR_MLX_ADDR_SET)) {
134 }
135#endif
136}
137
138void ir_mlx_event(void)
139{
141 switch (ir_mlx_status) {
142
143 case IR_MLX_RD_ID_0:
144 /* read two byte ID 0 */
146 ir_mlx_id_01 |= mlx_trans.buf[1] << 8;
147 /* start two byte ID 1 */
151 break;
152
153 case IR_MLX_RD_ID_1:
154 /* read two byte ID 1 */
155 ir_mlx_id_01 |= mlx_trans.buf[0] << 16;
156 ir_mlx_id_01 |= mlx_trans.buf[1] << 24;
157 /* start two byte ID 2 */
161 break;
162
163 case IR_MLX_RD_ID_2:
164 /* read two byte ID 2 */
166 ir_mlx_id_23 |= mlx_trans.buf[1] << 8;
167 /* start two byte ID 3 */
171 break;
172
173 case IR_MLX_RD_ID_3:
174 /* read two byte ID 3 */
175 ir_mlx_id_23 |= mlx_trans.buf[0] << 16;
176 ir_mlx_id_23 |= mlx_trans.buf[1] << 24;
180 break;
181
183 /* read two byte case temperature */
186 ir_mlx_temp_case = ir_mlx_itemp_case * 0.02 - 273.15;
187
188 /* start two byte obj temperature */
192 break;
193
195 /* read two byte obj temperature */
198 ir_mlx_temp_obj = ir_mlx_itemp_obj * 0.02 - 273.15;
200
206 break;
207 default:
209 break;
210 }
211 }
212}
volatile uint8_t buf[I2C_BUF_LEN]
Transaction buffer With I2C_BUF_LEN number of bytes.
Definition i2c.h:122
enum I2CTransactionStatus status
Transaction status.
Definition i2c.h:126
bool i2c_transmit(struct i2c_periph *p, struct i2c_transaction *t, uint8_t s_addr, uint8_t len)
Submit a write only transaction.
Definition i2c.c:202
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:222
@ I2CTransSuccess
transaction successfully finished by I2C driver
Definition i2c.h:57
@ I2CTransDone
transaction set to done by user level
Definition i2c.h:59
I2C transaction structure.
Definition i2c.h:93
Architecture independent I2C (Inter-Integrated Circuit Bus) API.
void ir_mlx_event(void)
Definition ir_mlx.c:138
void ir_mlx_periodic(void)
Definition ir_mlx.c:94
float ir_mlx_temp_obj
Definition ir_mlx.c:50
uint32_t ir_mlx_id_23
Definition ir_mlx.c:52
#define MLX90614_GENERAL_ADDR
Definition ir_mlx.c:59
void ir_mlx_init(void)
Definition ir_mlx.c:83
struct i2c_transaction mlx_trans
Definition ir_mlx.c:44
uint8_t ir_mlx_status
Definition ir_mlx.c:46
float ir_mlx_temp_case
Definition ir_mlx.c:48
uint16_t ir_mlx_itemp_case
Definition ir_mlx.c:47
uint32_t ir_mlx_id_01
Definition ir_mlx.c:51
void ir_mlx_crc(unsigned char addr, volatile unsigned char *data)
Definition ir_mlx.c:63
uint16_t ir_mlx_itemp_obj
Definition ir_mlx.c:49
#define MLX_I2C_DEV
Definition ir_mlx.c:41
#define MLX90614_ADDR
Definition ir_mlx.c:56
#define MLX90614_ID_3
Definition ir_mlx.h:12
#define MLX90614_TA
Definition ir_mlx.h:6
#define MLX90614_ID_0
Definition ir_mlx.h:9
#define MLX90614_TOBJ
Definition ir_mlx.h:7
@ IR_MLX_ADDR_ERASE
Definition ir_mlx.h:16
@ IR_MLX_RD_ID_0
Definition ir_mlx.h:19
@ IR_MLX_ADDR_CHANGE
Definition ir_mlx.h:15
@ IR_MLX_RD_ID_1
Definition ir_mlx.h:20
@ IR_MLX_RD_OBJ_TEMP
Definition ir_mlx.h:25
@ IR_MLX_UNINIT
Definition ir_mlx.h:18
@ IR_MLX_ADDR_SET
Definition ir_mlx.h:17
@ IR_MLX_RD_CASE_TEMP
Definition ir_mlx.h:24
@ IR_MLX_RD_ID_3
Definition ir_mlx.h:22
@ IR_MLX_RD_ID_2
Definition ir_mlx.h:21
@ IR_MLX_IDLE
Definition ir_mlx.h:23
#define MLX90614_ID_2
Definition ir_mlx.h:11
#define MLX90614_ID_1
Definition ir_mlx.h:10
#define MLX90614_SADR
Definition ir_mlx.h:8
arch independent LED (Light Emitting Diodes) API
uint16_t foo
Definition main_demo5.c:58
Architecture independent timing functions.
volatile uint32_t nb_sec
full seconds since startup
Definition sys_time.h:72
arch independent UART (Universal Asynchronous Receiver/Transmitter) API
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.