DoComm.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. #ifndef _DO_COMM_H_
  2. #define _DO_COMM_H_
  3. //------------------------------------------------------------------------------
  4. #include <stdint.h>
  5. //------------------------------------------------------------------------------
  6. //--- common define ---
  7. //------------------------------------------------------------------------------
  8. #define CMP_ETH_IP_HEAD "192.168.100"
  9. #define DoIPAddress "192.168.100.1"
  10. #define DoTcpPort 36000
  11. #define IMAGE_FILE_PATH "../mnt"
  12. #define TFTP_PULL_CMD "tftp"
  13. #define SIGTERM_MSG "SegmentFault.~~~~\n"
  14. #define MAX_REGISTER_NUM 50
  15. #define CHECK_NETWORK_FAIL_COUNT 10//10
  16. #define CONNECT_SERVER_FAIL_COUNT 3//5
  17. #define WARNING_CODE_SIZE 6
  18. #define MAX_VOLTAGE 10000
  19. #define MAX_CURRENCY 5000
  20. #define MAX_POWER 3600
  21. #define DISPENSER_INIT_SUCC 0x01
  22. #define DISPENER_INIT_FAIL 0x02
  23. #define DISPENSER_SOCKET_RECONN 0x03
  24. #define VERSION_BUF_SIZE 32
  25. #define PRICES_UNIT 0.01
  26. #define LOOP_RETRY_TIME 1000 //1 second
  27. //------------------------------------------------------------------------------
  28. //--- dispenser ID ---
  29. //------------------------------------------------------------------------------
  30. #define ID_RESERVER 0x00
  31. #define ID_OF_DISPENSER 0x01
  32. #define ID_REGISTER 0xFF
  33. //------------------------------------------------------------------------------
  34. //--- dispenser operation ---
  35. //------------------------------------------------------------------------------
  36. #define OP_READ_DATA 0x01
  37. #define OP_WRITE_DATA 0x02
  38. #define OP_WAIT_RESPONSE 0x03
  39. //------------------------------------------------------------------------------
  40. //--- connector status ---
  41. //------------------------------------------------------------------------------
  42. #define CONN_ST_IDLE 0x00
  43. #define CONN_ST_PREPARING 0x01
  44. #define CONN_ST_CHARGING 0x02
  45. #define CONN_ST_TERMINATING 0x03
  46. #define CONN_ST_ALARM 0x04
  47. //------------------------------------------------------------------------------
  48. //--- dispenser register ---
  49. //------------------------------------------------------------------------------
  50. #define REG_MODEL_NAME 0x01
  51. #define REG_CONNECTOR_ID 0x02
  52. #define REG_POWER_CABINET_STATUS 0x03
  53. #define REG_DISPENSER_STATUS 0x04
  54. #define REG_CHARGING_CAP 0x05
  55. #define REG_CHARGING_TARGET 0x06
  56. #define REG_SOFTWARE_UPDATE 0x07
  57. #define REG_PLUG_IN_STATE 0x08
  58. #define REG_CONNECTOR_STATE 0x09
  59. #define REG_USER_ID 0x0A
  60. #define REG_CHARGING_PERMISSION 0x0B
  61. #define REG_MISC_CONTROL 0X0C
  62. #define REG_REPORT_CSU_VERSION 0X0D
  63. #define REG_REPORT_OTHER_VERSION 0X0E
  64. #define REG_PRESENT_CHARGING_INFO 0X0F
  65. #define REG_QRCODE_URL_INFO 0X10
  66. #define REG_WAIT_PLUG_IT_STATE 0x11
  67. #define REG_Ground_Fault_Detection 0x12
  68. #define REG_CABINET_DCM_VERSION 0x13
  69. #define REG_CABINET_OTHER_VERSION 0x14
  70. #define REG_TOTAL_PSU_QUANTITY 0x15
  71. #define REG_PSU_VERSION 0x16
  72. #define REG_RESERVATION_IDTAG 0x17
  73. #define REG_DISPENSER_REQUEST 0x18
  74. #define REG_REMOTE_START_NO_ID 0x19
  75. #define REG_REFUND_AMOUNT 0x1A
  76. #define REG_PREPAYMENT_INFO 0x1B
  77. #define REG_PAYMENT_FAIL_REASON 0x1C
  78. #define REG_CONNECTOR_QR_CODE 0x1D
  79. #define REG_STATION_INFO 0x1E
  80. #define REG_DEDUCT_INFO 0x1F
  81. #define REG_READ_CABINET_SYSTEMID 0x20
  82. #define REG_READ_DEFAULT_PRICE 0x21
  83. #define REG_READ_USER_PRICE 0x22
  84. #define REG_RECEIPT_INFO 0x23
  85. #define REG_POWER_CONSUMPTION_INFO 0x24
  86. #define REG_READ_CHARGING_TIMESTAMP 0x25
  87. #define REG_OCMF_INFO 0x29
  88. //------------------------------------------------------------------------------
  89. //--- dispenser result ---
  90. //------------------------------------------------------------------------------
  91. #define COMMAND_RESULT_OK 0x01
  92. #define COMMAND_RESULT_NG 0x02 //wait state
  93. //------------------------------------------------------------------------------
  94. //--- power cabinet misc status code ---
  95. //------------------------------------------------------------------------------
  96. #define MISC_ST_MISC_CMD "B40001"
  97. #define MISC_ST_VERSION "B40999"
  98. //------------------------------------------------------------------------------
  99. //--- power cabinet misc command ---
  100. //------------------------------------------------------------------------------
  101. #define MISC_CMD_CONNECOTOR_TIMEOUT (0X0001)
  102. #define MISC_CMD_OPERATIVE_STATE (0X0002)
  103. #define MISC_CMD_DEFAULT_PRICES (0x0003)
  104. #define MISC_CMD_DEFAULT_CURRENCY (0x0004)
  105. #define MISC_CMD_ACCOUNT_BALANCE (0x0005)
  106. #define MISC_CMD_BACKEND_STATUS (0x0006)
  107. #define MISC_CMD_ETHERNET_STATUS (0x0007)
  108. #define MISC_CMD_WIFI_STATUS (0x0008)
  109. #define MISC_CMD_4G_STATUS (0x0009)
  110. #define MISC_CMD_BILLING_INFO (0x000A)
  111. #define MISC_CMD_WEB_STOP_CHARGING (0x000B)
  112. #define MISC_CMD_AUTH_DISABLE (0x000C)
  113. #define MISC_CMD_EVCCID_ENABLE (0x000D)
  114. #define MISC_CMD_LED_INTENSITY (0x000E)
  115. #define MISC_CMD_AC_CONTACTOR (0x000F)
  116. #define MISC_CMD_TIME_OFFSET (0x0010)
  117. #define MISC_CMD_PARKING_PRICE (0x0011)
  118. #define MISC_CMD_RFIDCARD_ENDIAN (0x0012)
  119. #define MISC_CMD_HARDWARE_REBOOT (0x0101)
  120. #define MISC_CMD_SOFTWARE_RESTART (0x0102)
  121. #define MISC_CMD_REMOTE_START_CHARGING (0x0103)
  122. #define MISC_CMD_REMOTE_STOP_CHARGING (0x0104)
  123. #define MISC_CMD_REMOTE_UNLOCK (0x0105)
  124. #define MISC_CMD_RESERVATION (0x0106)
  125. #define MISC_CMD_CHANGE_LCM_PAGE (0x0107)
  126. #define MISC_CMD_QR_CODE_REQ (0x0108)
  127. #define MISC_CMD_STATION_INFO_REQ (0x0109)
  128. #define MISC_CMD_FINAL_COST_REQ (0x010A)
  129. #define MISC_CMD_LINE_STATUS_REQ (0x010B)
  130. #define MISC_CMD_DEFAULT_PRICE_REQ (0x010C)
  131. #define MISC_CMD_USER_PRICE_REQ (0x010D)
  132. #define MISC_CMD_RECEIPT_REQ (0x010E)
  133. #define MISC_CMD_CHARGING_BILL (0x010F)
  134. #define MISC_CMD_PARKING_PRICES (0x0110)
  135. #define ST_UPDATE_FIRMWARE (0x01)
  136. #define ST_NO_UPDATE_FIRMWARE (0x02)
  137. #define LCM_PAGE_REMOTE_START_NO_ID (0x0001)
  138. #define DISPENSER_REQ_CHARGING_CANCEL (0x0001)
  139. #define UPLOAD_DEDUCT_DB (0x5656)
  140. //------------------------------------------------------------------------------
  141. #pragma pack(push)
  142. #pragma pack(1)
  143. typedef union
  144. {
  145. unsigned int Value;
  146. struct
  147. {
  148. unsigned int ChargingCancel : 1; // 0: no effect, 1: charging cancel request
  149. unsigned int res : 31;
  150. }bits;
  151. } ConnectorActReqVar;
  152. typedef struct StDeductInfoVar {
  153. unsigned char DeductResult; // 0: Fail, 1: Pass
  154. unsigned char IsDonateInvoice; // 0: Do not donate, 1: Donate
  155. int TransactionId; // transaction id
  156. int Amount; // unit = 0.01 dollar
  157. char ApprovalNumber[12]; // approval number
  158. } DeductInfoVar;
  159. /*
  160. typedef union
  161. {
  162. unsigned int Value;
  163. struct
  164. {
  165. unsigned int JoinLine:1; // 0: no effect, 1: JoinLine page is trigger
  166. unsigned int PaymentSwitch:1; // 0: no effect, 1: PaymentSwitch page is trigger
  167. unsigned int res:30;
  168. }bits;
  169. } ChangePageReq;
  170. */
  171. typedef union
  172. {
  173. unsigned int Value;
  174. struct
  175. {
  176. unsigned int ReservationReq:1; // 0: no effect, 1: need to request Reservation
  177. unsigned int RemoteStartNoID:1; // 0: no effect, 1: need to request RemoteStartNoID
  178. unsigned int StationInfoReq:1; // 0: no effect, 1: need to request StationInfo
  179. unsigned int FinalCostReq:1; // 0: no effect, 1: need to request FinalCost
  180. unsigned int DefaultPriceReq : 1; // 0: no effect, 1: need to request Default price
  181. unsigned int UserPriceReq : 1; // 0: no effect, 1: need to request User price
  182. unsigned int ReceiptReq : 1; // 0: no effect, 1: need to request Receipt
  183. unsigned int res:27;
  184. }bits;
  185. } MoreInfoReq;
  186. typedef struct StStationVar {
  187. int StationID;
  188. char StationName[64];
  189. int WeatherID;
  190. float Temperature;
  191. } StationVar;
  192. typedef struct StConnectorState {
  193. uint8_t State;
  194. uint8_t WarningCode[6];
  195. uint8_t ConnectorTemp;
  196. uint8_t ChillerTemp;
  197. uint8_t PlugIn;
  198. uint32_t consumption;
  199. uint8_t ConnectMode;
  200. } ConnectorState;
  201. typedef struct StConnectorIDTable {
  202. uint8_t DcConnID1;
  203. uint8_t DcConnID2;
  204. uint8_t AcConnID;
  205. uint8_t Reserved;
  206. } ConnectorIDTable;
  207. typedef struct StDoCommGlobalVar {
  208. uint8_t SeqNum;
  209. uint8_t DisConnCount;
  210. uint8_t ConnectorID[3]; //keep from power cabinet
  211. uint8_t MiscCmd;
  212. uint8_t Reserved[2];
  213. } DoCommGblData;
  214. typedef struct StOcmfInfoData {
  215. uint8_t TxId[36];
  216. unsigned int CRC;
  217. uint8_t OcmfPublicKey[200];
  218. } OcmfInfoData;
  219. typedef struct StCommnadHead {
  220. uint8_t SeqNum; //sequence number 0 ~ 255
  221. uint8_t ID; //0: Reserved, 0x01 ~ 0xFE: connector ID, 0xFF: exists in register 1 and register 2
  222. uint8_t OP; //0x01: read, 0x02: write, 0x03: response from power cabinet
  223. uint8_t DataLen; //raw data Length
  224. } CmdHead;
  225. typedef struct StCommandData {
  226. uint8_t Register; /* 0x01: dispenser model name (maximum 32 bytes) and the value of dispenser switch
  227. 0x02: The ID to connector equipped at dispenser
  228. 0x03: Power cabinet status
  229. 0x04: Dispenser status
  230. 0x05: The charging capacity of each connector
  231. 0x06: The required voltage and current during charging
  232. 0x07: The indicator of software update to dispenser
  233. 0x08: Indicate whether the connector is plug-in or not
  234. 0x09: Indicate the connector state
  235. 0x0A: The user ID can be RFID card number, EVCCID, etc.
  236. 0x0B: Charging permission from power cabinet to dispenser
  237. */
  238. uint8_t Data[250];
  239. } CmdData;
  240. typedef struct StResultData {
  241. uint8_t Register; /* 0x01: dispenser model name (maximum 32 bytes) and the value of dispenser switch
  242. 0x02: The ID to connector equipped at dispenser
  243. 0x03: Power cabinet status
  244. 0x04: Dispenser status
  245. 0x05: The charging capacity of each connector
  246. 0x06: The required voltage and current during charging
  247. 0x07: The indicator of software update to dispenser
  248. 0x08: Indicate whether the connector is plug-in or not
  249. 0x09: Indicate the connector state
  250. 0x0A: The user ID can be RFID card number, EVCCID, etc.
  251. 0x0B: Charging permission from power cabinet to dispenser
  252. */
  253. uint8_t Result;
  254. uint8_t Data[249];
  255. } ResultData;
  256. typedef struct StCsuCmdPkt {
  257. CmdHead Head;
  258. CmdData Data;
  259. } CsuCmdPkt;
  260. typedef struct StCsuResultPkt {
  261. CmdHead Head;
  262. ResultData Data;
  263. } CsuResultPkt;
  264. typedef struct StMiscCommand {
  265. uint16_t CMD;
  266. uint8_t Value[4];
  267. } MiscCommand;
  268. typedef struct StPresentChargingInfo {
  269. uint16_t PresentChargingVoltage; //0~6553.5 volt
  270. uint16_t PresentChargingCurrent; //0~6553.5 amp
  271. int RemainChargingDuration; // second
  272. uint8_t EvBatterySoc; // 0~100%
  273. } PreChargingInfo;
  274. typedef struct StGroundFaultDetection { //Ground Fault Detection
  275. uint8_t Status;
  276. } GroundFaultDetection;
  277. typedef struct StSoftwareUpdInfo {
  278. uint8_t UpdateState; //1:update , 2: not update
  279. uint8_t ImgName[248];
  280. } SoftwareUpdInfo;
  281. typedef struct StCapabilityInfo {
  282. uint16_t OutputVoltage;
  283. uint16_t OutputCurrent;
  284. uint16_t OutputPower;
  285. uint8_t Reserved[2];
  286. } CapabilityInfo;
  287. typedef struct StAccountInfo {
  288. uint8_t Currency;
  289. int UserPrices;
  290. int TotalCost;
  291. int Balance;
  292. int Discount;
  293. int Transaction;
  294. int EnergyCost;
  295. int ParkingFee;
  296. uint32_t RemainAmount;
  297. uint8_t Reserved[1];
  298. } AccountInfo;
  299. typedef struct stCabinetDCMVersion {
  300. uint8_t CabinetModelName[32];
  301. uint8_t CabinetBoolLoaderVersion[32];
  302. uint8_t CabinetKernelVersion[32];
  303. uint8_t CabinetRFSystemVersion[32];
  304. uint8_t CabinetPrimaryVersion[32];
  305. uint8_t CabinetIPAddr[32];
  306. }PCDCMVer;
  307. typedef struct stCabinetOtherVersion {
  308. uint8_t CabinetRelay0Version[32];
  309. uint8_t CabinetRelay1Version[32];
  310. uint8_t CabinetFanVersion[32];
  311. }PCOthVer;
  312. typedef struct stCabinetEachPsuVersion {
  313. uint8_t n_PSU;
  314. uint8_t DCVersion[32];
  315. uint8_t FPCVersion[32];
  316. }PCnPsuVer;
  317. #pragma pack(pop)
  318. #endif /* _DO_COMM_H_ */