File: ds1620.h

package info (click to toggle)
dynamips 0.2.7-0.2.8RC2-4
  • links: PTS, VCS
  • area: non-free
  • in suites: squeeze
  • size: 3,856 kB
  • ctags: 9,893
  • sloc: ansic: 69,846; makefile: 238; sh: 169; perl: 20
file content (36 lines) | stat: -rw-r--r-- 971 bytes parent folder | download | duplicates (3)
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
#ifndef __DS1620_H__
#define __DS1620_H__

/*
 * These defines come from the DS1620 documentation.
 */
#define DS1620_READ_TEMP     0xAA
#define DS1620_WRITE_TH      0x01
#define DS1620_WRITE_TL      0x02
#define DS1620_READ_TH       0xA1
#define DS1620_READ_TL       0xA2
#define DS1620_START_CONVT   0xEE
#define DS1620_STOP_CONVT    0x22
#define DS1620_WRITE_CONFIG  0x0C
#define DS1620_READ_CONFIG   0xAC

#define DS1620_CONFIG_STATUS_DONE   0x80
#define DS1620_CONFIG_STATUS_THF    0x40
#define DS1620_CONFIG_STATUS_TLF    0x20
#define DS1620_CONFIG_STATUS_CPU    0x02
#define DS1620_CONFIG_STATUS_1SHOT  0x01

#define DS1620_WRITE_SIZE           8
#define DS1620_CONFIG_READ_SIZE     8
#define DS1620_DATA_READ_SIZE       9

#define DS1620_RESET_OFF    0x0f
#define DS1620_RESET_ON     0x00
#define DS1620_CLK_LOW      0x0f
#define DS1620_CLK_HIGH     0x1f

#define DS1620_DATA_HIGH    0x11
#define DS1620_DATA_LOW     0x10
#define DS1620_ENABLE_READ  0x00

#endif