AppGlobalVar.h 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. /***
  2. * @Author: chenjie
  3. * @Date: 2022-10-27
  4. * @LastEditTime: 2022-11-10
  5. * @LastEditors: chenjie
  6. * @Description:
  7. * @FilePath: \S32K146_4G\code\app\AppGlobalVar.h
  8. * @Copyright (c) 2022 by chenjie, All Rights Reserved.
  9. */
  10. #ifndef APPGLOBALVAR_H_
  11. #define APPGLOBALVAR_H_
  12. #define APP_CAN_ENABLE
  13. #include "hal_adapter.h"
  14. #define BATT_SN_LEN 17
  15. extern const uint32 AppSwVersion;
  16. extern const uint8 DataModuleType;
  17. extern const uint16 HwVersion;
  18. extern const uint32 BlSwVersion;
  19. extern const uint32 DrvSwVersion;
  20. extern const uint8 BmsManuFacture;
  21. extern const uint8 BmsInfo;
  22. #define BMS_CELL_MAX_NUM 384
  23. #define BMS_TEMP_MAX_NUM 64
  24. typedef struct _AppDataType
  25. {
  26. uint8 BattCellCount;
  27. uint8 BattTempCount;
  28. } AppDataBody;
  29. extern bool TcpSysReboot;
  30. extern uint8 TcpbattSN[17];
  31. extern uint8 VIN[17];
  32. extern volatile uint32 TimerCounter;
  33. extern uint32 BattTempR[4];
  34. extern uint16 ErrorArray[10];
  35. extern uint8 Fota_update_flag;
  36. extern boolean Fota_Process_Going;
  37. extern uint8 Fota_error_flag;
  38. extern uint16 DeviceSpeed;
  39. typedef struct
  40. {
  41. uint8 RealLen;
  42. uint8 *DataPtr;
  43. } QueueDataTrans_Type;
  44. /*GPS*/
  45. extern QueueHandle_t GpsDataQueueHandle;
  46. extern sint16 xyzData[3];
  47. /*Hal_Can*/
  48. extern real_T returnFreq[3][5];
  49. extern real_T returnP[3][5];
  50. extern uint8 CanIf_u8TxConfirmCnt;
  51. extern boolean CanIf_bTxFlag;
  52. extern uint8 CanIf_u8RxIndicationCnt;
  53. extern boolean CanIf_bRxFlag;
  54. extern QueueHandle_t CanRecvQueueHandle0;
  55. extern QueueHandle_t CanRecvQueueHandle1;
  56. extern QueueHandle_t CanRecvQueueHandle2;
  57. extern TaskHandle_t Uart_Hal_RecvTask_Handle, Uart_Hal_SendTask_Handle, MainTask_Handle, Uart0Task_Handle, CanTask_Handle, GpsTask_Handle, Uart_4G_Task_Handle,BBox_BCU_Task_Handle;
  58. extern SemaphoreHandle_t sleep_mutex;
  59. extern uint8 CSQValue;
  60. extern sint8 SocketId;
  61. extern sint8 RegChkRet;
  62. extern char WebSiteIp[20];
  63. extern const char WebSiteName[];
  64. extern uint16 WebSitePort;
  65. extern char ImeiNum[15];
  66. extern char IccidNum[20];
  67. extern uint8 TcpWorkState;
  68. extern uint8 DeviceErrNum;
  69. typedef struct _AppEppType
  70. {
  71. uint32 battDischrgAccCap;//单位mah
  72. uint32 battChrgAccCap;//单位mah
  73. uint32 battDischrgAccEnrg;//单位wh
  74. uint32 battChrgAccEnrg;//单位wh
  75. uint16 battCycleTimes;
  76. uint32 AccMileage;
  77. } AppEppBody;
  78. typedef struct _AppConfigType
  79. {
  80. bool appSaveFlg;
  81. bool eolFlg;
  82. uint8 deviceSn[17];
  83. AppEppBody AppDataInfo;
  84. uint8 re[128];
  85. } AppConfigBody;
  86. extern AppConfigBody AppConfigInfo;
  87. typedef struct _BcuAppSaveType
  88. {
  89. //real time
  90. uint8 bcuSaveFlg;
  91. uint8 ihd_tm_yearE;
  92. uint8 ihd_tm_monthE;
  93. uint8 ihd_tm_dayE;
  94. uint8 ihd_tm_hourE;
  95. uint8 ihd_tm_minE;
  96. uint8 ihd_tm_secE;
  97. float socd_pct_bcuSocE;
  98. float socd_pct_battSocE;
  99. float damd_Q_totalChrgCpE;
  100. float damd_E_totalChrgEngE;
  101. float damd_Q_totalRegenCpE;
  102. float damd_E_totalRegenEngE;
  103. float damd_Q_totalDisChrgCpE;
  104. float damd_E_totalDisChrgEngE;
  105. } BcuAppSaveBody;
  106. extern BcuAppSaveBody BcuAppSaveDataInfo;
  107. #ifdef APP_CAN_ENABLE
  108. extern uint8 vehicleStatus;
  109. extern uint8 bmsHVOn;
  110. extern uint8 currentGearPosition;
  111. extern uint8 parkingBreakStatus;
  112. extern uint8 breakingStatus;
  113. extern uint32 ODO;
  114. extern uint8 dcdcWorkStatus;
  115. extern uint8 numOfChrgableSubsys;
  116. extern uint8 chrgableSubsysCode;
  117. extern uint16 vcuDCVol;
  118. // EBC
  119. extern uint8 ebcStatus;
  120. extern uint8 ebcAskHVOn;
  121. extern uint8 ebcAskHVOff;
  122. extern uint8 retainLockSignal;
  123. extern uint8 dischargeLockSignal;
  124. extern uint8 chargeLockSignal;
  125. extern uint8 chargeFlag;
  126. extern UINT32 BcuInTable[28];
  127. extern BOOL BcuRxShortError[28];
  128. extern BOOL BcuRxLongError[28];
  129. extern UINT8 BcuRxErrorCounter[28];
  130. extern UINT8 BcuRxFlag[28];
  131. extern UINT8 BMS_CellRecvFlg;
  132. extern UINT8 canRecvFramNum[BMS_CELL_MAX_NUM/3];
  133. extern UINT8 BMS_ReqVIN;
  134. extern UINT8 BMS_ReqHVOff;
  135. extern UINT8 BMS_ProtocolEditionH;
  136. extern UINT8 BMS_ProtocolEditionL;
  137. extern UINT8 BMS_CharDevNum;
  138. extern UINT8 BMS_FtPosRly;
  139. extern UINT8 BMS_FtNegRly;
  140. extern UINT8 BMS_FtPosCharRly1;
  141. extern UINT8 BMS_FtNegCharRly1;
  142. extern UINT8 BMS_FtPosCharRly2;
  143. extern UINT8 BMS_FtNegCharRly2;
  144. extern UINT8 BMS_FtHeatRly1;
  145. extern UINT8 BMS_FtHeatRly2;
  146. extern UINT8 BMS_StPosRly;
  147. extern UINT8 BMS_StNegRly;
  148. extern UINT8 BMS_StPreCharRly;
  149. extern UINT8 BMS_StPosCharRly1;
  150. extern UINT8 BMS_StNegCharRly1;
  151. extern UINT8 BMS_StPosCharRly2;
  152. extern UINT8 BMS_StNegCharRly2;
  153. extern UINT8 BMS_FtAuxRelayWeld;
  154. extern UINT8 BMS_BraOpenCirc;
  155. extern UINT8 BMS_FtBackCharCurrOutLim;
  156. extern UINT8 BMS_FtPosRlyOpen;
  157. extern UINT8 BMS_FtNegRlyOpen;
  158. extern UINT8 BMS_FtPosCharRly1Open;
  159. extern UINT8 BMS_FtPosCharRly2Open;
  160. extern UINT8 BMS_FtNegCharRly1Open;
  161. extern UINT8 BMS_FtNegCharRly2Open;
  162. extern UINT8 BMS_FtTMSContClose;
  163. extern UINT8 BMS_FtTMSContOpen;
  164. extern UINT8 BMS_FtTMS;
  165. extern UINT8 BMS_Ft24VSpy;
  166. extern UINT8 BMS_FtPACKSelfProt;
  167. extern UINT8 BMS_FtCharSockTempOver;
  168. extern UINT8 BMS_FtTempOutCtrl;
  169. extern UINT8 BMS_StPosHeatRly;
  170. extern UINT8 BMS_StNegHeatRly;
  171. extern UINT8 BMS_CharSysNum;
  172. extern UINT8 BMS_FtCode;
  173. extern UINT8 BMS_ST1CheckSum;
  174. extern UINT8 BMS_ST1Counter;
  175. extern UINT8 BMS_Mode;
  176. extern UINT8 BMS_AuxRlySt;
  177. extern UINT8 BMS_BattBalaSt;
  178. extern UINT8 BMS_CharGunSt;
  179. extern UINT8 BMS_CharMode;
  180. extern UINT8 BMS_CharSt;
  181. extern UINT8 BMS_FtLvl;
  182. extern UINT8 BMS_FtCellTempDiff;
  183. extern UINT8 BMS_FtCellTempHigh;
  184. extern UINT8 BMS_FtPACKOverVolt;
  185. extern UINT8 BMS_FtPACKUndeVolt;
  186. extern UINT8 BMS_FtSOCLow;
  187. extern UINT8 BMS_FtCellOverVolt;
  188. extern UINT8 BMS_FtCellUndeVolt;
  189. extern UINT8 BMS_FtIns;
  190. extern UINT8 BMS_FtCellOverVoltDiff;
  191. extern UINT8 BMS_FtCharCurrOver;
  192. extern UINT8 BMS_FtDisCharCurrOver;
  193. extern UINT8 BMS_FtCellTempLow;
  194. extern UINT8 BMS_FtBranVoltDifOver;
  195. extern UINT8 BMS_FtBMSHardWare;
  196. extern UINT8 BMS_FtSOCHigh;
  197. extern UINT8 BMS_FtSOCJump;
  198. extern UINT8 BMS_FtInCom;
  199. extern UINT8 BMS_FtSysMism;
  200. extern UINT8 BMS_FtHvIntLock;
  201. extern UINT8 BMS_FtSmoke;
  202. extern UINT8 BMS_FtFire;
  203. extern UINT8 BMS_FtNum;
  204. extern UINT8 BMS_PackSOC;
  205. extern UINT8 BMS_PackSOH;
  206. extern UINT8 BMS_MaxCellTemp;
  207. extern UINT8 BMS_MinCellTemp;
  208. extern UINT8 BMS_AverCellTemp;
  209. extern UINT8 BMS_MaxCellTempCSC;
  210. extern UINT8 BMS_MaxCellTempNum;
  211. extern UINT8 BMS_MinCellTempCSC;
  212. extern UINT8 BMS_MinCellTempNum;
  213. extern UINT8 BMS_MaxCellVoltCSC;
  214. extern UINT8 BMS_MaxCellVoltNum;
  215. extern UINT8 BMS_MinCellVoltCSC;
  216. extern UINT8 BMS_MinCellVoltNum;
  217. extern UINT8 BMS_InsDeteSt;
  218. extern UINT8 BMS_FtCharInsLow;
  219. extern UINT8 BMS_FtCurrSenr;
  220. extern UINT8 BMS_FtHeatingFilm;
  221. extern UINT8 BMS_FtMainLoopPreChar;
  222. extern UINT8 BMS_FtAuxLoopPreChar;
  223. extern UINT8 BMS_FtACANLost;
  224. extern UINT8 BMS_FtDCDC;
  225. extern UINT8 BMS_FtSOCDif;
  226. extern UINT8 BMS_FtCellOverDisChar;
  227. extern UINT8 BMS_FtCharOver;
  228. extern UINT8 BMS_FtContDisCharCurrOverLoad;
  229. extern UINT8 BMS_FtContCharCurrOverLoad;
  230. extern UINT8 BMS_Gun1DCNegTemp;
  231. extern UINT8 BMS_Gun1DCPosTemp;
  232. extern UINT8 BMS_Gun2DCNegTemp;
  233. extern UINT8 BMS_Gun2DCPosTemp;
  234. extern UINT8 BMS_CurrHeatSt;
  235. extern UINT8 BMS_CurrCoolSt;
  236. extern UINT8 BMS_FtCharCnct;
  237. extern UINT8 BMS_FtOverDisCharCurrDuringChar;
  238. extern UINT8 BMS_FtCharNTC;
  239. extern UINT8 BMS_FtELock;
  240. extern UINT8 BMS_CellVoltFramNum;
  241. extern UINT8 BMS_CellTempFramNum;
  242. extern UINT8 BMS_CSC_Code;
  243. extern UINT8 BMS_CellTemp[BMS_TEMP_MAX_NUM];
  244. extern UINT8 BMS_Checksum;
  245. extern UINT8 BMS_PackComp;
  246. extern UINT8 BMS_BattCodeLeng;
  247. extern UINT8 BMS_SN[27];
  248. extern UINT8 BMS_BattType;
  249. extern UINT8 BMS_CoolType;
  250. extern UINT8 BMS_CSC_Total;
  251. extern UINT8 BMS_CellVoltLevel;
  252. extern UINT8 BMS_CellMinVolt;
  253. extern UINT8 BMS_CellMaxVolt;
  254. extern UINT8 BMS_HVBranNum;
  255. extern UINT8 BMS_SingleHVBranchCellNum;
  256. extern UINT8 BMS_ReqMode;
  257. extern UINT8 BMS_HVCmd;
  258. extern UINT8 BMS_ChgSts;
  259. extern UINT8 BMS_HVRelaySts;
  260. extern UINT8 BMS_SetTemp;
  261. extern UINT8 BMS_Life;
  262. extern UINT8 BMS_CRC;
  263. extern UINT8 TMS_WorkStatus;
  264. extern UINT8 TMS_HVRelayST;
  265. extern UINT8 TMS_OutletTemp;
  266. extern UINT8 TMS_InletTemp;
  267. extern UINT8 TMS_ErrCode;
  268. extern UINT8 TMS_FaultLevel;
  269. extern UINT16 BMS_SoftwareVersion;
  270. extern UINT16 BMS_HardwareVersion;
  271. extern UINT16 BMS_PackCurr;
  272. extern UINT16 BMS_MaxCharCurr;
  273. extern UINT16 BMS_MaxDisCharCurr;
  274. extern UINT16 BMS_PosIns;
  275. extern UINT16 BMS_NegIns;
  276. extern UINT16 BMS_BattVolt;
  277. extern UINT16 BMS_LinkVolt;
  278. extern UINT16 BMS_MaxCellVolt;
  279. extern UINT16 BMS_AverCellVolt;
  280. extern UINT16 BMS_MinCellVolt;
  281. extern UINT16 BMS_ContChrgCurr;
  282. extern UINT16 BMS_ContDisCharCurr;
  283. extern UINT16 BMS_CharReqVolt;
  284. extern UINT16 BMS_CharReqCurr;
  285. extern UINT16 BMS_SysInsRes;
  286. extern UINT16 BMS_MaxDisCharPwr;
  287. extern UINT16 BMS_MaxCharPwr;
  288. extern UINT16 BMS_ContDisCharPwr;
  289. extern UINT16 BMS_ContCharPwr;
  290. extern UINT16 BMS_InstEngyCons;
  291. extern UINT16 BMS_TotalEngyCons;
  292. extern UINT16 BMS_SOE;
  293. extern UINT16 BMS_RmanCharTime;
  294. extern UINT16 BMS_CharNum;
  295. extern UINT16 BMS_CellVolt[BMS_CELL_MAX_NUM];
  296. extern UINT16 BMS_BattRateCap;
  297. extern UINT16 BMS_BattRateVolt;
  298. extern UINT16 BMS_BattRateEngy;
  299. extern UINT16 BMS_CellTotal;
  300. extern UINT16 BMS_TempTotal;
  301. extern UINT16 BMS_SingleCharEngy;
  302. extern UINT16 BMS_SingleCharCapy;
  303. extern UINT16 BMS_HVVolt;
  304. extern UINT16 TMS_ReqPow;
  305. extern UINT32 BMS_TotalCharEngy;
  306. extern UINT32 BMS_TotalDisCharEngy;
  307. extern UINT32 BMS_TotalBackCharEngy;
  308. extern UINT32 BMS_TotalStaCharEngy;
  309. extern UINT32 BMS_TotalGunCharEngy;
  310. extern UINT32 BMS_TotalGunCharCapy;
  311. extern UINT32 BMS_TotalCharCapy;
  312. extern UINT32 BMS_TotalDisCharCapy;
  313. extern UINT32 BMS_TotalBackCharCapy;
  314. extern UINT32 BMS_TotalStaCharCapy;
  315. #endif
  316. /************************************************************
  317. *BBox计算变量定义区
  318. ************************************************************/
  319. extern UINT8 BBox_PackSOC;
  320. extern UINT8 BBox_PackSOH;
  321. extern UINT32 BBox_TotalDischarCapy;
  322. extern UINT32 BBox_TotalCharCapy;
  323. extern UINT32 BBox_TotalBackCharCapy;
  324. extern UINT32 BBox_TotalDischarEngy;
  325. extern UINT32 BBox_TotalCharEngy;
  326. extern UINT32 BBox_TotalBackCharEngy;
  327. extern UINT32 BBox_Dq_Dv_MAX;
  328. extern UINT32 BBox_Dq_Dv_MIN;
  329. #endif /* APPGLOBALVAR_H_ */