Mercurial > ~darius > hgwebdir.cgi > avr
annotate 1wire.h @ 17:a58b41b7d15c
Covert to a later version of avr-libc. Stuff like not using inb/outb,
etc..
author | darius |
---|---|
date | Fri, 25 Nov 2005 21:45:51 +1030 |
parents | 4b141cc7cbd4 |
children | 2b0ed085b95b |
rev | line source |
---|---|
8
f9a085a0ba93
Change the 1 wire routines to mostly C with assembly delay routines
darius
parents:
0
diff
changeset
|
1 /* |
f9a085a0ba93
Change the 1 wire routines to mostly C with assembly delay routines
darius
parents:
0
diff
changeset
|
2 * 1 wire header code |
f9a085a0ba93
Change the 1 wire routines to mostly C with assembly delay routines
darius
parents:
0
diff
changeset
|
3 * |
f9a085a0ba93
Change the 1 wire routines to mostly C with assembly delay routines
darius
parents:
0
diff
changeset
|
4 * $Id$ |
f9a085a0ba93
Change the 1 wire routines to mostly C with assembly delay routines
darius
parents:
0
diff
changeset
|
5 * |
f9a085a0ba93
Change the 1 wire routines to mostly C with assembly delay routines
darius
parents:
0
diff
changeset
|
6 * Copyright (c) 2004 |
0 | 7 * Daniel O'Connor <darius@dons.net.au>. All rights reserved. |
8 * | |
9 * Redistribution and use in source and binary forms, with or without | |
10 * modification, are permitted provided that the following conditions | |
11 * are met: | |
12 * 1. Redistributions of source code must retain the above copyright | |
13 * notice, this list of conditions and the following disclaimer. | |
14 * 2. Redistributions in binary form must reproduce the above copyright | |
15 * notice, this list of conditions and the following disclaimer in the | |
16 * documentation and/or other materials provided with the distribution. | |
17 * | |
18 * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND | |
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
21 * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE | |
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | |
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | |
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | |
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | |
28 * SUCH DAMAGE. | |
29 */ | |
30 | |
12 | 31 uint8_t OWTouchReset(void); |
32 void OWWriteBit(uint8_t bit); | |
33 uint8_t OWReadBit(void); | |
0 | 34 void OWWriteByte(uint8_t data); |
12 | 35 uint8_t OWReadByte(void); |
36 uint8_t OWTouchByte(uint8_t data); | |
0 | 37 void OWBlock(uint8_t *data, int len); |
12 | 38 uint8_t OWFirst(uint8_t *ROM, uint8_t do_reset, uint8_t alarm_only); |
39 uint8_t OWNext(uint8_t *ROM, uint8_t do_reset, uint8_t alarm_only); | |
0 | 40 void OWCRC(uint8_t x, uint8_t *crc); |
41 void OWSendCmd(uint8_t *ROM, uint8_t cmd); | |
42 | |
43 #define OWIREOUTPORT PORTC | |
44 #define OWIREOUTPIN 0 | |
45 | |
46 #define OWIREINPORT PINC | |
47 #define OWIREDDR DDRC | |
48 #define OWIREINPIN OWIREOUTPIN | |
49 | |
10 | 50 /* Return codes for OWFirst()/OWNext() */ |
51 #define OW_BADWIRE -3 | |
52 #define OW_BADCRC -2 | |
53 #define OW_NOPRESENCE -1 | |
54 #define OW_NOMODULES 0 | |
55 #define OW_FOUND 1 | |
56 | |
0 | 57 /* General 1 wire commands */ |
58 #define OW_OVRDRV_SKIP_CMD 0x3c | |
59 #define OW_SEARCH_ALRM_CMD 0xec | |
60 #define OW_SEARCH_ROM_CMD 0xf0 | |
61 #define OW_READ_ROM_CMD 0x33 | |
62 #define OW_MATCH_ROM_CMD 0x55 | |
63 #define OW_SKIP_ROM_CMD 0xcc | |
64 | |
65 /* DS1820 commands */ | |
66 #define OW_CONVERTT_CMD 0x44 | |
67 #define OW_RD_SCR_CMD 0xbe | |
68 #define OW_WR_SCR_CMD 0x4e | |
69 #define OW_CPY_SCR_CMD 0x48 | |
70 #define OW_RECALL_CMD 0xb8 | |
71 #define OW_RD_PSU_CMD 0xb4 | |
72 | |
73 /* Family codes */ | |
74 #define OW_FAMILY_ROM 0x09 | |
75 #define OW_FAMILY_TEMP 0x10 |