From 2364f06313efb8eb97d4ae741a31cdd2efc175d2 Mon Sep 17 00:00:00 2001 From: QuakeGod <QuakeGod@sina.com> Date: 星期三, 01 二月 2023 16:05:50 +0800 Subject: [PATCH] KBus fix after merget together --- Inc/GlobalDef.h | 39 ++++++++++++++++++++++----------------- 1 files changed, 22 insertions(+), 17 deletions(-) diff --git a/Inc/GlobalDef.h b/Inc/GlobalDef.h index 3f4d43b..3d41162 100644 --- a/Inc/GlobalDef.h +++ b/Inc/GlobalDef.h @@ -36,11 +36,8 @@ BOARD_V42_SLAVE, //10 New V4.2 Slave 8 in 8 o BOARD_V30_MINI =11, //11 Mini Board - BOARD_V45_NET = 13, - BOARD_EXT_FP0 = 14, - BOARD_V50_RADIO_16 = 15, BOARD_V50_RADIO_8 = 16, @@ -49,7 +46,15 @@ #define BOARD_TYPE 16 #define BOARD_VER 1 #define XLAT_FREQ 8 +#define BOARD_VER 1 +#if (BOARD_TYPE == 11) +#define XLAT_FREQ 12 +#elif (BOARD_TYPE == 14) +#define XLAT_FREQ 12 +#else +#define XLAT_FREQ 8 +#endif #define GetBoardType() (BOARD_TYPE) @@ -73,13 +78,13 @@ typedef struct tagUartStat { - volatile int Inited; - volatile int RecvBytes; volatile int SendBytes; - volatile int Sending; - volatile int Recving; - volatile int UseAltRecvBuf; - volatile int IntCount; + volatile int RecvBytes; + volatile char bInited; + volatile char bSending; + volatile char bRecving; + volatile char bUseAltRecvBuf; + volatile int IRQCount; volatile int RXNECount; volatile int TXECount; volatile int PECount; @@ -110,21 +115,21 @@ extern unsigned char Uart1RecvBuf1[128]; extern int Uart1RecvBuf1DataLen; -extern unsigned char Uart1RecvBuf2[128]; -extern int Uart1RecvBuf2DataLen; +//extern unsigned char Uart1RecvBuf2[128]; +//extern int Uart1RecvBuf2DataLen; extern unsigned char Uart2RecvBuf1[128]; extern int Uart2RecvBuf1DataLen; -extern unsigned char Uart2RecvBuf2[128]; -extern int Uart2RecvBuf2DataLen; +//extern unsigned char Uart2RecvBuf2[128]; +//extern int Uart2RecvBuf2DataLen; extern volatile int Uart1BaudGot; extern volatile int Uart1BaudFirstGot; -extern volatile int Uart2BaudGot; -extern volatile int Uart2BaudFirstGot; +//extern volatile int Uart2BaudGot; +//extern volatile int Uart2BaudFirstGot; -extern volatile int Uart1DmaInts; -extern volatile int Uart2DmaInts; +//extern volatile int Uart1DmaInts; +//extern volatile int Uart2DmaInts; struct stSysConfig{ int bInited:1; -- Gitblit v1.9.1