fb11e647
vrobic
reseau statique a...
|
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
|
/*
* Copyright (C) 2014 Freie Universitรคt Berlin
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup driver_isl29020
* @{
*
* @file
* @brief Definitions for the ISL29020 light sensor
*
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
*/
#ifndef ISL29020_INTERNAL_H
#define ISL29020_INTERNAL_H
#ifdef __cplusplus
extern "C" {
#endif
/**
* @name ISL29020 registers
* @{
*/
#define ISL29020_REG_CMD 0x00
#define ISL29020_REG_LDATA 0x01
#define ISL29020_REG_HDATA 0x02
/** @} */
/**
* @name Masks for the ISL29020 command register
* @{
*/
#define ISL29020_CMD_EN 0x80
#define ISL29020_CMD_MODE 0x40
#define ISL29020_CMD_LIGHT 0x20
#define ISL29020_CMD_RES 0x1c
#define ISL29020_CMD_RAGNE 0x03
/** @} */
/**
* @name Resolution options
* @{
*/
#define ISL29020_RES_INT_16 0x00
#define ISL29020_RES_INT_12 0x04
#define ISL29020_RES_INT_8 0x08
#define ISL29020_RES_INT_4 0x0c
#define ISL29020_RES_EXT_ADC 0x10
#define ISL29020_RES_EXT_TIM 0x14
/** @} */
/**
* @name Range options
* @{
*/
#define ISL29020_RANGE_1 0x00
#define ISL29020_RANGE_2 0x01
#define ISL29020_RANGE_3 0x02
#define ISL29020_RANGE_4 0x03
/** @} */
#ifdef __cplusplus
}
#endif
#endif /* ISL29020_INTERNAL_H */
/** @} */
|