Module_EvComm.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*
  2. * Module_EvComm.h
  3. *
  4. * Created on: 2020�~9��14��
  5. * Author: Wendell
  6. */
  7. #ifndef MODULE_EVCOMM_H_
  8. #define MODULE_EVCOMM_H_
  9. // server protocol setting
  10. #define SOCKET_SERVER_IP "192.168.0.10"
  11. #define PACKET_HEADER_LENGTH 4
  12. #define MAXIMUM_PAYLOAD_LENGTH 249 // 249 bytes
  13. #define TCP_LISTEN_PORT 36000
  14. #define SOCKET_RECEIVE_INTERVAL 10 // 10ms
  15. #define DISPENSER_SOCKET_TIMEOUT 10000 // 10s
  16. // client protocol setting
  17. #define DISPENSER_MODEL_NAME_RESEND 3000 // 3s
  18. #define DISPENSER_CONNECTOR_RESEND 3000 // 3s
  19. #define CABINET_STATUS_REQUEST_RESEND 1000 // 1s
  20. #define CHARGING_CAPABILITY_RESEND 1000 // 1s
  21. // socket setting
  22. #define CONNECTION_LIMIT 5
  23. #define MAXIMUM_CONNECT_QUANTITY 2
  24. struct Message
  25. {
  26. int size;
  27. unsigned char buffer[2048];
  28. };
  29. enum HEADER_OP
  30. {
  31. _Header_Read = 0x01,
  32. _Header_Write = 0x02,
  33. _Header_Response = 0x03,
  34. };
  35. enum PAYLOAD_REGISTER
  36. {
  37. _Reg_Dispenser_Model_Name = 0x01,
  38. _Reg_Connector_ID = 0x02,
  39. _Reg_Power_Cabinet_Status = 0x03,
  40. _Reg_Dispenser_Status = 0x04,
  41. _Reg_Charging_Capability = 0x05,
  42. _Reg_Charging_Target = 0x06,
  43. _Reg_Software_Update = 0x07,
  44. _Reg_Plug_In_Status = 0x08,
  45. _Reg_Connector_State = 0x09,
  46. _Reg_User_ID = 0x0A,
  47. _Reg_Charging_Permission = 0x0B,
  48. _Reg_Misc_Control = 0x0C,
  49. _Reg_Report_Csu_Version = 0x0D,
  50. _Reg_Report_Other_Version = 0x0E,
  51. _Reg_Charging_Info = 0x0F,
  52. _Reg_Charger_System_Id = 0x10,
  53. _Reg_WaitPlugIn = 0x11,
  54. };
  55. enum Response_Result
  56. {
  57. _R_OK = 0x01,
  58. _R_NG = 0x02,
  59. };
  60. enum Response_Upgrade
  61. {
  62. _R_NeedUpgrade = 0x01,
  63. _R_NoUpgrade = 0x02,
  64. };
  65. enum PlugIn_Status
  66. {
  67. _PIS_UnPlugged = 0x00,
  68. _PIS_PluggedIn = 0x01,
  69. };
  70. enum Connector_Remote_Status
  71. {
  72. _CRS_Idle = 0x00,
  73. _CRS_Preparing = 0x01,
  74. _CRS_Charging = 0x02,
  75. _CRS_Terminating = 0x03,
  76. };
  77. typedef enum
  78. {
  79. _DAS_NotAllowed = 0x00,
  80. _DAS_Allowed = 0x01,
  81. _DAS_Wait = 0x02,
  82. }DispenserAck_Status;
  83. enum Permission_Status
  84. {
  85. _PS_NotPermitted = 0x00,
  86. _PS_Permitted = 0x01,
  87. };
  88. enum Accept_Status
  89. {
  90. _AS_Reject = 0x00,
  91. _AS_Accept = 0x01,
  92. };
  93. struct HEADER_STRUCTURE
  94. {
  95. unsigned char se;
  96. unsigned char id;
  97. unsigned char op;
  98. unsigned char len;
  99. };
  100. struct PAYLOAD_STRUCTURE
  101. {
  102. unsigned char reg;
  103. unsigned char data[MAXIMUM_PAYLOAD_LENGTH];
  104. };
  105. struct PACKET_STRUCTURE
  106. {
  107. struct HEADER_STRUCTURE Header;
  108. struct PAYLOAD_STRUCTURE Payload;
  109. }Packet_Structure;
  110. enum DispenserStatus
  111. {
  112. _DS_None = 0x00,
  113. _DS_Identification = 0x01,
  114. _DS_Idle = 0x02,
  115. _DS_Alarm = 0x03,
  116. _DS_Charging = 0x04,
  117. _DS_Timeout = 0x05,
  118. };
  119. enum ConnectionStatus
  120. {
  121. _CNS_FREE = 0x00,
  122. _CNS_WaitModelName = 0x01,
  123. _CNS_DispenserMatched = 0x02,
  124. };
  125. struct MISC_COMMAND
  126. {
  127. unsigned short Command;
  128. unsigned int Value;
  129. };
  130. enum MiscCommand
  131. {
  132. _MiscCmd_None = 0x0000,
  133. _MiscCmd_ConnectorTimeout = 0x0001,
  134. _MiscCmd_ChangeOperative = 0x0002,
  135. _MiscCmd_DefaultPrice = 0x0003,
  136. _MiscCmd_Currency = 0x0004,
  137. _MiscCmd_AccountBalance = 0x0005,
  138. _MiscCmd_HardwareReboot = 0x0101,
  139. _MiscCmd_SoftwareRestart = 0x0102,
  140. _MiscCmd_RemoteStart = 0x0103,
  141. };
  142. struct ChargingCapabilityResponse
  143. {
  144. unsigned char ResponseResult; // 1: OK, 2 NG
  145. unsigned short MaxOuputVoltage; // unit = 0.1 volt
  146. unsigned short MaxOuputCurrent; // unit = 0.1 Amp
  147. unsigned short MaxOuputPower; // unit = 0.1 kW
  148. unsigned char Currency; // currency index
  149. unsigned int UserPrice; // unit = 0.01 dollar
  150. unsigned int TotalCost; // unit = 0.01 dollar
  151. int AccountBalance; // unit = 0.01 dollar
  152. };
  153. #endif /* MODULE_EVCOMM_H_ */