QuakeGod
2023-02-01 6126f6a78b14297cefb02f06ba58806767d424b5
提交 | 用户 | age
bfc108 1 /**
Q 2   ******************************************************************************
3   * @file           : GlobalDef.h
4   * @brief          : Header for GlobalDef.c file.
5   *                   This file contains the Global defines of the application.
6   ******************************************************************************
7     */
8 #ifndef __GLOBALDEF_H__
9 #define __GLOBALDEF_H__
10 #include "MyQueue.h"
11 /*
12     0  //old board 4 in 4 out
13     1  //old board 8 in 8 out
14     2  //Master 16 in16 out
15     3  //Slave 8 in 8 out
16     4  //New Master 16 in16 out V1.2
17     5  //Slave 8 in 8 out V1.2
18 */
a7db3c 19
Q 20
21 #define DefaultUart1Baud 230400
22 #define DefaultUart2Baud 1000000
0aeaad 23
bfc108 24 enum enBOARD_TYPE
Q 25 {
26     BOARD_UNKNOWN =0,
27     BOARD_OLD4=1,    // 1  //old board 4 in 4 o
28     BOARD_OLD8,        //2   old board 8 in 8 o
29     BOARD_MASTER,        //3   Master 16 in16 o
30     BOARD_SLAVE,            //4   Slave 8 in 8 o
31     BOARD_NEW_MASTER,        //5   New Master 16 in16 o
32     BOARD_NEW_SLAVE,        //6   New Slave 8 in 8 o
33     BOARD_V4_MASTER,        //7        New V4 Master 16 in16 o
34     BOARD_V4_SLAVE,        //8            New V4 Slave 8 in 8 o
35     BOARD_V42_MASTER,        //9        New V4.2 Master 16 in16 o
36     BOARD_V42_SLAVE,        //10    New V4.2 Slave 8 in 8 o    
0aeaad 37     
Q 38     BOARD_V30_MINI    =11,        //11  Mini Board
a7db3c 39     BOARD_V45_NET = 13,
Q 40     BOARD_EXT_FP0 = 14,
0fe6b0 41     BOARD_V50_RADIO_16 = 15, 
Q 42     BOARD_V50_RADIO_8 = 16, 
a7db3c 43     
bfc108 44 };
Q 45
a7db3c 46 #define BOARD_TYPE 9
Q 47 #define XLAT_FREQ 8
0fe6b0 48 #define BOARD_VER 1
0aeaad 49
0fe6b0 50 #if (BOARD_TYPE == 11)
Q 51 #define XLAT_FREQ 12
52 #elif (BOARD_TYPE == 14)
53 #define XLAT_FREQ 12
54 #else 
55 #define XLAT_FREQ 8
56 #endif
bfc108 57
a7db3c 58 #define GetBoardType() (BOARD_TYPE)
bfc108 59
Q 60 extern volatile int PendSvCount;
61
62 typedef struct tagUartStat
63 {
64     volatile int SendBytes;
0fe6b0 65     volatile int RecvBytes;
Q 66     volatile char bInited;
67     volatile char bSending;
68     volatile char bRecving;
69     volatile char bUseAltRecvBuf;
70     volatile int IRQCount;
bfc108 71     volatile int RXNECount;
Q 72     volatile int TXECount;    
73     volatile int PECount;
74     volatile int OverRunCount;
75     volatile int TcCount;        //Transmit Complete
76     volatile int IdelCount;        //RecvIdel
77     volatile int LostBytes;
78     volatile int DMACount;
79     volatile int DMASendLen;
80     volatile int DMARecvLen;
81     stMyQueue QRx;
82     stMyQueue QTx;
83     volatile int SentPacket;
84     volatile int bPacketRecved;
85     volatile int OKPacket;
86     volatile int TimeOutErr;
87     volatile int NotPacketErr;
88     volatile int LengthErr;
89     volatile int BCCerr;
90 }stUartStat;
91
92
93 extern stUartStat Uart1Stat;
94 extern stUartStat Uart2Stat;
95
96 extern unsigned int Uart1Baud;
97 extern unsigned int Uart2Baud;
98
99 extern unsigned char Uart1RecvBuf1[128];
100 extern int Uart1RecvBuf1DataLen;
0fe6b0 101 //extern unsigned char Uart1RecvBuf2[128];
Q 102 //extern int Uart1RecvBuf2DataLen;
bfc108 103
Q 104 extern unsigned char Uart2RecvBuf1[128];
105 extern int Uart2RecvBuf1DataLen;
0fe6b0 106 //extern unsigned char Uart2RecvBuf2[128];
Q 107 //extern int Uart2RecvBuf2DataLen;
bfc108 108
Q 109 extern volatile int Uart1BaudGot;
110 extern volatile int Uart1BaudFirstGot;
0fe6b0 111 //extern volatile int Uart2BaudGot;
Q 112 //extern volatile int Uart2BaudFirstGot;
bfc108 113
0fe6b0 114 //extern volatile int Uart1DmaInts;
Q 115 //extern volatile int Uart2DmaInts;
bfc108 116
Q 117 struct stSysConfig{
118     int bInited:1;
119     int bConfiged:1;
a7db3c 120     int bKBusMaster:1;
bfc108 121 };
Q 122
123
124 #endif  /* __GLOBALDEF_H__ */