-
Notifications
You must be signed in to change notification settings - Fork 0
/
HAL_TMP006.h
75 lines (67 loc) · 2.93 KB
/
HAL_TMP006.h
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
73
74
75
/* --COPYRIGHT--,BSD
* Copyright (c) 2015, Texas Instruments Incorporated
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* * Neither the name of Texas Instruments Incorporated nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* --/COPYRIGHT--*/
//****************************************************************************
//
// HAL_TMP006.h - Prototypes of hardware abstraction layer for interfacing TMP006
//
//****************************************************************************
#ifndef HAL_TMP006_H_
#define HAL_TMP006_H_
/* CONSTANTS */
#define TMP006_SLAVE_ADDRESS 0x40
/* TEMPERATURE SENSOR REGISTER DEFINITIONS */
#define TMP006_P_VOBJ 0x00
#define TMP006_P_TABT 0x01
#define TMP006_WRITE_REG 0x02
#define TMP006_P_MAN_ID 0xFE
#define TMP006_P_DEVICE_ID 0xFF
/* CONFIGURATION REGISTER SETTINGS */
#define TMP006_RST 0x8000
#define TMP006_POWER_DOWN 0x0000
#define TMP006_POWER_UP 0x7000
#define TMP006_CR_4 0x0000
#define TMP006_CR_2 0x0200
#define TMP006_CR_1 0x0400
#define TMP006_CR_0_5 0x0600
#define TMP006_CR_0_25 0x0800
#define TMP006_EN 0x0100
#define TMP006_DRDY 0x0080
#define I2C_SCL BIT7;
#define I2C_SDA BIT6;
void TMP006_init(void);
long double TMP006_getTemp(void);
int TMP006_readDeviceId(void);
int TMP006_readObjectVoltage(void);
int TMP006_readAmbientTemperature(void);
int TMP006_read(unsigned char);
void TMP006_write(unsigned char pointer, unsigned int writeByte);
#endif /* HAL_TMP006_H_ */