version.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798
  1. /*===========================================================================
  2. Combined Charging System (CCS): SECC
  3. version.h
  4. initiated by Joseph D. Anderson
  5. (since 2019/12/03)
  6. =============================================================================*/
  7. #define FIRMWARE_VERSION "V0.27.S0" //8-Byte(ASCII Code), “tx.yz.ab.cd”
  8. #define HARDWARE_VERSION "CCS_8.0x" //8-Byte(ASCII Code): CSU-03-RW, CCS_Board, REV:5.0
  9. #define LINUX_IMAGE_VERSION "dd2da761d59f2cdd4064c9d95f8c302a442d33f3 (2019-01-04)"
  10. #define RTC_DEFAULT_TIME 1595486300 //Epoch time (decimal)
  11. //https://git.phihong.com.tw:30000/System_Integration/CSU3_AM335x/commit/SHA1
  12. #define FIRMWARE_VERSION_LENGTH 8 //unit: byte, max = 8, due to CAN bus payload.
  13. #define HARDWARE_VERSION_LENGTH 8 //unit: byte, max = 8, due to CAN bus payload.
  14. /*
  15. ================================================================================
  16. ==================== [Software] Version Naming Rule (2020) =====================
  17. ================================================================================
  18. The firmware version consists of 8 bytes ASCII characters and be separated by
  19. dot symbol per coupling bytes as the format:
  20. “tx.yz.ab”
  21. Following table describes the version naming rule.
  22. - BYTE 0: t (Stage)
  23. One ASCII character to indicate the firmware maturity according to project stage.
  24. D: development stage (under developing)
  25. B: verification stage (under QE verification)
  26. V: manufacture stage (after QE verified and release to factory)
  27. - BYTE 1: x (Major)
  28. Increased with major changes, e.g., hardware change, incompatible change, etc.
  29. It should be more than or equal to 1 if the first character t is ‘V’
  30. Only numerical values 0 ~ 9 can be used.
  31. - BYTE 2,3: yz (Minor)
  32. Increased with iterant changes, e.g., new functions, bug fix and so on.
  33. Two numerical values 00 ~ 99 can be used.
  34. - BYTE 4: a (Project)
  35. Abbreviation for Firmware Projects
  36. R: Relay Control Board
  37. F: Fan Control Board
  38. C: CHAdeMO Board
  39. D: DC Main Board
  40. G: GB Board
  41. L: LED Bar Board
  42. S: CCS Board
  43. - BYTE 5: b (reserved)
  44. ================================================================================
  45. ====================== [Software] Version History (2020) =======================
  46. ================================================================================
  47. [VERSION] V0.27.S0
  48. * Release Date: 2020-08-
  49. * Change:
  50. 1. change Isolation test state to valid if recevied invalid during precharge and charging
  51. 2. Add CM_AMP_MAP message
  52. 3. change isolation status to valid if recevie invalid from CSU in WeldingDetectionRes
  53. 4. remove extra I_NOW information if no output voltage
  54. 5. support TLS connection
  55. 6. Intergrate to AC EVSE
  56. * File
  57. 1. SeccComm.c
  58. 2. SeccComm.*
  59. 3. SeccComm.c
  60. 4. CsuComm.c
  61. 5. define.h SeccComm.c NidNmk.h cakey.pem cacert.pem
  62. exi_engine\api\api.c
  63. EVSE/GPL/Makefile
  64. EVSE/Projects/CCS/Apps/Makefile
  65. 6. AW-CCS\Apps\Makefile
  66. AW-CCS\Apps\main.c
  67. AW-CCS\Apps\CCS\version.h
  68. AW-CCS\Apps\CCS\Makefile
  69. AW-CCS\Apps\CCS\define.h
  70. AW-CCS\Apps\CCS\CsuComm.*
  71. AW-CCS\Apps\CCS\SeccComm.c
  72. [VERSION] V0.26.S0
  73. * Release Date: 2020-08-
  74. * Change:
  75. 1. Support BCB toggle
  76. 2. killall ntpd
  77. 3. set all stop reason to emergency stop , except 023979
  78. * File
  79. 1. SeccComm.c
  80. 2. main.c
  81. 3. SeccComm.c CsuComm.c
  82. [VERSION] V0.25.S0
  83. * Release Date: 2020-07-21
  84. * Change:
  85. 1. reset PLC chip after session terminated
  86. 2. set MIN_SUPPORTED_CURRENT =5
  87. * File
  88. 1. SeccComm.c
  89. 2. define.h
  90. [VERSION] V0.24.S0
  91. * Release Date: 2020-07-20
  92. * Change:
  93. 1. Fix Pmax in SAschedule less than 0 issue
  94. 2. ignore sequence error when receive session stop at any command
  95. 3. fix 10 times of max charging power issue in ChargeParamaterDiscovery.conf
  96. 4. reduce 2 seconds after reset SeccComm
  97. 5. set output voltage = target voltage +10 if not over than max voltage
  98. * File
  99. 1. SeccComm.c, exi_engine\api\api.c
  100. 2. SeccComm.c
  101. 3. SeccComm.c
  102. 4. EVSE/rootfs/root/reset_soft.sh
  103. 5. exi_engine\api\api.c
  104. [VERSION] V0.13.S0 (sync with D0.63.13.1D)
  105. * Release Date: 2020-07-27
  106. * Stage: D (development)
  107. * Major Version: 0 (Compliant HW Version: REV8.0)
  108. * Minor Version: 13
  109. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  110. * Supported Feature: EIM
  111. * Charging Type: DC
  112. * Comm Method: PLC
  113. * Note:
  114. 1. Adding response to isolation status in WeldingDetectionRes.
  115. (1) DIN: DONE
  116. (2) ISO1: DONE
  117. [VERSION] V0.12.S0
  118. * Release Date: 2020-07-20
  119. * Stage: D (development)
  120. * Major Version: 0 (Compliant HW Version: REV8.0)
  121. * Minor Version: 12
  122. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  123. * Supported Feature: EIM
  124. * Charging Type: DC
  125. * Comm Method: PLC
  126. * Note:
  127. 1. Abandoning previous version name of D1.00.S0 and changing it to V0.12.S0.
  128. to be the 1st MP version.
  129. [VERSION] D1.00.S0
  130. * Release Date: 2020-07-20
  131. * Stage: D (development)
  132. * Major Version: 0 (Compliant HW Version: REV8.0)
  133. * Minor Version: 12
  134. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  135. * Supported Feature: EIM
  136. * Charging Type: DC
  137. * Comm Method: PLC
  138. * Note:
  139. 1. Chaning the version name from D0.12.S0 to D1.00.S0
  140. to be the 1st CE pass version.
  141. [VERSION] D0.12.S0
  142. * Release Date: 2020-07-20
  143. * Stage: D (development)
  144. * Major Version: 0 (Compliant HW Version: REV8.0)
  145. * Minor Version: 12
  146. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  147. * Supported Feature: EIM
  148. * Charging Type: DC
  149. * Comm Method: PLC
  150. * Note:
  151. 1. Sync with D0.62.13.1D (2020-07-03),
  152. => final version verified at DEKRA for CE (60KW)
  153. [VERSION] D0.11.S0
  154. * Release Date: 2020-05-14
  155. * Stage: D (development)
  156. * Major Version: 0 (Compliant HW Version: REV5.0)
  157. * Minor Version: 11
  158. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  159. * Supported Feature: EIM
  160. * Charging Type: DC
  161. * Comm Method: PLC
  162. * Note:
  163. 1. Sync with D0.43.13.1D
  164. [VERSION] D0.10.S0
  165. * Release Date: 2020-04-27
  166. * Stage: D (development)
  167. * Major Version: 0 (Compliant HW Version: REV5.0)
  168. * Minor Version: 10
  169. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  170. * Supported Feature: EIM
  171. * Charging Type: DC
  172. * Comm Method: PLC
  173. * Note:
  174. 1. Removing redundant debug message and code.
  175. 2. Adding error codes for the following situations.
  176. (1) CCS_SECC_TIMEOUT_SLACC_SDP_UDP_TT_match_join (023823)
  177. (2) CCS_SECC_TIMEOUT_SLACC_SDP_TCP_TT_match_join (023824)
  178. [VERSION] D0.09.S0
  179. * Release Date: 2020-04-23
  180. * Stage: D (development)
  181. * Major Version: 0 (Compliant HW Version: REV5.0)
  182. * Minor Version: 09
  183. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  184. * Supported Feature: EIM
  185. * Charging Type: DC
  186. * Comm Method: PLC
  187. * Note:
  188. 1. Merging D0.08.13.1D to here.
  189. [VERSION] D0.08.S0
  190. * Release Date: 2020-04-13
  191. * Stage: D (development)
  192. * Major Version: 0 (Compliant HW Version: REV5.0)
  193. * Minor Version: 08
  194. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  195. * Supported Feature: EIM
  196. * Charging Type: DC
  197. * Comm Method: PLC
  198. * Note:
  199. 1. Disabling "Check for ChargingPermission" when CP state is between 3 and 5,
  200. which is a new function in D0.07.S0.
  201. 2. Disabling RTC function.
  202. [VERSION] D0.07.S0
  203. * Release Date: 2020-04-09
  204. * Stage: D (development)
  205. * Major Version: 0 (Compliant HW Version: REV5.0)
  206. * Minor Version: 07
  207. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  208. * Supported Feature: EIM
  209. * Charging Type: DC
  210. * Comm Method: PLC
  211. * Note:
  212. 1. Adding response to "ChargingPermission off" before V2G messages.
  213. => End_Process()
  214. 2. Modifying the EVSEStatusCode status to be TRUE in the following 2 messages.
  215. (1) din_ChargeParameterDiscoveryRes
  216. (2) iso1_ChargeParameterDiscoveryRes
  217. [VERSION] D0.06.S0
  218. * Release Date: 2020-03-17
  219. * Stage: D (development)
  220. * Major Version: 0 (Compliant HW Version: REV5.0)
  221. * Minor Version: 06
  222. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  223. * Supported Feature: EIM
  224. * Charging Type: DC
  225. * Comm Method: PLC
  226. * Note:
  227. 1. Adding "CSUCOMM_TASK_FLAG.EV_Stop_Type_Emergency" flag to handle CAN Stop
  228. command type to CSU.
  229. 2. Adding error code to the following situation.
  230. (1) CCS_SECC_TIMEOUT_SLAC_TT_EVSE_SLAC_init (023809)
  231. SlacComm: Wait CM_SLAC_PARM_REQ Timeout - TT_EVSE_SLAC_init (50s)
  232. [VERSION] D0.05.S0
  233. * Release Date: 2020-03-17
  234. * Stage: D (development)
  235. * Major Version: 0 (Compliant HW Version: REV5.0)
  236. * Minor Version: 05
  237. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  238. * Supported Feature: EIM
  239. * Charging Type: DC
  240. * Comm Method: PLC
  241. * Note:
  242. 1. Sync with D0.20.11.1D.
  243. [VERSION] D0.04.S0
  244. * Release Date: 2020-03-13
  245. * Stage: D (development)
  246. * Major Version: 0 (Compliant HW Version: REV5.0)
  247. * Minor Version: 04
  248. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  249. * Supported Feature: EIM
  250. * Charging Type: DC
  251. * Comm Method: PLC
  252. * Note:
  253. 1. Adding error code of the following two situation.
  254. - CCS_SECC_CP_State_Error (023889)
  255. - CCS_SECC_TIMEOUT_V2G_Sequence_Time (023844)
  256. [VERSION] D0.03.S0
  257. * Release Date: 2020-03-13
  258. * Stage: D (development)
  259. * Major Version: 0 (Compliant HW Version: REV5.0)
  260. * Minor Version: 03
  261. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  262. * Supported Feature: EIM
  263. * Charging Type: DC
  264. * Comm Method: PLC
  265. * Note:
  266. 1. Merging D0.16.11.1D to here.
  267. [VERSION] D0.02.S0
  268. * Release Date: 2020-03-04
  269. * Stage: D (development)
  270. * Major Version: 0 (Compliant HW Version: REV5.0)
  271. * Minor Version: 02
  272. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  273. * Supported Feature: EIM
  274. * Charging Type: DC
  275. * Comm Method: PLC
  276. * Note:
  277. 1. Changing the default CAN bus firmware update method of ramdisk to
  278. root_app process.
  279. [VERSION] D0.01.S0
  280. * Release Date: 2020-03-02
  281. * Stage: D (development)
  282. * Major Version: 0 (Compliant HW Version: REV5.0)
  283. * Minor Version: 01
  284. * Supported Protocol(1101b): DIN 70121, ISO 15118-2(default: DISABLE)
  285. * Supported Feature: EIM
  286. * Charging Type: DC
  287. * Comm Method: PLC
  288. * Note:
  289. 1. Merging D0.12.11.1D of branch ISO_15118 to master.
  290. 2. Limiting the Supported CCS protocols to DIN 70121 only. (Disabling ISO1)
  291. => #define V2GT_MSG_PROTOCOL_PREFERENCE V2GT_MSG_PROTOCOL_DIN70121
  292. 3. Changing the firmware naming rule.
  293. ================================================================================
  294. =================== [Software] Version Naming Rule (2019)=======================
  295. ================================================================================
  296. The firmware version consists of 8 bytes ASCII characters and be separated by
  297. dot symbol per coupling bytes as the format:
  298. “tx.yz.ab.cd”.
  299. Following table describes the version naming rule.
  300. - BYTE 0: t (Stage)
  301. One ASCII character to indicate the firmware maturity according to project stage.
  302. D: development stage (under developing)
  303. B: verification stage (under QE verification)
  304. V: manufacture stage (after QE verified and release to factory)
  305. - BYTE 1: x (Major)
  306. Increased with major changes, e.g., hardware change, incompatible change, etc.
  307. It should be more than or equal to 1 if the first character t is ‘V’
  308. Only numerical values 0 ~ 9 can be used.
  309. - BYTE 2,3: yz (Minor)
  310. Increased with iterant changes, e.g., new functions, bug fix and so on.
  311. Two numerical values 00 ~ 99 can be used.
  312. - BYTE 4: a (Comm Method)
  313. Supported HLC Communication Methods
  314. bit 7 bit 6 bit 5 bit 4 bit 3 bit 2 bit 1 bit 0
  315. |------------------ reserved ----------------| Wi-Fi PLC
  316. 1: PLC only
  317. 2: Wi-Fi only
  318. 3: PLC + Wi-Fi
  319. others: reserved
  320. - BYTE 5: b (Charging Type)
  321. Supported Charging Types
  322. bit 7 bit 6 bit 5 bit 4 bit 3 bit 2 bit 1 bit 0
  323. |-------- reserved --------| BPT WPT AC DC
  324. 1: DC only
  325. 2: AC only
  326. 3: DC + AC
  327. 4: WPT: Wireless Power Transfer
  328. 8: BPT: Bidirectional Power Transfer, etc
  329. others: reserved
  330. - BYTE 6: c (Supported Features)
  331. bit 7 bit 6 bit 5 bit 4 bit 3 bit 2 bit 1 bit 0
  332. |-------------- reserved -----------| ACD PnC EIM
  333. 1: EIM
  334. 2: PnC
  335. 4: ACD (Automatic Connection Device), etc
  336. Others: reserved
  337. - BYTE 7: d (Supported Protocols)
  338. bit 7 bit 6 bit 5 bit 4 bit 3 bit 2 bit 1 bit 0
  339. |--------- reserved --------------------| ISO 15118-20 ISO 15118-2 SAE J2847 DIN 70121
  340. 1: DIN SPEC 70121
  341. 2: SAE J2847
  342. 3: DIN SPEC 70121 + SAE J2847
  343. 4: ISO/IEC 15118-2
  344. 8: ISO/IEC 15118-20, etc
  345. others: reserved
  346. ================================================================================
  347. ========================= [Software] Version History ===========================
  348. ================================================================================
  349. [VERSION] D0.12.11.1D
  350. * Release Date: 2020-02-24
  351. * Stage: D (development)
  352. * Major Version: 0 (Compliant HW Version: REV5.0)
  353. * Minor Version: 11
  354. * Supported Protocol(1101b): DIN 70121, ISO 15118-2, ISO 15118-20
  355. * Supported Feature: EIM
  356. * Charging Type: DC
  357. * Comm Method: PLC
  358. * Note:
  359. 1. Checking EVMaximumVoltageLimit_isUsed flag when using decoded
  360. EVMaximumVoltageLimit value.
  361. 2. Extending V2G_SECC_WeldingDetection_Performance_Time from 2s to 20s.
  362. -
  363. [VERSION] D0.10.11.1D
  364. * Release Date: 2020-02-24
  365. * Stage: D (development)
  366. * Major Version: 0 (Compliant HW Version: REV5.0)
  367. * Minor Version: 10
  368. * Supported Protocol(1101b): DIN 70121, ISO 15118-2, ISO 15118-20
  369. * Supported Feature: EIM
  370. * Charging Type: DC
  371. * Comm Method: PLC
  372. * Note:
  373. 1. Adding Check_CP_State_Error() function in the forked EvComm task.
  374. 2. Updating the log mechanism of present EVSE V/I information.
  375. [VERSION] D0.09.11.1D
  376. * Release Date: 2020-02-20
  377. * Stage: D (development)
  378. * Major Version: 0 (Compliant HW Version: REV5.0)
  379. * Minor Version: 09
  380. * Supported Protocol(1101b): DIN 70121, ISO 15118-2, ISO 15118-20
  381. * Supported Feature: EIM
  382. * Charging Type: DC
  383. * Comm Method: PLC
  384. * Note:
  385. 1. Adding Tx timeout for RawSock (100ms, SO_SNDTIMEO)
  386. 2. Replacing the original "static variable" of counter of iso1_CableCheckRes and iso1_PreChargeReq
  387. with another new variable inside CcsData structure.
  388. [VERSION] D0.08.11.1D
  389. * Release Date: 2020-02-20
  390. * Stage: D (development)
  391. * Major Version: 0 (Compliant HW Version: REV5.0)
  392. * Minor Version: 08
  393. * Supported Protocol(1101b): DIN 70121, ISO 15118-2, ISO 15118-20
  394. * Supported Feature: EIM
  395. * Charging Type: DC
  396. * Comm Method: PLC
  397. * Note:
  398. 1. Modifying the state machine to let state return back to IDLE(0)
  399. once the set key process of QCA7000 is completed.
  400. [VERSION] D0.07.11.1D
  401. * Release Date: 2020-02-20
  402. * Stage: D (development)
  403. * Major Version: 0 (Compliant HW Version: REV5.0)
  404. * Minor Version: 07
  405. * Supported Protocol(1101b): DIN 70121, ISO 15118-2, ISO 15118-20
  406. * Supported Feature: EIM
  407. * Charging Type: DC
  408. * Comm Method: PLC
  409. * Note:
  410. 1. Modifying 5% PWM start timing as below. (requested by Diamler)
  411. (1) Start 5% PWM once receiving CM_SLAC_PARM_REQ from EV.
  412. => The Charging Permission status from CSU doesn't have to be TRUE
  413. (2) Start 5% once QCA7000 finishs setting key (CM_SET_KEY_CNF) and
  414. detecting both of
  415. "CheckConnectorPlugIn()" and
  416. "Charging Permission status from CSU" are TRUE.
  417. => The Charging Permission status from CSU have to be TRUE
  418. 2. Adding the following system reset methods for the selection.
  419. (1) #define RESET_MECHANISM_SOFT_RESET_KILLALL_EVCOMM 0 (default)
  420. (2) #define RESET_MECHANISM_HARD_RESET 1
  421. (3) #define RESET_MECHANISM_SOFT_RESET_INTERNAL_RESUME 2
  422. 2. Adding check mechanism for Charging Permission in all V2G message process
  423. after ChargeParameterDiscoveryReq.
  424. => if (ShmInternalComm->ChargingPermission == FALSE)
  425. 3. Printing states on the following task log. (via Check_V2G_Flow_Status())
  426. (1) EvComm
  427. (2) CsuComm
  428. 4. Adding Check_V2G_Flow_Status_pre() function to check previous status.
  429. [VERSION] D0.06.11.1D
  430. * Release Date: 2020-02-19
  431. * Stage: D (development)
  432. * Major Version: 0 (Compliant HW Version: REV5.0)
  433. * Minor Version: 06
  434. * Supported Protocol(1101b): DIN 70121, ISO 15118-2, ISO 15118-20
  435. * Supported Feature: EIM
  436. * Charging Type: DC
  437. * Comm Method: PLC
  438. * Note:
  439. - Fixing the issue of Shutdown by EVSE Mechanism in D0.05.11.1D.
  440. [VERSION] D0.05.11.1D
  441. * Release Date: 2020-02-19
  442. * Stage: D (development)
  443. * Major Version: 0 (Compliant HW Version: REV5.0)
  444. * Minor Version: 05
  445. * Supported Protocol(1101b): DIN 70121, ISO 15118-2, ISO 15118-20
  446. * Supported Feature: EIM
  447. * Charging Type: DC
  448. * Comm Method: PLC
  449. * Note:
  450. - Merging D1.19.11.11 to here.
  451. [VERSION] D0.04.11.1D
  452. * Release Date: 2020-02-11
  453. * Stage: D (development)
  454. * Major Version: 0 (Compliant HW Version: REV5.0)
  455. * Minor Version: 04
  456. * Supported Protocol(1101b): DIN 70121, ISO 15118-2, ISO 15118-20
  457. * Supported Feature: EIM
  458. * Charging Type: DC
  459. * Comm Method: PLC
  460. * Note:
  461. - Fixing the software CP protection mechanism,
  462. which won't be triggered in previous version.
  463. [VERSION] D0.03.11.1D
  464. * Release Date: 2020-02-11
  465. * Stage: D (development)
  466. * Major Version: 0 (Compliant HW Version: REV5.0)
  467. * Minor Version: 03
  468. * Supported Protocol(1101b): DIN 70121, ISO 15118-2, ISO 15118-20
  469. * Supported Feature: EIM
  470. * Charging Type: DC
  471. * Comm Method: PLC
  472. * Note:
  473. - [ISO1] The first successful version for ISO15118_2014
  474. - Verification:
  475. -- Emulator: Gridwiz Simplemint (ISO 15118, ISO1)
  476. => Normal Stop by EVSE during CurrentDemand(): PASS
  477. -- EVSE: to be verified
  478. - [ISO2] paused on development
  479. [VERSION] D0.02.11.1D
  480. * Release Date: 2020-02-06
  481. * Stage: D (development)
  482. * Major Version: 0 (Compliant HW Version: REV5.0)
  483. * Minor Version: 02
  484. * Supported Protocol(1101b): DIN 70121, ISO 15118-2, ISO 15118-20
  485. * Supported Feature: EIM
  486. * Charging Type: DC
  487. * Comm Method: PLC
  488. * Note:
  489. - [ISO1] SessionSetupReq: done
  490. - [ISO1] SessionSetupRes: done
  491. - [ISO2] SessionSetupReq: done
  492. - [ISO2] SessionSetupRes: done
  493. [VERSION] D0.01.11.1D
  494. * Release Date: 2020-02-03
  495. * Stage: D (development)
  496. * Major Version: 0 (Compliant HW Version: REV5.0)
  497. * Minor Version: 01
  498. * Supported Protocol(1101b): DIN 70121, ISO 15118-2, ISO 15118-20
  499. * Supported Feature: EIM
  500. * Charging Type: DC
  501. * Comm Method: PLC
  502. * Note:
  503. - kick-off of ISO 15118-2 and 15118-20
  504. - supportedAppProtocolReq: done
  505. *--------------------------- start of ISO 15118 --------------------------------
  506. [VERSION] D1.09.11.11
  507. * Release Date: 2020-01-17
  508. * Stage: D (development)
  509. * Major Version: 1 (Compliant HW Version: REV5.0)
  510. * Minor Version: 09
  511. * Supported Protocol: DIN 70121
  512. * Supported Feature: EIM
  513. * Charging Type: DC
  514. * Comm Method: PLC
  515. * Note:
  516. - Adding Update_Module.c (not be enabled, yet).
  517. - Updating the "NAND flash mapping table" of Firmware Design SPEC
  518. [VERSION] D1.08.11.11
  519. * Release Date: 2020-01-15
  520. * Stage: D (development)
  521. * Major Version: 1 (Compliant HW Version: REV5.0)
  522. * Minor Version: 08
  523. * Supported Protocol: DIN 70121
  524. * Supported Feature: EIM
  525. * Charging Type: DC
  526. * Comm Method: PLC
  527. * Note:
  528. - Fixing CAN Bus firmware image update function.
  529. -- ramdisk, configuration
  530. [VERSION] D1.07.11.11
  531. * Release Date: 2020-01-15
  532. * Stage: D (development)
  533. * Major Version: 1 (Compliant HW Version: REV5.0)
  534. * Minor Version: 07
  535. * Supported Protocol: DIN 70121
  536. * Supported Feature: EIM
  537. * Charging Type: DC
  538. * Comm Method: PLC
  539. * Note:
  540. - Adding CAN Bus firmware image update function.
  541. -- supporting MLO, uboot, zImage, ramdisk, configuration
  542. [VERSION] D1.06.11.11
  543. * Release Date: 2020-01-10
  544. * Stage: D (development)
  545. * Major Version: 1 (Compliant HW Version: REV5.0)
  546. * Minor Version: 06
  547. * Supported Protocol: DIN 70121
  548. * Supported Feature: EIM
  549. * Charging Type: DC
  550. * Comm Method: PLC
  551. * Note:
  552. - Adding CAN Bus firmware image update function.
  553. -- supporting ramdisk_app (type = 5)
  554. [VERSION] D1.05.11.11
  555. * Release Date: 2020-01-07
  556. * Stage: D (development)
  557. * Major Version: 1 (Compliant HW Version: REV5.0)
  558. * Minor Version: 05
  559. * Supported Protocol: DIN 70121
  560. * Supported Feature: EIM
  561. * Charging Type: DC
  562. * Comm Method: PLC
  563. * Note:
  564. - Enabling the CP_PROTECTION_MECHANISM.
  565. [VERSION] D1.04.11.11
  566. * Release Date: 2020-01-07
  567. * Stage: D (development)
  568. * Major Version: 1 (Compliant HW Version: REV5.0)
  569. * Minor Version: 04
  570. * Supported Protocol: DIN 70121
  571. * Supported Feature: EIM
  572. * Charging Type: DC
  573. * Comm Method: PLC
  574. * Note:
  575. - Adding auto detection of CCS Board ID pin. (AM_IO_1)
  576. - Adding dts files for linux and uboot.
  577. By executing auto_win.sh or auto_mac.sh, it will update dts into linux
  578. kernel and compile.
  579. [VERSION] D1.03.11.11
  580. * Release Date: 2020-01-06
  581. * Stage: D (development)
  582. * Major Version: 1 (Compliant HW Version: REV5.0)
  583. * Minor Version: 03
  584. * Supported Protocol: DIN 70121
  585. * Supported Feature: EIM
  586. * Charging Type: DC
  587. * Comm Method: PLC
  588. * Note:
  589. - Fixing all shell script "Next Line" error
  590. * "CRLF" ==> "LF"
  591. - Adding scripts for auto compile and data moving.
  592. [VERSION] D1.02.11.11
  593. * Release Date: 2020-01-06
  594. * Stage: D (development)
  595. * Major Version: 1 (Compliant HW Version: REV5.0)
  596. * Minor Version: 02
  597. * Supported Protocol: DIN 70121
  598. * Supported Feature: EIM
  599. * Charging Type: DC
  600. * Comm Method: PLC
  601. * Note:
  602. - Canceling "LIGHTTPD" (web server) when Linux is booting up.
  603. Purpose: Reduce the CPU resource to enhance the CCS tasks performance.
  604. [VERSION] D1.01.11.11
  605. * Release Date: 2020-01-06
  606. * Stage: D (development)
  607. * Major Version: 1 (Compliant HW Version: REV5.0)
  608. * Minor Version: 01
  609. * Supported Protocol: DIN 70121
  610. * Supported Feature: EIM
  611. * Charging Type: DC
  612. * Comm Method: PLC
  613. * Note:
  614. - The first version for CCS Board HW 5.0,
  615. which supports Ethernet(eth0) and higher ADC sampling rate.
  616. [VERSION] D0.04.11.11
  617. * Release Date: 2019-12-23
  618. * Stage: D (development)
  619. * Major Version: 0 (Compliant HW Version: REV2.0, REV4.0)
  620. * Minor Version: 04
  621. * Supported Protocol: DIN 70121
  622. * Supported Feature: EIM
  623. * Charging Type: DC
  624. * Comm Method: PLC
  625. * Note:
  626. - CCS Board ID = 2. (can_tx_payload[4] = 0x02)
  627. [VERSION] D0.04.11.11
  628. * Release Date: 2019-12-05
  629. * Stage: D (development)
  630. * Major Version: 0 (Compliant HW Version: REV2.0, REV4.0)
  631. * Minor Version: 03
  632. * Supported Protocol: DIN 70121
  633. * Supported Feature: EIM
  634. * Charging Type: DC
  635. * Comm Method: PLC
  636. * Note:
  637. - CCS Board ID = 2.
  638. [VERSION] D0.03.11.11
  639. * Release Date: 2019-12-05
  640. * Stage: D (development)
  641. * Major Version: 0 (Compliant HW Version: REV2.0, REV4.0)
  642. * Minor Version: 03
  643. * Supported Protocol: DIN 70121
  644. * Supported Feature: EIM
  645. * Charging Type: DC
  646. * Comm Method: PLC
  647. * Note:
  648. - RTC time byte sequence inside CAN msg is modified to [0] [1] [2] [3]
  649. from [3] [2] [1] [0].
  650. [VERSION] D0.02.11.11
  651. * Release Date: 2019-12-04
  652. * Stage: D (development)
  653. * Major Version: 0 (Compliant HW Version: REV2.0, REV4.0)
  654. * Minor Version: 02
  655. * Supported Protocol: DIN 70121
  656. * Supported Feature: EIM
  657. * Charging Type: DC
  658. * Comm Method: PLC
  659. * Note:
  660. - Adding RTC update function (via CAN message)
  661. [VERSION] D0.01.11.11
  662. * Release Date: 2019-12-04
  663. * Stage: D (development)
  664. * Major Version: 0 (Compliant HW Version: REV2.0, REV4.0)
  665. * Minor Version: 01
  666. * Supported Protocol: DIN 70121
  667. * Supported Feature: EIM
  668. * Charging Type: DC
  669. * Comm Method: PLC
  670. * Note: -
  671. ================================================================================
  672. ======================== [Hardware] Version Naming Rule ========================
  673. ================================================================================
  674. ================================================================================
  675. ========================== [Software] Version History ==========================
  676. ================================================================================
  677. */