2.5.11.
[asdcplib-cth.git] / src / SyncCommon.h
1 /*
2 Copyright (c) 2013-2013, John Hurst
3 All rights reserved.
4
5 Redistribution and use in source and binary forms, with or without
6 modification, are permitted provided that the following conditions
7 are met:
8 1. Redistributions of source code must retain the above copyright
9    notice, this list of conditions and the following disclaimer.
10 2. Redistributions in binary form must reproduce the above copyright
11    notice, this list of conditions and the following disclaimer in the
12    documentation and/or other materials provided with the distribution.
13 3. The name of the author may not be used to endorse or promote products
14    derived from this software without specific prior written permission.
15
16 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27 /*! \file    SyncCommon.h
28     \version $Id: SyncCommon.h,v 1.1 2013/04/12 23:39:31 mikey Exp $
29     \brief   Common elements for ATMOS Sync Channel generation
30 */
31
32 #ifndef _SYNC_COMMON_H_
33 #define _SYNC_COMMON_H_
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38
39 #ifndef BYTE
40 typedef unsigned char BYTE;
41 #endif
42
43 #ifndef USHORT
44 typedef unsigned short USHORT;
45 #endif
46
47 #ifndef INT
48 typedef int INT;
49 #endif
50
51 #ifndef FLOAT
52 typedef float FLOAT;
53 #endif
54
55 #define SYMBOL_RATE                     (12000)
56
57 #define SYMBOL_LENGTH_48        (4)
58 #define SYMBOL_LENGTH_96        (8)
59
60 #define SYNC_HEADER                     (0x4D56)
61 #define SYNC_HEADER1            (0x4D)
62 #define SYNC_HEADER2            (0x56)
63
64 #define SYNC_HEADER_BITS        (16)
65 #define FRAME_RATE_BITS         (4)
66 #define RESERVE_BITS            (2)
67 #define UUID_SUB_INDEX_BITS     (2)
68 #define UUID_SUB_BITS           (32)
69 #define FRAME_INDEX_BITS        (24)
70 #define CRC_BITS                        (16)
71 #define MESSAGE_TOTAL_BITS      (96)
72 #define MESSAGE_TOTAL_BYTES (12)
73
74 #define MAX_PACKET                      (32)
75
76 #ifdef __cplusplus
77 } /* extern "C" */
78 #endif
79
80 #endif