Enable RTC for Cowon D2. Time readout works, but date is currently junk.
[kugel-rb.git] / firmware / export / ds2411.h
blobc55579cba58a500e4f9150d0a16471641ee2d345
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2007 by Michael Sevakis
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 #ifndef _DS2411_H_
21 #define _DS2411_H_
23 #include <stdbool.h>
26 * Byte 0: 8-bit family code (always 01h)
27 * Bytes 1-6: 48-bit serial number
28 * Byte 7: 8-bit CRC code
30 struct ds2411_id
32 unsigned char family_code;
33 unsigned char uid[6];
34 unsigned char crc;
35 } __attribute__((packed));
37 extern int ds2411_read_id(struct ds2411_id *id);
39 /* return values */
40 enum ds2411_id_return_codes
42 DS2411_NO_PRESENCE = -3,
43 DS2411_INVALID_FAMILY_CODE,
44 DS2411_INVALID_CRC,
45 DS2411_OK = 0,
48 #endif /* _DS2411_H_ */