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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/** -*-c++-*-
* $Id$
*
* This file is part of plptools.
*
* Copyright (C) 2002 Daniel Brahneborg <basic.chello@se>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "sistypes.h"
static unsigned int s_crcTable[256];
int logLevel = 0;
void createCRCTable()
{
const unsigned int polynomial = 0x1021;
unsigned int index;
s_crcTable[0] = 0;
for (index = 0; index < 128; index++)
{
unsigned int carry = s_crcTable[index] & 0x8000;
unsigned int temp = (s_crcTable[index] << 1) & 0xffff;
s_crcTable[index * 2 + (carry ? 0 : 1)] = temp ^ polynomial;
s_crcTable[index * 2 + (carry ? 1 : 0)] = temp;
}
}
uint16_t updateCrc(uint16_t crc, uint8_t value)
{
return (crc << 8) ^ s_crcTable[((crc >> 8) ^ value) & 0xff];
}
uint16_t calcCRC(uint8_t* data, int len)
{
uint16_t crc = 0;
for (int i = 0; i < len; ++i)
{
uint8_t value = data[i];
crc = (crc << 8) ^ s_crcTable[((crc >> 8) ^ value) & 0xff];
}
return crc;
}
uint16_t read16(uint8_t* p)
{
return p[0] | (p[1] << 8);
}
uint32_t read32(uint8_t* p)
{
return p[0] | (p[1] << 8) | (p[2] << 16) | (p[3] << 24);
}
void write16(uint8_t* p, int val)
{
p[0] = val & 255;
p[1] = (val >> 8) & 255;
}
LangTableEntry langTable[] =
{
{ 0, "", "Test" },
{ 1, "EN", "UK English" },
{ 2, "FR", "French" },
{ 3, "GE", "German" },
{ 4, "SP", "Spanish" },
{ 5, "IT", "Italian" },
{ 6, "SW", "Swedish" },
{ 7, "DA", "Danish" },
{ 8, "NO", "Norwegian" },
{ 9, "FI", "Finnish" },
{ 10, "AM", "American English" },
{ 11, "SF", "Swiss French" },
{ 12, "SG", "Swiss German" },
{ 13, "PO", "Portuguese" },
{ 14, "TU", "Turkish" },
{ 15, "IC", "Icelandic" },
{ 16, "RU", "Russian" },
{ 17, "HU", "Hungarian" },
{ 18, "DU", "Dutch" },
{ 19, "BL", "Belgian Flemish" },
{ 20, "AU", "Australian English" },
{ 21, "BG", "Belgian French" },
{ 22, "AS", "Austrian German" },
{ 23, "NZ", "New Zealand" },
{ 24, "IF", "International French" },
{ 25, "CS", "Czech" },
{ 26, "SK", "Slovak" },
{ 27, "PL", "Polish" },
{ 28, "SL", "Slovenian" },
{ 29, "TC", "Taiwan Chinese" },
{ 30, "HK", "Hong Kong" },
{ 31, "ZH", "PRC Chinese" },
{ 32, "JA", "Japanese" },
{ 33, "TH", "Thai" },
};
|