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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
| /**
| ******************************************************************************
| * @file : globaldef.c
| * @brief : globaldef program body
| ******************************************************************************
| */
| #include "Globaldef.h"
| #include "stdint.h"
|
| volatile int PendSvCount=0;
|
| stUartStat Uart1Stat={0};
| stUartStat Uart2Stat={0};
|
| //const unsigned int DefaultUart1Baud = 230400;
|
| unsigned int Uart1Baud = DefaultUart1Baud;
| unsigned int Uart2Baud = DefaultUart2Baud;
|
| unsigned char Uart1RecvBuf1[128];
| int Uart1RecvBuf1DataLen=0;
| unsigned char Uart1RecvBuf2[128];
| int Uart1RecvBuf2DataLen=0;
|
| unsigned char Uart2RecvBuf1[128];
| int Uart2RecvBuf1DataLen=0;
| unsigned char Uart2RecvBuf2[128];
| int Uart2RecvBuf2DataLen=0;
|
| volatile int Uart1BaudGot=0;
| volatile int Uart1BaudFirstGot=0;
| volatile int Uart1DmaInts=0;
| volatile int Uart2BaudGot=0;
| volatile int Uart2BaudFirstGot=0;
| volatile int Uart2DmaInts=0;
|
| volatile int SysConfigs;
|
| int GetBoardType(void )
| {
| int BoardType=0;
|
| if ((SysConfigs&0x0040) != 0 )
| BoardType = 1; //master 16ch borad
| else BoardType = 0; //slave 8 ch borad
|
| BoardType = BOARD_TYPE;
| return BoardType;
| }
|
| /*
| int sintab[256]={
| 0, 1, 3, 4, 6, 7, 9, 10, 12, 14, 15, 17, 18, 20, 21, 23,
| 25, 26, 28, 29, 31, 32, 34, 36, 37, 39, 40, 42, 43, 45, 46, 48,
| 49, 51, 53, 54, 56, 57, 59, 60, 62, 63, 65, 66, 68, 69, 71, 72,
| 74, 75, 77, 78, 80, 81, 83, 84, 86, 87, 89, 90, 92, 93, 95, 96,
| 97, 99, 100, 102, 103, 105, 106, 108, 109, 110, 112, 113, 115, 116, 117, 119,
| 120, 122, 123, 124, 126, 127, 128, 130, 131, 132, 134, 135, 136, 138, 139, 140,
| 142, 143, 144, 146, 147, 148, 149, 151, 152, 153, 155, 156, 157, 158, 159, 161,
| 162, 163, 164, 166, 167, 168, 169, 170, 171, 173, 174, 175, 176, 177, 178, 179,
| 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196,
| 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 211,
| 212, 213, 214, 215, 216, 217, 217, 218, 219, 220, 221, 221, 222, 223, 224, 225,
| 225, 226, 227, 227, 228, 229, 230, 230, 231, 232, 232, 233, 234, 234, 235, 235,
| 236, 237, 237, 238, 238, 239, 239, 240, 241, 241, 242, 242, 243, 243, 244, 244,
| 244, 245, 245, 246, 246, 247, 247, 247, 248, 248, 249, 249, 249, 250, 250, 250,
| 251, 251, 251, 251, 252, 252, 252, 252, 253, 253, 253, 253, 254, 254, 254, 254,
| 254, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
| };
| */
| /*
| const int sintab[256]={
| 0, 1, 3, 4, 6, 7, 9, 10, 12, 14, 15, 17, 18, 20, 21, 23,
| 25, 26, 28, 29, 31, 32, 34, 36, 37, 39, 40, 42, 43, 45, 46, 48,
| 49, 51, 53, 54, 56, 57, 59, 60, 62, 63, 65, 66, 68, 69, 71, 72,
| 74, 75, 77, 78, 80, 81, 83, 84, 86, 87, 89, 90, 92, 93, 95, 96,
| 97, 99, 100, 102, 103, 105, 106, 108, 109, 110, 112, 113, 115, 116, 117, 119,
| 120, 122, 123, 124, 126, 127, 128, 130, 131, 132, 134, 135, 136, 138, 139, 140,
| 142, 143, 144, 146, 147, 148, 149, 151, 152, 153, 155, 156, 157, 158, 159, 161,
| 162, 163, 164, 166, 167, 168, 169, 170, 171, 173, 174, 175, 176, 177, 178, 179,
| 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196,
| 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 211,
| 212, 213, 214, 215, 216, 217, 217, 218, 219, 220, 221, 221, 222, 223, 224, 225,
| 225, 226, 227, 227, 228, 229, 230, 230, 231, 232, 232, 233, 234, 234, 235, 235,
| 236, 237, 237, 238, 238, 239, 239, 240, 241, 241, 242, 242, 243, 243, 244, 244,
| 244, 245, 245, 246, 246, 247, 247, 247, 248, 248, 249, 249, 249, 250, 250, 250,
| 251, 251, 251, 251, 252, 252, 252, 252, 253, 253, 253, 253, 254, 254, 254, 254,
| 254, 254, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255
| };
|
| // volatile int nCount=0;
| const int freqtab[] =
| {
| 0,
| 262,294,330,349,392,440,494,
| 523,587,659,698,784,880,988,
| 1046,1175,1318,1397,1568,1760,1976
| };
| const int musictab2[]=
| {
| 8,4,8,4,12,4,12,4,13,4,13,4,12,8,
| 11,4,11,4,10,4,10,4,9,4,9,4,8,8,
| 12,4,12,4,11,4,11,4,10,4,10,4,9,8,
| 12,4,12,4,11,4,11,4,10,4,10,4,9,8,
| 8,4,8,4,12,4,12,4,13,4,13,4,12,8,
| 11,4,11,4,10,4,10,4,9,4,9,4,8,8,
| };
| const int musictab1[]=
| {
| 7+3,2,7+3,2,7+3,4,7+3,2,7+3,2,7+3,4,
| 7+3,2,7+5,2,7+1,3,7+2,1,7+3,8,
| 7+4,2,7+4,2,7+4,2,7+4,2,7+4,2,7+3,2,7+3,2,7+3,2,
| 7+5,2,7+5,2,7+4,2,7+2,2,7+1,4,7+7+1,4,
| 5,2,7+3,2,7+2,2,7+1,2,5,6,5,1,5,1,
| 5,2,7+3,2,7+2,2,7+1,2,6,6,6,2,
| 6,2,7+4,2,7+3,2,7+2,2,7,6,5,2,
| 7+5,2,7+5,2,7+4,2,7+2,2,7+3,4,7+1,2,5,2,
| 5,2,7+3,2,7+2,2,7+1,2,5,6,5,2,5,2,7+3,2,7+2,2,7+1,2,6,6,6,2,
| 5,2,7+4,2,7+3,2,7+2,2,7+5,2,7+5,2,7+5,2,7+5,2,
| 7+6,2,7+5,2,7+4,2,7+2,2,7+1,6,0,2,
|
| };
| const int Totalmusiccount=sizeof(musictab1)/sizeof(int)/2;
| int cur_musicpos = 0;
| const int outtype=2;
| */
|
|