define.h 162 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795
  1. #ifndef DEFINE_H_
  2. #define DEFINE_H_
  3. /**************************************************************************************/
  4. /*********************************NAND Flash mapping *****************************/
  5. /**************************************************************************************/
  6. /*
  7. sector size 512 KiB
  8. Page size 4096 b
  9. OOB size 224 b
  10. Erase size 524288 b
  11. -------------------------------------------------------------------------------------------------------------------------------
  12. Segment Physical address Size
  13. -------------------------------------------------------------------------------------------------------------------------------
  14. MLO 0x00000000-0x0007FFFF 512 KB
  15. Primary u-boot 0x00080000-0x0017FFFF 1 MB
  16. Environment 0x00180000-0x001FFFFF 512 KB
  17. Secondary u-boot 0x00200000-0x002FFFFF 1 MB
  18. Primary dtb 0x00300000-0x0037FFFF 512 KB
  19. Secondary dtb 0x00380000-0x003FFFFF 512 KB
  20. Primary kernel 0x00400000-0x00DFFFFF 10 MB
  21. Secondary Kernel 0x00E00000-0x017FFFFF 10 MB
  22. Primary root file system 0x03000000-0x05FFFFFF 48 MB
  23. Secondary root file system 0x06000000-0x08FFFFFF 48 MB
  24. Primary user configuration 0x09000000-0x095FFFFF 6 MB
  25. Secondary user configuration 0x09600000-0x09BFFFFF 6 MB
  26. Factory default configuration 0x09C00000-0x0A1FFFFF 6 MB
  27. Storage 0x0A200000-0x7FFFFFFF 1886 MB
  28. */
  29. /**************************************************************************************/
  30. /*********************************System Limitation**********************************/
  31. /**************************************************************************************/
  32. /*Rating outout power and current*/
  33. #define RATED_POWER 25 //kW
  34. #define RATED_CURRENT 350 //Amp, it depend on the capacity of charging connector
  35. /*relevant to Quantity */
  36. #ifdef AWRegular
  37. #define MAX_PSU_QUANTITY 62
  38. #define CHAdeMO_QUANTITY 1
  39. #define CCS_QUANTITY 1
  40. #define GB_QUANTITY 0
  41. #define AC_QUANTITY 1
  42. #define PSU_QUANTITY 2
  43. #define ONE_CONNECTOR_USE 0
  44. #elif BYTONGB
  45. #define MAX_PSU_QUANTITY 62
  46. #define CHAdeMO_QUANTITY 1
  47. #define CCS_QUANTITY 1
  48. #define GB_QUANTITY 0
  49. #define AC_QUANTITY 1
  50. #define PSU_QUANTITY 2
  51. #define ONE_CONNECTOR_USE 0
  52. #elif DW30
  53. #define MAX_PSU_QUANTITY 62
  54. #define CHAdeMO_QUANTITY 1
  55. #define CCS_QUANTITY 1
  56. #define GB_QUANTITY 0
  57. #define AC_QUANTITY 0
  58. #define PSU_QUANTITY 2
  59. #define ONE_CONNECTOR_USE 1
  60. #elif DM30
  61. #define MAX_PSU_QUANTITY 62
  62. #define CHAdeMO_QUANTITY 0
  63. #define CCS_QUANTITY 1
  64. #define GB_QUANTITY 0
  65. #define AC_QUANTITY 0
  66. #define PSU_QUANTITY 2
  67. #define ONE_CONNECTOR_USE 0
  68. #elif DS60120
  69. #define MAX_PSU_QUANTITY 62
  70. #define CHAdeMO_QUANTITY 1
  71. #define CCS_QUANTITY 1
  72. #define GB_QUANTITY 0
  73. #define AC_QUANTITY 0
  74. #define PSU_QUANTITY 2
  75. #define ONE_CONNECTOR_USE 0
  76. #elif DS60210
  77. #define MAX_PSU_QUANTITY 62
  78. #define CHAdeMO_QUANTITY 1
  79. #define CCS_QUANTITY 1
  80. #define GB_QUANTITY 0
  81. #define AC_QUANTITY 0
  82. #define PSU_QUANTITY 2
  83. #define ONE_CONNECTOR_USE 0
  84. #elif PlugIt360
  85. #define MAX_PSU_QUANTITY 62
  86. #define CHAdeMO_QUANTITY 0
  87. #define CCS_QUANTITY 1
  88. #define GB_QUANTITY 0
  89. #define AC_QUANTITY 0
  90. #define PSU_QUANTITY 2
  91. #define ONE_CONNECTOR_USE 0
  92. #else
  93. #define MAX_PSU_QUANTITY 62
  94. #define CHAdeMO_QUANTITY 1
  95. #define CCS_QUANTITY 1
  96. #define GB_QUANTITY 0
  97. #define AC_QUANTITY 1
  98. #define PSU_QUANTITY 2
  99. #define ONE_CONNECTOR_USE 0
  100. #endif
  101. /*SystemLog message*/
  102. #define SystemLogMessage //for debug info save to log file
  103. #define ConsloePrintLog //for debug info print to console
  104. /**************************************************************************************/
  105. /*****************************share memory key information*****************************/
  106. /**************************************************************************************/
  107. #define ShmSysConfigAndInfoKey 1001
  108. #define ShmPsuKey 1002
  109. #define ShmCHAdeMOCommKey 1003
  110. #define ShmCcsCommKey 1004
  111. #define ShmStatusCodeKey 1005
  112. #define ShmPrimaryMcuKey 1006
  113. #define ShmFanBdKey 1007
  114. #define ShmRelayBdKey 1008
  115. #define ShmOcppModuleKey 1009
  116. #define ShmGBTCommKey 1010
  117. /**************************************************************************************/
  118. /****************** Share memory configuration value constant define ******************/
  119. /**************************************************************************************/
  120. enum SYSTEM_STATUS
  121. {
  122. SYS_MODE_BOOTING = 0,
  123. SYS_MODE_IDLE = 1,
  124. SYS_MODE_AUTHORIZING = 2,
  125. SYS_MODE_MODE_REASSIGN_CHECK = 3,
  126. SYS_MODE_REASSIGN = 4,
  127. SYS_MODE_PREPARING = 5,
  128. SYS_MODE_PREPARE_FOR_EV = 6,
  129. SYS_MODE_PREPARE_FOR_EVSE = 7,
  130. SYS_MODE_CHARGING = 8,
  131. SYS_MODE_TERMINATING = 9,
  132. SYS_MODE_COMPLETE = 10,
  133. SYS_MODE_ALARM = 11,
  134. SYS_MODE_FAULT = 12,
  135. SYS_MODE_RESERVATION = 13,
  136. SYS_MODE_BOOKING = 14,
  137. SYS_MODE_MAINTAIN = 15,
  138. SYS_MODE_DEBUG = 16,
  139. SYS_MODE_CCS_PRECHARGE_STEP0 = 17,
  140. SYS_MODE_CCS_PRECHARGE_STEP1 = 18,
  141. SYS_MODE_UPDATE = 19
  142. };
  143. enum AUTHORIZATION_MODE
  144. {
  145. AUTH_MODE_BACKEND_OCPP = 0,
  146. AUTH_MODE_FREE = 1
  147. };
  148. enum LCD_LANGUAGE
  149. {
  150. LCD_LANG_ENGLISH = 0,
  151. LCD_LANG_CHT = 1,
  152. LCD_LANG_CHS = 2,
  153. LCD_LANG_JAPANESE = 3,
  154. LCD_LANG_FRENCH = 4,
  155. LCD_LANG_ITALIAN = 5,
  156. LCD_LANG_SPANISH = 6,
  157. LCD_LANG_GERMAN = 7,
  158. LCD_LANG_DUTCH = 8,
  159. LCD_LANG_NORWEGIAN = 9,
  160. LCD_LANG_FINNISH = 10,
  161. LCD_LANG_SWEDISH = 11,
  162. LCD_LANG_SLOVENIAN = 12,
  163. LCD_LANG_THAI = 13,
  164. };
  165. enum RFID_ENDIAN
  166. {
  167. RFID_ENDIAN_LITTLE = 0,
  168. RFID_ENDIAN_BIG = 1
  169. };
  170. enum PHASE_LOSS_POLICY
  171. {
  172. LOSS_POLICY_CHARGING = 0,
  173. LOSS_POLICY_STOP = 1
  174. };
  175. enum CCS_AUTHPRIZATION_MODE
  176. {
  177. CCS_AUTH_MODE_EIM = 0,
  178. CCS_AUTH_MODE_MIXED = 1
  179. };
  180. enum OFF_LINE_POLICY
  181. {
  182. OFF_POLICY_LOCALLIST = 0,
  183. OFF_POLICY_PH_RFID = 1,
  184. OFF_POLICY_FREE = 2,
  185. OFF_POLICY_NOCHARGE = 3
  186. };
  187. /*Configuration enum*/
  188. enum CoreProfile {
  189. AllowOfflineTxForUnknownId=0,
  190. AuthorizationCacheEnabled,
  191. AuthorizeRemoteTxRequests,
  192. BlinkRepeat,
  193. ClockAlignedDataInterval,
  194. ConnectionTimeOut,
  195. GetConfigurationMaxKeys,
  196. HeartbeatInterval,
  197. LightIntensity,
  198. LocalAuthorizeOffline,
  199. LocalPreAuthorize,
  200. MaxEnergyOnInvalidId,
  201. MeterValuesAlignedData,
  202. MeterValuesAlignedDataMaxLength,
  203. MeterValuesSampledData,
  204. MeterValuesSampledDataMaxLength,
  205. MeterValueSampleInterval,
  206. MinimumStatusDuration,
  207. NumberOfConnectors,
  208. ResetRetries,
  209. ConnectorPhaseRotation,
  210. ConnectorPhaseRotationMaxLength,
  211. StopTransactionOnEVSideDisconnect,
  212. StopTransactionOnInvalidId,
  213. StopTxnAlignedData,
  214. StopTxnAlignedDataMaxLength,
  215. StopTxnSampledData,
  216. StopTxnSampledDataMaxLength,
  217. SupportedFeatureProfiles,
  218. SupportedFeatureProfilesMaxLength,
  219. TransactionMessageAttempts,
  220. TransactionMessageRetryInterval,
  221. UnlockConnectorOnEVSideDisconnect,
  222. WebSocketPingInterval,
  223. _CoreProfile_CNT
  224. };
  225. /**************************************************************************************/
  226. /****structure SysConfigData => shall store the data to NAND flash****************/
  227. /****structure SysInfoData => shall NOT store the data to NAND flash***************/
  228. /****according to System Configuration and Information Table.xlsx Rev.0.2 *******/
  229. /**************************************************************************************/
  230. struct NoneUse
  231. {
  232. unsigned char unknown; // None use struct
  233. };
  234. struct EthConfigData
  235. {
  236. unsigned char EthDhcpClient; //0: enable,1: disable
  237. unsigned char EthMacAddress[18]; //default: Null
  238. unsigned char EthIpAddress[16]; //Eth0 default:192.168.0.10 ,Eth1 default:192.168.1.10
  239. unsigned char EthSubmaskAddress[16]; //Eth0 default:255.255.255.0 ,Eth1 default:255.255.255.0
  240. unsigned char EthGatewayAddress[16]; //Eth0 default:192.168.0.254 ,Eth1 default:192.168.1.254
  241. };
  242. struct WifiConfigData
  243. {
  244. unsigned char WifiMode; //0: disable, 1: Infrastructure client, 2: Infrastructure server, 3: Ad-Hoc
  245. unsigned char WifiSsid[256]; //default: Null
  246. unsigned char WifiPassword[256]; //default: Null
  247. int WifiRssi; //dbm
  248. unsigned char WifiDhcpServer; //0: enable, 1: disable
  249. unsigned char WifiDhcpClient; //0: enable, 1: disable
  250. unsigned char WifiMacAddress[18]; //default: Null
  251. unsigned char WifiIpAddress[16]; //default:192.168.2.10
  252. unsigned char WifiSubmaskAddress[16]; //default:255.255.255.0
  253. unsigned char WifiGatewayAddress[16]; //default:192.168.2.254
  254. unsigned char WifiNetworkConn; //0: disconnected, 1: connected
  255. };
  256. struct TeleConfigData
  257. {
  258. unsigned char TelcomModelName[64]; //default: Null
  259. unsigned char TelcomSoftwareVer[64]; //default: Null
  260. unsigned char TelcomApn[256]; //default: Null
  261. int TelcomRssi; //dbm
  262. unsigned char TelcomChapPapId[256]; //default: Null
  263. unsigned char TelcomChapPapPwd[256]; //default: Null
  264. unsigned char TelcomModemImei[16]; //default: Null
  265. unsigned char TelcomSimImsi[16]; //default: Null
  266. unsigned char TelcomSimIccid[22]; //default: Null
  267. unsigned char TelcomSimStatus; //0: no SIM card is found, 1: valid SIM card, 2: invalid SIM card
  268. unsigned char TelcomModemMode; //0: No services, 1: CDMA, 2: GSM/GPRS, 3: WCDMA, 4: GSM/WCDMA, 5: TD_SCDMA mode, 6: Unknow
  269. unsigned char TelcomIpAddress[16]; //default: Null
  270. unsigned char TelcomNetworkConn; //0: disconnected, 1: connected
  271. };
  272. struct BtConfigData
  273. {
  274. unsigned char LoginCentralID[64]; //default: Null
  275. unsigned char isLogin; //0: Central device non-login 1: Central device login
  276. unsigned char isRequestStart; //0: no action 1: request start charging
  277. unsigned char isRequestStop; //0: no action 1: request stop charging
  278. };
  279. struct BillingConfigData
  280. {
  281. unsigned char isBilling; //0:not for business 1:for business
  282. unsigned char Currency; //
  283. unsigned short Fee[24]; //fee for 24 hours
  284. };
  285. struct SysConfigData
  286. {
  287. /**************System***************/
  288. unsigned char CsuBootLoadFwRev[32]; //CSU board bootloader firmware version
  289. unsigned char ModelName[64]; //charger model name
  290. unsigned char SerialNumber[64]; //charger system serial number
  291. unsigned char SystemId[128]; //charger system ID
  292. unsigned char SystemDateTime[32]; //charger system date and time
  293. unsigned char AcPhaseCount; //AC EVSE power phase quantity, 1: One phase 3: Three phase
  294. unsigned char AuthorisationMode; //0: OCPP backend, 1: free mode
  295. unsigned char DefaultLanguage; //
  296. unsigned char RfidCardNumEndian; //0: little endian, 1: big endian
  297. unsigned short AcPlugInTimes; //0~65535
  298. unsigned short GbPlugInTimes; //0~65535
  299. unsigned short Ccs1PlugInTime; //0~65535
  300. unsigned short Ccs2PlugInTimes; //0~65535
  301. unsigned short ChademoPlugInTimes; //0~65535
  302. unsigned char PsuAcInputType; //0: 220, 1: 277
  303. unsigned short RatingCurrent; //0: Depend on Model name, 1 ~ rating value amp
  304. unsigned char isAPP; //for AuthorisationMode=0; 0:false, 1:true
  305. unsigned char isQRCode; //for AuthorisationMode=0; 0:false, 1:true
  306. unsigned char isRFID; //for AuthorisationMode=0; 0:false, 1:true
  307. unsigned char QRCodeMadeMode; //for isQRCode=1 ; 0: default 1:customized
  308. unsigned char QRCodeContent[128]; //for QRCodeMadeMode=1
  309. unsigned char TotalConnectorCount; //Connector count
  310. unsigned char SwitchDebugFlag; // Console Debug
  311. /**************Charging***************/
  312. unsigned short MaxChargingEnergy; //0: no limit, 1 ~ 65535 kWh
  313. unsigned short MaxChargingPower; //0: rating value, 1 ~ RATING_POWER kW"
  314. unsigned short MaxChargingCurrent; //0: rating value, 1 ~ RATING_CURRENT amp"
  315. unsigned short MaxChargingDuration; //0: no limit, 1 ~ 65535 minutes
  316. unsigned char PhaseLossPolicy; //0: charging, 1: stop charging
  317. unsigned char LocalWhiteCard[10][32]; //Max. card quantity is 10
  318. unsigned char UserId[32]; //the user use this ID to trigger charging event, it can be RFID card number, OCPP IdTag, etc.
  319. struct BillingConfigData BillingData;
  320. /**************Network***************/
  321. unsigned char FtpServer[256]; //the ftp server for Phihong server to do data transimission
  322. struct EthConfigData Eth0Interface;
  323. struct EthConfigData Eth1Interface;
  324. struct WifiConfigData AthInterface;
  325. struct TeleConfigData TelecomInterface;
  326. struct BtConfigData Bluetooth;
  327. /**************Backend***************/
  328. unsigned int BackendConnTimeout; //default : 300s
  329. unsigned char OfflinePolicy; //0: local list, 1: Phihong RFID tag, 2: free charging, 3: no charging
  330. unsigned short OfflineMaxChargeEnergy; //0: same as MaxChargingEnergy, 1 ~ 65535 kWh
  331. unsigned short OfflineMaxChargeDuration; //0: same as MaxChargeDuration, 1 ~ 65535 minutes
  332. unsigned char OcppServerURL[512]; //http: non-secure OCPP 1.5-S, https: secure OCPP 1.5-S, ws: non-secure OCPP 1.6-J, wss: secure OCPP 1.6-J"
  333. unsigned char ChargeBoxId[128];
  334. unsigned char chargePointVendor[20]; //the Vendor of the ChargePoint
  335. unsigned int Checksum; //4 bytes checksum
  336. };
  337. struct ChargingInfoData
  338. {
  339. unsigned char Index;
  340. unsigned char slotsIndex;
  341. unsigned char Type; // 0 : Chademo, 1 : CCS, 2: GB
  342. unsigned char type_index;
  343. unsigned char Evboard_id; // for EV board
  344. unsigned char StopChargeFlag; // for EV board
  345. unsigned char SystemStatus; //0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  346. unsigned char PreviousSystemStatus; // 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
  347. int ReservationId;
  348. unsigned char IsAvailable;
  349. float MaximumChargingVoltage; //0~6553.5 volt
  350. float AvailableChargingCurrent; //0~6553.5 amp
  351. float AvailableChargingPower; //0~6553.5 kW
  352. float DeratingChargingCurrent; //0~6553.5 amp
  353. float DeratingChargingPower; //0~6553.5 kW
  354. float FuseChargingVoltage; //0~6553.5 volt
  355. float FireChargingVoltage; //0~6553.5 volt
  356. float PresentChargingVoltage; //0~6553.5 volt
  357. float PresentChargingCurrent; //0~6553.5 amp
  358. float PresentChargingPower; //0~6553.5 kW
  359. float PresentChargedEnergy; //0~6553.5 kWh
  360. int PresentChargedDuration; // second
  361. int RemainChargingDuration; // second
  362. float EvBatteryMaxVoltage; // 0~6553.5 volt
  363. float EvBatterytargetVoltage; // 0~6553.5 volt
  364. float EvBatterytargetCurrent; //102.3 0~200(A) (unit:1A)
  365. int EvBatterySoc; // 0~100%
  366. unsigned char ConnectorPlugIn; //0: unplug, 1: Plug-in
  367. unsigned char GunLocked; //0: unlocked 1: locked
  368. float PilotVoltage;
  369. unsigned char PilotState;//1:state A, 2:State B1, 3:State B2, 4:State C, 5:State D, 6:State E, 7:State F, 8: Pilot error
  370. unsigned char PilotDuty; // 0~100%
  371. unsigned char StartUserId[32]; // This ID is trigger start charging event user by RFID、back-end、BLE.
  372. unsigned char StartDateTime[32]; // Charging cycle start date time
  373. unsigned char StopDateTime[32]; // Charging cycle stop date time
  374. unsigned char StartMethod;
  375. // Connector Temp
  376. unsigned char ConnectorTemp; //0x00: -60¢XC ~ 0xFE: 194
  377. // Charging Status
  378. unsigned char GroundFaultStatus; // for GFD result => 0x00 : None, 0x01 : Can Start Charging, 0x02 : Stop Charging
  379. unsigned char RelayWeldingCheck; // 0 : No Comp., 1 : Comp.
  380. unsigned char PrechargeStatus; // for ccs precharge => 0x00 : None defined, 0x01 : Accepted
  381. float OutputEnergy; // output energy by per charging
  382. unsigned char RelayK1K2Status; // 0x00 : open, 0x01 : close
  383. unsigned char RelayKPK2Status; // 0x00 : open, 0x01 : close
  384. unsigned char TimeoutFlag; // 0 : none,
  385. struct timeval TimeoutTimer;
  386. unsigned char MaxChargeEnable;
  387. unsigned char IsReadyToCharging;
  388. unsigned char CcsAuthentication; // 0:EIM, 1:EIM & PnC mixed
  389. unsigned char AcCcsChargingMode; // 0:BC (PWM) only, 1:BC & PLC mixed
  390. unsigned short SampleChargingCur[2];
  391. };
  392. struct SysInfoData
  393. {
  394. /**************System***************/
  395. unsigned char BootingStatus; // 0 : booting, 1 : Initializing Complete.
  396. unsigned char AuthorizeFlag; // 0 : None, 1 : Authorizing
  397. unsigned char FactoryConfiguration; //0: normal, 1: trigger, charger will return the configuration to factory default if trigger
  398. float InputVoltageR; //0~655.35 volt
  399. float InputVoltageS; //0~655.35 volt
  400. float InputVoltageT; //0~655.35 volt
  401. unsigned int SystemFanRotaSpeed; //0 ~ 65535 RPM
  402. unsigned int PsuFanRotaSpeed; //0 ~ 65535 RPM
  403. unsigned char AuxPower5V; //0 ~ 255 volt
  404. unsigned char AuxPower12V; //0 ~ 255 volt
  405. unsigned char AuxPower24V; //0 ~ 255 volt
  406. unsigned char AuxPower48V; //0 ~ 255 volt
  407. unsigned char CsuHwRev[32]; //CSU board hardware version
  408. unsigned char CsuBootLoadFwRev[32]; //CSU board bootloader firmware version
  409. unsigned char CsuKernelFwRev[32];//CSU board OS kernel firmware version
  410. unsigned char CsuRootFsFwRev[32];//CSU board root file system firmware version
  411. unsigned char CsuPrimFwRev[32]; //CSU board root file system firmware version
  412. unsigned char LcmHwRev[32]; //LCM module hardware version
  413. unsigned char LcmFwRev[32]; //LCM module firmware version
  414. unsigned char PsuHwRev[32]; //PSU hardware version
  415. unsigned char PsuPrimFwRev[32]; //PSU primary firmware version
  416. unsigned char PsuSecFwRev[32]; //PSU secondary firmware version
  417. unsigned char AuxPwrHwRev[32]; //Aux. power module hardware version
  418. unsigned char AuxPwrFwRev[32]; //Aux. power module firmware version
  419. unsigned char FanModuleHwRev[32]; //Fan module hardware version
  420. unsigned char FanModuleFwRev[32]; //Fan module firmware version
  421. unsigned char RelayModuleHwRev[32]; //Relay control module hardware version
  422. unsigned char RelayModuleFwRev[32]; //Relay control module firmware version
  423. unsigned char TelcomModemFwRev[32]; //the 3G/4G modem firmware version
  424. int SystemAmbientTemp; // -40 ~ 215 degree C
  425. int SystemCriticalTemp; // -40 ~ 215 degree C
  426. int CcsConnectorTemp; // -40 ~ 215 degree C
  427. int PsuAmbientTemp; // -40 ~ 215 degree C
  428. /**************Charging***************/
  429. struct ChargingInfoData ChademoChargingData[CHAdeMO_QUANTITY];
  430. struct ChargingInfoData CcsChargingData[CCS_QUANTITY];
  431. struct ChargingInfoData GbChargingData[GB_QUANTITY];
  432. struct ChargingInfoData AcChargingData[AC_QUANTITY];
  433. unsigned char CurGunSelected;
  434. /**************Network***************/
  435. unsigned char InternetConn; //0: disconnected, 1: connected
  436. /**************Backend***************/
  437. unsigned char OcppConnStatus; //0: disconnected, 1: connected
  438. char OrderCharging;
  439. /**************Alston***************/
  440. unsigned char WaitForPlugit; //0: none scan, 1: scanning
  441. unsigned char PageIndex; //0 : Initialize
  442. //1 : idle
  443. //4 : Authorizing
  444. //5 : Authorizing complete
  445. //6 : Authorizing fail
  446. //7 : Wait for Plug
  447. //8 : Pre-charge
  448. //9 : Charging
  449. unsigned char SelfTestSeq; //
  450. unsigned char ReAssignedFlag; //
  451. unsigned char MainChargingMode; // 0 : Max, 1 : Average
  452. unsigned char BridgeRelayStatus;
  453. unsigned char FirmwareUpdate; // 0 : none, 1 : update.
  454. unsigned char AcContactorStatus; // 0: disconnected, 1: connected
  455. unsigned char SystemTimeoutFlag; // 0 : none, 1 : self test
  456. struct timeval SystemTimeoutTimer;
  457. unsigned char SystemPage;
  458. unsigned char ConnectorPage;
  459. unsigned char IsAlternatvieConf; // 0 : normal, 1 : alternative
  460. unsigned char StartToChargingFlag; // 0 : Stop, 1 : Start for modbus
  461. };
  462. struct WARNING_CODE_INFO
  463. {
  464. unsigned char WarningCount;
  465. unsigned char PageIndex;
  466. unsigned char WarningCode[10][7];
  467. unsigned char Level;
  468. unsigned char ExtraErrProcess; // 0 : none, 1 : input uvp..
  469. };
  470. struct SysConfigAndInfo
  471. {
  472. struct SysConfigData SysConfig;
  473. struct SysInfoData SysInfo;
  474. struct WARNING_CODE_INFO SysWarningInfo;
  475. };
  476. /**************************************************************************************/
  477. /**************************Alarm Share memory**************************************/
  478. /***************************************************************************************
  479. Status Code A B C D E F
  480. 0: Issue 1: From EVSE 1: Fault (unrecoverable) 001 ~ 999 serial number
  481. e.g., hardware broken, system latch
  482. 1: Recovered 2: From EV 2: Alarm (recoverable)
  483. e.g., OTP, OVP
  484. 3: From Backend 3: Information
  485. e.g., swipe card to stop charging
  486. according to XXX.Revxx
  487. ***************************************************************************************/
  488. /**************************************************************************************/
  489. char FaultStatusCode[32][6]=
  490. {
  491. "011001", //CHAdeMO output fuse blew
  492. "011002", //CCS output fuse blew
  493. "011003", //GB output fuse blew
  494. "011004", //RCD/CCID self-test fail
  495. "011005", //AC input contactor 1 welding
  496. "011006", //AC input contactor 1 driving fault
  497. "011007", //AC input contactor 2 welding
  498. "011008", //AC input contactor 2 driving fault
  499. "011009", //AC output relay welding
  500. "011010", //AC output relay driving fault
  501. "011011", //CHAdeMO output relay welding
  502. "011012", //CHAdeMO output relay driving fault
  503. "011013", //CCS output relay welding
  504. "011014", //CCS output relay driving fault
  505. "011015", //GB output relay welding
  506. "011016", //GB output relay driving fault
  507. "011017", //AC connector temperature sensor broken
  508. "011018", //CHAdeMO connector temperature sensor broken
  509. "011019", //CCS connector temperature sensor broken
  510. "011020", //GB connector temperature sensor broken
  511. "011021", //WiFi module broken
  512. "011022", //3G/4G module broken
  513. "011023", //Aux. power module broken
  514. "011024", //Relay control module /smart box broken
  515. "011025", //CHAdeMO connector lock fail
  516. "011026", //GB connector lock fail
  517. "011027", //AC connector lock fail
  518. "011028", //CHAdeMO module broken
  519. "011029", //CCS module broken
  520. "011030", //GBT module broken
  521. "011031", //PSU module broken
  522. "011032" //Reserved
  523. };
  524. struct FaultCodeData
  525. {
  526. unsigned char PreviousFaultVal[4];
  527. union
  528. {
  529. unsigned char FaultVal[4];
  530. struct
  531. {
  532. //FaultVal[0]
  533. unsigned char ChademoOutputFuseBlew:1; //bit 0
  534. unsigned char CcsOutputFuseBlew:1; //bit 1
  535. unsigned char GbOutputFuseBlew:1; //bit 2
  536. unsigned char RcdSelfTestFail:1; //bit 3
  537. unsigned char AcInputContactor1Welding:1; //bit 4
  538. unsigned char AcInputContactor1DrivingFault:1; //bit 5
  539. unsigned char AcInputContactor2Welding:1; //bit 6
  540. unsigned char AcInputContactor2DrivingFault:1; //bit 7
  541. //FaultVal[1]
  542. unsigned char AcOutputRelayWelding:1; //bit 0
  543. unsigned char AcOutputRelayDrivingFault:1; //bit 1
  544. unsigned char ChademoOutputRelayWelding:1; //bit 2
  545. unsigned char ChademoOutputRelayDrivingFault :1; //bit 3
  546. unsigned char CcsOutputRelayWelding:1; //bit 4
  547. unsigned char CcsOutputRelayDrivingFault:1; //bit 5
  548. unsigned char GbOutputRelayWelding:1; //bit 6
  549. unsigned char GbOutputRelayDrivingFault:1; //bit 7
  550. //FaultVal[2]
  551. unsigned char AcConnectorTempSensorBroken:1; //bit 0
  552. unsigned char ChademoConnectorTempSensorBroken:1; //bit 1
  553. unsigned char CcsConnectorTempSensorBroken:1; //bit 2
  554. unsigned char GbConnectorTempSensorBroken:1; //bit 3
  555. unsigned char WiFiModuleBroken:1; //bit 4
  556. unsigned char Telecom4GModuleBroken:1; //bit 5
  557. unsigned char AuxPowerModuleBroken:1; //bit 6
  558. unsigned char RelayControlModuleBroken :1; //bit 7
  559. //FaultVal[3]
  560. unsigned char ChademoConnectorLockFail:1; //bit 0
  561. unsigned char GbConnectorLockFail:1; //bit 1
  562. unsigned char AcConnectorLockFail:1; //bit 2
  563. unsigned char ChademoModuleBroken:1; //bit 3
  564. unsigned char CcsModuleBroken:1; //bit 4
  565. unsigned char GbModuleBroken:1; //bit 5
  566. unsigned char PsuModuleBroken:1; //bit 6
  567. unsigned char :1; //bit 7 reserved
  568. }bits;
  569. }FaultEvents;
  570. };
  571. char AlarmStatusCode[128][6]=
  572. {
  573. "012200", //System L1 input OVP
  574. "012201", //System L2 input OVP
  575. "012202", //System L3 input OVP
  576. "012203", //System L1 input UVP
  577. "012204", //System L2 input UVP
  578. "012205", //System L3 input UVP
  579. "012206", //PSU L1 input OVP
  580. "012207", //PSU L2 input OVP
  581. "012208", //PSU L3 input OVP
  582. "012209", //PSU L1 input UVP
  583. "012210", //PSU L2 input UVP
  584. "012211", //PSU L3 input UVP
  585. "012212", //System L1 input drop
  586. "012213", //System L2 input drop
  587. "012214", //System L3 input drop
  588. "012215", //System AC output OVP
  589. "012216", //System AC output OCP
  590. "012217", //System CHAdeMO output OVP
  591. "012218", //System CHAdeMO output OCP
  592. "012219", //System CCS output OVP
  593. "012220", //System CCS output OCP
  594. "012221", //System GB output OVP
  595. "012222", //System GB output OCP
  596. "012223", //System ambient/inlet OTP
  597. "012224", //System critical point OTP
  598. "012225", //PSU ambient/inlet OTP
  599. "012226", //PSU critical point OTP
  600. "012227", //Aux. power module OTP
  601. "012228", //Relay board/smart box OTP
  602. "012229", //CHAdeMO connector OTP
  603. "012230", //CCS connector OTP
  604. "012231", //GB connector OTP
  605. "012232", //AC connector OTP
  606. "012233", //RCD/CCID trip
  607. "012234", //CHAdeMO GFD trip
  608. "012235", //CCS GFD trip
  609. "012236", //GB GFD trip
  610. "012237", //SPD trip
  611. "012238", //Main power breaker trip
  612. "012239", //Aux. power breaker trip
  613. "012240", //PSU communication fail
  614. "012241", //WiFi module communication fail
  615. "012242", //3G/4G module communication fail
  616. "012243", //RFID module communication fail
  617. "012244", //Bluetooth module communication fail
  618. "012245", //LCM module communication fail
  619. "012246", //Aux. power module communication fail
  620. "012247", //Relay control boaed/smart box communication fail
  621. "012248", //CCS module communication fail
  622. "012249", //CHAdeMO module communication fail
  623. "012250", //GBT module communication fail
  624. "012251", //Emergency stop
  625. "012252", //Door open
  626. "012253", //System fan decay
  627. "012254", //Fail to create share memory
  628. "012255", //CSU initialization failed
  629. "012256", //AC Ground Fault
  630. "012257", //MCU self-test Fault
  631. "012258", //Relay self-test Fault
  632. "012259", //CHAdeMO groundfault detection timeout (GFD)
  633. "012260", //CCS groundfault detection timeout (GFD)
  634. "012261", //GB groundfault detection timeout (GFD)
  635. "012262", //Circuit Short
  636. "012263", // PSU Duplicate ID
  637. "012264", // PSU Output Short Circuit
  638. "012265", // PSU Discharge Abnormal
  639. "012266", // PSU Dc Side ShutDown
  640. "012267", // PSU Failure Alarm
  641. "012268", // PSU Protection Alarm
  642. "012269", // PSU FanFailure Alarm
  643. "012270", // PSU Input UVP
  644. "012271", // PSU Input OVP
  645. "012272", // PSU WalkIn State
  646. "012273", // PSU Power Limited State
  647. "012274", // PSU Id Repeat
  648. "012275", // PSU Severe Uneven Current
  649. "012276", // PSU Three Phase Input Inadequate
  650. "012277", // PSU Three Phase Onput Imbalance
  651. "012278", // PSU Ffc Side ShutDown
  652. "012279", // NO PSU Resource
  653. "012280", // Self test Failed due to communication of Relayboard failure
  654. "012281", // Self test Failed due to communication of Fanboard failure
  655. "012282", // Self test Failed due to communication of Primary failure
  656. "012283", // Self test Failed due to communication of Chademoboard failure
  657. "012284", // Self test Failed due to communication of CCSboard failure
  658. "012285", // Self test Failed due to AC Contact failure
  659. "012286", // Self test Failed due to communication of PSU failure
  660. "012287", // Self test Failed due to Model name is none match
  661. "012288", // CCS output UVP
  662. "012289", // Chademo output UVP
  663. "012290", // GBT output UVP
  664. "012291", // Self test Failed due to communication of GBTboard failure
  665. };
  666. struct AlarmCodeData
  667. {
  668. unsigned char PreviousAlarmVal[12];
  669. union
  670. {
  671. unsigned char AlarmVal[12];
  672. struct
  673. {
  674. //AlarmVal[0]
  675. unsigned char SystemL1InputOVP:1; //bit 0
  676. unsigned char SystemL2InputOVP:1; //bit 1
  677. unsigned char SystemL3InputOVP:1; //bit 2
  678. unsigned char SystemL1InputUVP:1; //bit 3
  679. unsigned char SystemL2InputUVP:1; //bit 4
  680. unsigned char SystemL3InputUVP:1; //bit 5
  681. unsigned char PsuL1InputOVP:1; //bit 6
  682. unsigned char PsuL2InputOVP:1; //bit 7
  683. //AlarmVal[1]
  684. unsigned char PsuL3InputOVP:1; //bit 0
  685. unsigned char PsuL1InputUVP:1; //bit 1
  686. unsigned char PsuL2InputUVP:1; //bit 2
  687. unsigned char PsuL3InputUVP :1; //bit 3
  688. unsigned char SystemL1InputDrop:1; //bit 4
  689. unsigned char SystemL2InputDrop:1; //bit 5
  690. unsigned char SystemL3InputDrop:1; //bit 6
  691. unsigned char SystemAcOutputOVP:1; //bit 7
  692. //AlarmVal[2]
  693. unsigned char SystemAcOutputOCP:1; //bit 0
  694. unsigned char SystemChademoOutputOVP:1; //bit 1
  695. unsigned char SystemChademoOutputOCP:1; //bit 2
  696. unsigned char SystemCcsOutputOVP:1; //bit 3
  697. unsigned char SystemCcsOutputOCP:1; //bit 4
  698. unsigned char SystemGbOutputOVP:1; //bit 5
  699. unsigned char SystemGbOutputOCP:1; //bit 6
  700. unsigned char SystemAmbientOTP :1; //bit 7
  701. //AlarmVal[3]
  702. unsigned char SystemCriticalPointOTP:1; //bit 0
  703. unsigned char PsuAmbientOTP:1; //bit 1
  704. unsigned char PsuCriticalPointOTP:1; //bit 2
  705. unsigned char AuxPowerModuleOTP:1; //bit 3
  706. unsigned char RelayBoardOTP:1; //bit 4
  707. unsigned char ChademoConnectorOTP:1; //bit 5
  708. unsigned char CcsConnectorOTP:1; //bit 6
  709. unsigned char GbConnectorOTP:1; //bit 7
  710. //AlarmVal[4]
  711. unsigned char AcConnectorOTP:1; //bit 0
  712. unsigned char RcdTrip:1; //bit 1
  713. unsigned char ChademoGfdTrip:1; //bit 2
  714. unsigned char CcsGfdTrip:1; //bit 3
  715. unsigned char GbGfdTrip:1; //bit 4
  716. unsigned char SpdTrip:1; //bit 5
  717. unsigned char MainPowerBreakerTrip:1; //bit 6
  718. unsigned char AuxPowerBreakerTrip:1; //bit 7
  719. //AlarmVal[5]
  720. unsigned char PsuCommunicationFail:1; //bit 0
  721. unsigned char WiFiModuleCommFail:1; //bit 1
  722. unsigned char Telecom4GModuleCommFail:1; //bit 2
  723. unsigned char RfidModuleCommFail:1; //bit 3
  724. unsigned char BluetoothModuleCommFail:1; //bit 4
  725. unsigned char LcmModuleCommFail:1; //bit 5
  726. unsigned char AuxPowerModuleCommFail:1; //bit 6
  727. unsigned char RelayBoardCommFail:1; //bit 7
  728. //AlarmVal[6]
  729. unsigned char CcsModuleCommFail:1; //bit 0
  730. unsigned char ChademoModuleCommFail:1; //bit 1
  731. unsigned char GbModuleCommFail:1; //bit 2
  732. unsigned char EmergencyStopTrip:1; //bit 3
  733. unsigned char DoorOpen:1; //bit 4
  734. unsigned char SystemFanDecay:1; //bit 5
  735. unsigned char FailToCreateShareMemory:1; //bit 6
  736. unsigned char CsuInitFailed:1; //bit 7
  737. //AlarmVal[7]
  738. unsigned char AcGroundfaultFail:1; //bit 0
  739. unsigned char McuSelftestFail:1; //bit 1
  740. unsigned char RelaySelftestFail:1; //bit 2
  741. unsigned char ChademoGroundfaultTimeout:1; //bit 3
  742. unsigned char CcsGroundfaultTimeout:1; //bit 4
  743. unsigned char GbGroundfaultTimeout:1; //bit 5
  744. unsigned char CircuitShort:1; //bit 6
  745. unsigned char PsuDuplicateID:1; //bit 7
  746. //AlarmVal[8]
  747. unsigned char PsuOutputShortCircuit :1; //bit 0
  748. unsigned char PsuDischargeAbnormal :1; //bit 1
  749. unsigned char PsuDcSideShutDown :1; //bit 2
  750. unsigned char PsuFailureAlarm :1; //bit 3
  751. unsigned char PsuProtectionAlarm :1; //bit 4
  752. unsigned char PsuFanFailureAlarm :1; //bit 5
  753. unsigned char PsuInputUVP:1; //bit 6
  754. unsigned char PsuInputOVP:1; //bit 7
  755. //AlarmVal[9]
  756. unsigned char PsuWalkInState :1; //bit 0
  757. unsigned char PsuPowerLimitedState :1; //bit 1
  758. unsigned char PsuIdRepeat :1; //bit 2
  759. unsigned char PsuSevereUnevenCurrent :1; //bit 3
  760. unsigned char PsuThreePhaseInputInadequate :1; //bit 4
  761. unsigned char PsuThreePhaseOnputImbalance :1; //bit 5
  762. unsigned char PsuFfcSideShutDown :1; //bit 6
  763. unsigned char PsuNoResource:1;
  764. //AlarmVal[10]
  765. unsigned char RelayboardStestFail :1; //bit 0
  766. unsigned char FanboardStestFail :1; //bit 1
  767. unsigned char PrimaryStestFail :1; //bit 2
  768. unsigned char ChademoboardStestFail :1; //bit 3
  769. unsigned char CCSboardStestFail :1; //bit 4
  770. unsigned char AcContactStestFail :1; //bit 5
  771. unsigned char PsuModuleStestFail :1; //bit 6
  772. unsigned char ModelNameNoneMatchStestFail:1; //bit 7
  773. //AlarmVal[11]
  774. unsigned char CcsOutputUVPFail :1; //bit 0
  775. unsigned char ChademoOutputUVPFail :1; //bit 1
  776. unsigned char GbtOutputUVPFail :1; //bit 2
  777. unsigned char GbtboardStestFail :1; //bit 3
  778. unsigned char :4; //bit 4 ~ 7
  779. }bits;
  780. }AlarmEvents;
  781. };
  782. char InfoStatusCode[384][6]=
  783. {
  784. //Information comes from EVSE
  785. "013600", //Normal stop charging by user
  786. "013601", //Charging Time's up
  787. "013602", //Replace system air filter
  788. "013603", //Reach to CHAdeMO max. plugging times.
  789. "013604", //Reach to CCS max. plugging times.
  790. "013605", //Reach to GB max. plugging times.
  791. "013606", //Reach to AC max. plugging times.
  792. "013607", //CSU fimrware update fail
  793. "013608", //CHAdeMO Module fimrware update fail
  794. "013609", //CCS Module fimrware update fail
  795. "013610", //GB Module fimrware update fail
  796. "013611", //Aux. power module fimrware update fail
  797. "013612", //Relay control module fimrware update fail
  798. "013613", //LCM module fimrware update fail
  799. "013614", //Bluetooth module fimrware update fail
  800. "013615", //WiFi module fimrware update fail
  801. "013616", //3G/4G module fimrware update fail
  802. "013617", //SMR fimrware update fail
  803. "013618", //RFID module fimrware update fail
  804. "013619", //configured by USB flash drive
  805. "013620", //configured by backend
  806. "013621", //configured by webpage
  807. "013622", //disconnected from Internet through Ethernet
  808. "013623", //disconnected from Internet through WiFi
  809. "013624", //disconnected from Internet through 3G/4G
  810. "013625", //disconnected from AP through WiFi
  811. "013626", //disconnected from APN through 3G/4G
  812. "013627", //Reserved
  813. "013628", //Reserved
  814. "013629", //Reserved
  815. "013630", //Reserved
  816. "013631", //Reserved
  817. //Information comes from EV
  818. "023700", //CHAdeMO EV communication Fail
  819. "023701", //CCS EV communication Fail
  820. "023702", //GB EV communication Fail
  821. "023703", //AC: pilot fault
  822. "023704", //CHAdeMO: battery malfunction
  823. "023705", //CHAdeMO: no charging permission
  824. "023706", //CHAdeMO: battery incompatibility
  825. "023707", //CHAdeMO: battery OVP
  826. "023708", //CHAdeMO: battery UVP
  827. "023709", //CHAdeMO: battery OTP
  828. "023710", //CHAdeMO: battery current difference
  829. "023711", //CHAdeMO: battery voltage difference
  830. "023712", //CHAdeMO: shift position
  831. "023713", //CHAdeMO: battery other fault
  832. "023714", //CHAdeMO: charging system error
  833. "023715", //CHAdeMO: EV normal stop
  834. "023716", //CHAdeMO: connector temperature sensor broken
  835. "023717", //CHAdeMO: connector lock fail
  836. "023718", //CHAdeMO: D1 ON No Receive
  837. "023719", //CHAdeMO: BMS K to J Timeout
  838. "023720", //CHAdeMO: BMS Charge Allow Timeout
  839. "023721", //CHAdeMO: Wait GroundFault Timeout
  840. "023722", //CHAdeMO: BMS EV Relay Timeout
  841. "023723", //CHAdeMO: BMS Request Current Timeout
  842. "023724", //CHAdeMO: BMS K to J OFF Timeout
  843. "023725", //CHAdeMO: BMS EV Relay OFF Timeout
  844. "023726", //CHAdeMO: ADC More Than 10V
  845. "023727", //CHAdeMO: ADC More Than 20V
  846. "023728", //CHAdeMO: BMS Charge Before Stop
  847. "023729", //CHAdeMO: Charger Get Normal Stop
  848. "023730", //CHAdeMO: Charger Get Emergency Stop
  849. "023731", //CHAdeMO: Isolation Result Fail
  850. "023732", //CHAdeMO: Miss Link With MotherBoard
  851. "023733", //CHAdeMO: Output Voltage More Than Limit
  852. "023734", //CHAdeMO: Request Current More Than Limit
  853. "023735", //CHAdeMO: Re Cap BMS Eqr Current Exceed
  854. "023736", //CHAdeMO: Charge Remain Count Down
  855. "023737", //CCS:CCS_EVCC_EVErrorCode_FAILED_RESSTemperatureInhibit
  856. "023738", //CCS:CCS_EVCC_EVErrorCode_FAILED_EVShiftPosition
  857. "023739", //CCS:CCS_EVCC_EVErrorCode_FAILED_ChargerConnectorLockFault
  858. "023740", //CCS:CCS_EVCC_EVErrorCode_FAILED_EVRESSMalfunction
  859. "023741", //CCS:CCS_EVCC_EVErrorCode_FAILED_ChargingCurrentdifferential
  860. "023742", //CCS:CCS_EVCC_EVErrorCode_FAILED_ChargingVoltageOutOfRange
  861. "023743", //CCS:CCS_EVCC_EVErrorCode_FAILED_ChargingSystemIncompatibility
  862. "023744", //CCS:CCS_EVCC_EVErrorCode_FAILED_EmergencyEvent
  863. "023745", //CCS:CCS_EVCC_EVErrorCode_FAILED_Breaker
  864. "023746", //CCS:CCS_EVCC_EVErrorCode_FAILED_NoData
  865. "023747", //CCS:CCS_EVCC_EVErrorCode_FAILED_reserved_by_DIN_A
  866. "023748", //CCS:CCS_EVCC_EVErrorCode_FAILED_reserved_by_DIN_B
  867. "023749", //CCS:CCS_EVCC_EVErrorCode_FAILED_reserved_by_DIN_C
  868. "023750", //CCS:CCS_EVCC_EVErrorCode_FAILED_reserved_by_ISO_1
  869. "023751", //CCS:CCS_EVCC_EVErrorCode_FAILED_reserved_by_ISO_2
  870. "023752", //CCS:CCS_EVCC_EVErrorCode_FAILED_reserved_by_ISO_3
  871. "023753", //CCS:CCS_EVCC_EVErrorCode_FAILED_reserved_by_OEM_1
  872. "023754", //CCS:CCS_EVCC_EVErrorCode_FAILED_reserved_by_OEM_2
  873. "023755", //CCS:CCS_EVCC_EVErrorCode_FAILED_reserved_by_OEM_3
  874. "023756", //CCS:CCS_EVCC_EVErrorCode_FAILED_reserved_by_OEM_4
  875. "023757", //CCS:CCS_EVCC_EVErrorCode_FAILED_reserved_by_OEM_5
  876. "023758", //CCS:CCS_SECC_ResponseCode_FAILED_SequenceError
  877. "023759", //CCS:CCS_SECC_ResponseCode_FAILED_SignatureError
  878. "023760", //CCS:CCS_SECC_ResponseCode_FAILED_UnknownSession
  879. "023761", //CCS:CCS_SECC_ResponseCode_FAILED_ServiceIDInvalid
  880. "023762", //CCS:CCS_SECC_ResponseCode_FAILED_Payment SelectionInvalid
  881. "023763", //CCS:CCS_SECC_ResponseCode_FAILED_IdentificationSelectionInvalid
  882. "023764", //CCS:CCS_SECC_ResponseCode_FAILED_ServiceSelectionInvalid
  883. "023765", //CCS:CCS_SECC_ResponseCode_FAILED_CertificateExpired
  884. "023766", //CCS:CCS_SECC_ResponseCode_FAILED_CertificateNotYetValid
  885. "023767", //CCS:CCS_SECC_ResponseCode_FAILED_CertificateRevoked
  886. "023768", //CCS:CCS_SECC_ResponseCode_FAILED_NoCertificateAvailable
  887. "023769", //CCS:CCS_SECC_ResponseCode_FAILED_CertChainError
  888. "023770", //CCS:CCS_SECC_ResponseCode_FAILED_CertValidationError
  889. "023771", //CCS:CCS_SECC_ResponseCode_FAILED_CertVerificationError
  890. "023772", //CCS:CCS_SECC_ResponseCode_FAILED_ContractCanceled
  891. "023773", //CCS:CCS_SECC_ResponseCode_FAILED_ChallengeInvalid
  892. "023774", //CCS:CCS_SECC_ResponseCode_FAILED_WrongEnergyTransferMode
  893. "023775", //CCS:CCS_SECC_ResponseCode_FAILED_WrongChargeParameter
  894. "023776", //CCS:CCS_SECC_ResponseCode_FAILED_ChargingProfileInvalid
  895. "023777", //CCS:CCS_SECC_ResponseCode_FAILED_TariffSelectionInvalid
  896. "023778", //CCS:CCS_SECC_ResponseCode_FAILED_EVSEPresentVoltageToLow
  897. "023779", //CCS:CCS_SECC_ResponseCode_FAILED_PowerDeliveryNotApplied
  898. "023780", //CCS:CCS_SECC_ResponseCode_FAILED_MeteringSignatureNotValid
  899. "023781", //CCS:CCS_SECC_ResponseCode_FAILED_NoChargeServiceSelected
  900. "023782", //CCS:CCS_SECC_ResponseCode_FAILED_ContactorError
  901. "023783", //CCS:CCS_SECC_ResponseCode_FAILED_CertificateNotAllowedAtThisEVSE
  902. "023784", //CCS:CCS_SECC_ResponseCode_FAILED_GAChargeStop
  903. "023785", //CCS:CCS_SECC_ResponseCode_FAILED_AlignmentError
  904. "023786", //CCS:CCS_SECC_ResponseCode_FAILED_ACDError
  905. "023787", //CCS:CCS_SECC_ResponseCode_FAILED_AssociationError
  906. "023788", //CCS:CCS_SECC_ResponseCode_FAILED_EVSEChargeAbort
  907. "023789", //CCS:CCS_SECC_ResponseCode_FAILED_NoSupportedApp-Protocol-Protocol
  908. "023790", //CCS:CCS_SECC_ResponseCode_FAILED_ContractNotAccepted
  909. "023791", //CCS:CCS_SECC_ResponseCode_FAILED_MOUnknown
  910. "023792", //CCS:CCS_SECC_ResponseCode_FAILED_OEM_Prov_CertificateRevoke
  911. "023793", //CCS:CCS_SECC_ResponseCode_FAILED_OEM_SubCA1_CertificateRevoked
  912. "023794", //CCS:CCS_SECC_ResponseCode_FAILED_OEM_SubCA2_CertificateRevoked
  913. "023795", //CCS:CCS_SECC_ResponseCode_FAILED_OEM_RootCA_CertificateRevoked
  914. "023796", //CCS:CCS_SECC_ResponseCode_FAILED_MO_Prov_CertificateRevoked
  915. "023797", //CCS:CCS_SECC_ResponseCode_FAILED_MO_SubCA1_CertificateRevoked
  916. "023798", //CCS:CCS_SECC_ResponseCode_FAILED_MO_SubCA2_CertificateRevoked
  917. "023799", //CCS:CCS_SECC_ResponseCode_FAILED_MO_RootCA_CertificateRevoked
  918. "023800", //CCS:CCS_SECC_ResponseCode_FAILED_CPS_Prov_CertificateRevoked
  919. "023801", //CCS:CCS_SECC_ResponseCode_FAILED_CPS_SubCA1_CertificateRevoked
  920. "023802", //CCS:CCS_SECC_ResponseCode_FAILED_CPS_SubCA2_CertificateRevoked
  921. "023803", //CCS:CCS_SECC_ResponseCode_FAILED_CPS_RootCA_CertificateRevoked
  922. "023804", //CCS:CCS_SECC_ResponseCode_FAILED_reserved_1
  923. "023805", //CCS:CCS_SECC_ResponseCode_FAILED_reserved_2
  924. "023806", //CCS:CCS_SECC_ResponseCode_FAILED_reserved_3
  925. "023807", //CCS:CCS_SECC_ResponseCode_FAILED_reserved_4
  926. "023808", //CCS:CCS_SECC_ResponseCode_FAILED_reserved_5
  927. "023809", //CCS:CCS_SECC_TIMEOUT_SLAC_TT_EVSE_SLAC_init
  928. "023810", //CCS:CCS_SECC_TIMEOUT_SLAC_TP_match_response
  929. "023811", //CCS:CCS_SECC_TIMEOUT_SLAC_TT_match_sequence
  930. "023812", //CCS:CCS_SECC_TIMEOUT_SLAC_TT_EVSE_match_MNBC
  931. "023813", //CCS:CCS_SECC_TIMEOUT_SLAC_TP_EVSE_avg_atten_calc
  932. "023814", //CCS:CCS_SECC_TIMEOUT_SLAC_TT_match_response
  933. "023815", //CCS:CCS_SECC_TIMEOUT_SLAC_TP_EVSE_match_session
  934. "023816", //CCS:CCS_SECC_TIMEOUT_SLAC_TT_EVSE_assoc_session
  935. "023817", //CCS:CCS_SECC_TIMEOUT_SLAC_TT_EVSE_vald_toggle
  936. "023818", //CCS:CCS_SECC_TIMEOUT_SLAC_reserved_1
  937. "023819", //CCS:CCS_SECC_TIMEOUT_SLAC_reserved_2
  938. "023820", //CCS:CCS_SECC_TIMEOUT_SLAC_reserved_3
  939. "023821", //CCS:CCS_SECC_TIMEOUT_SLAC_reserved_4
  940. "023822", //CCS:CCS_SECC_TIMEOUT_SLAC_reserved_5
  941. "023823", //CCS:CCS_SECC_TIMEOUT_SLACC_SDP_UDP_TT_match_join
  942. "023824", //CCS:CCS_SECC_TIMEOUT_SLACC_SDP_TCP_TT_match_join
  943. "023825", //CCS:CCS_SECC_TIMEOUT_SLACC_SDP_TP_amp_map_exchange
  944. "023826", //CCS:CCS_SECC_TIMEOUT_SLACC_SDP_TP_link_ready_notification
  945. "023827", //CCS:CCS_SECC_TIMEOUT_SLACC_SDP_reserved_1
  946. "023828", //CCS:CCS_SECC_TIMEOUT_SLACC_SDP_reserved_2
  947. "023829", //CCS:CCS_SECC_TIMEOUT_SLACC_SDP_reserved_3
  948. "023830", //CCS:CCS_SECC_TIMEOUT_SLACC_SDP_reserved_4
  949. "023831", //CCS:CCS_SECC_TIMEOUT_SLACC_SDP_reserved_5
  950. "023832", //CCS:CCS_SECC_TIMEOUT_V2G_Msg_Performance_Time_SupportedAppProtocolRes
  951. "023833", //CCS:CCS_SECC_TIMEOUT_V2G_Msg_Performance_Time_SessionSetupRes
  952. "023834", //CCS:CCS_SECC_TIMEOUT_V2G_Msg_Performance_Time_ServiceDiscoveryRes
  953. "023835", //CCS:CCS_SECC_TIMEOUT_V2G_Msg_Performance_Time_ServicePaymentSelectionRes
  954. "023836", //CCS:CCS_SECC_TIMEOUT_V2G_Msg_Performance_Time_ContractAuthenticationRes
  955. "023837", //CCS:CCS_SECC_TIMEOUT_V2G_Msg_Performance_Time_ChargeParameterDiscoveryRes
  956. "023838", //CCS:CCS_SECC_TIMEOUT_V2G_Msg_Performance_Time_PowerDeliveryRes
  957. "023839", //CCS:CCS_SECC_TIMEOUT_V2G_Msg_Performance_Time_CableCheckRes
  958. "023840", //CCS:CCS_SECC_TIMEOUT_V2G_Msg_Performance_Time_PreChargeRes
  959. "023841", //CCS:CCS_SECC_TIMEOUT_V2G_Msg_Performance_Time_CurrentDemandRes
  960. "023842", //CCS:CCS_SECC_TIMEOUT_V2G_Msg_Performance_Time_WeldingDetectionRes
  961. "023843", //CCS:CCS_SECC_TIMEOUT_V2G_Msg_Performance_Time_SessionStopRes
  962. "023844", //CCS:CCS_SECC_TIMEOUT_V2G_Sequence_Time
  963. "023845", //CCS:CCS_SECC_TIMEOUT_V2G_ReadyToCharge_Performance_Time
  964. "023846", //CCS:CCS_SECC_TIMEOUT_V2G_CommunicationSetup_Performance_Time
  965. "023847", //CCS:CCS_SECC_TIMEOUT_V2G_CableCheck_Performance_Time
  966. "023848", //CCS:CCS_SECC_TIMEOUT_V2G_CPState_Detection_Time
  967. "023849", //CCS:CCS_SECC_TIMEOUT_V2G_CPOscillator_Retain_Time
  968. "023850", //CCS:CCS_SECC_TIMEOUT_V2G_reserved_1
  969. "023851", //CCS:CCS_SECC_TIMEOUT_V2G_reserved_2
  970. "023852", //CCS:CCS_SECC_TIMEOUT_V2G_reserved_3
  971. "023853", //CCS:CCS_SECC_TIMEOUT_V2G_reserved_4
  972. "023854", //CCS:CCS_SECC_TIMEOUT_V2G_reserved_5
  973. "023855", //CCS:CCS_CAN_TIMEOUT_TP_GET_EV_TARGET_INFO
  974. "023856", //CCS:CCS_CAN_TIMEOUT_TT_GET_EV_TARGET_INFO
  975. "023857", //CCS:CCS_CAN_TIMEOUT_TP_GET_EV_BATTERY_INFO
  976. "023858", //CCS:CCS_CAN_TIMEOUT_TT_GET_EV_BATTERY_INFO
  977. "023859", //CCS:CCS_CAN_TIMEOUT_TP_EV_STOP_EVENT
  978. "023860", //CCS:CCS_CAN_TIMEOUT_TT_EV_STOP_EVENT
  979. "023861", //CCS:CCS_CAN_TIMEOUT_TP_EVSE_STOP_EVENT
  980. "023862", //CCS:CCS_CAN_TIMEOUT_TT_EVSE_STOP_EVENT
  981. "023863", //CCS:CCS_CAN_TIMEOUT_TP_GET_MISC_INFO
  982. "023864", //CCS:CCS_CAN_TIMEOUT_TT_GET_MISC_INFO
  983. "023865", //CCS:CCS_CAN_TIMEOUT_TP_DOWNLOAD_REQUEST
  984. "023866", //CCS:CCS_CAN_TIMEOUT_TT_DOWNLOAD_REQUEST
  985. "023867", //CCS:CCS_CAN_TIMEOUT_TP_START_BLOCK_TRANSFER
  986. "023868", //CCS:CCS_CAN_TIMEOUT_TT_START_BLOCK_TRANSFER
  987. "023869", //CCS:CCS_CAN_TIMEOUT_TP_DATA_TRANSFER
  988. "023870", //CCS:CCS_CAN_TIMEOUT_TT_DATA_TRANSFER
  989. "023871", //CCS:CCS_CAN_TIMEOUT_TP_DOWNLOAD_FINISH
  990. "023872", //CCS:CCS_CAN_TIMEOUT_TT_DOWNLOAD_FINISH
  991. "023873", //CCS:CCS_CAN_TIMEOUT_TP_ISOLATION_STATUS
  992. "023874", //CCS:CCS_CAN_TIMEOUT_TT_ISOLATION_STATUS
  993. "023875", //CCS:CCS_CAN_TIMEOUT_TP_CONNECTOR_INFO
  994. "023876", //CCS:CCS_CAN_TIMEOUT_TT_CONNECTOR_INFO
  995. "023877", //CCS:CCS_CAN_TIMEOUT_TT_RTC_INFO
  996. "023878", //CCS:CCS_CAN_TIMEOUT_TP_RTC_INFO
  997. "023879", //CCS:CCS_CAN_TIMEOUT_TP_EVSE_PRECHARGE_INFO
  998. "023880", //CCS:CCS_CAN_TIMEOUT_TT_EVSE_PRECHARGE_INFO
  999. "023881", //CCS:CCS_CAN_TIMEOUT_MSG_Sequence
  1000. "023882", //CCS:CCS_CAN_MSG_Unrecognized_CMD_ID
  1001. "023883", //CCS:CCS_SECC_DIN_Msg_Decode_Error
  1002. "023884", //CCS:CCS_SECC_DIN_Msg_Encode_Error
  1003. "023885", //CCS:CCS_SECC_ISO1_Msg_Decode_Error
  1004. "023886", //CCS:CCS_SECC_ISO1_Msg_Encode_Error
  1005. "023887", //CCS:CCS_SECC_ISO2_Msg_Decode_Error
  1006. "023888", //CCS:CCS_SECC_ISO2_Msg_Encode_Error
  1007. "023889", //CCS:CCS_SECC_CP_STATUS_Error
  1008. "023890", //Reserved
  1009. "023891", //Reserved
  1010. "023892", //Reserved
  1011. "023893", //Reserved
  1012. "023894", //Reserved
  1013. "023895", //Reserved
  1014. "023896", //Reserved
  1015. "023897", //Reserved
  1016. "023898", //Reserved
  1017. "023899", //Reserved
  1018. "023900", //GBT: ERROR_CODE_GBT_LOS_CC1
  1019. "023901", //GBT: ERROR_CODE_GBT_CONNECTOR_LOCK_FAIL
  1020. "023902", //GBT: ERROR_CODE_GBT_BATTERY_INCOMPATIBLE
  1021. "023903", //GBT: ERROR_CODE_GBT_BMS_BROAA_TIMEOUT
  1022. "023904", //GBT: ERROR_CODE_GBT_CSU_PRECHARGE_TIMEOUT
  1023. "023905", //GBT: ERROR_CODE_GBT_BMS_PRESENT_VOLTAGE_FAULT
  1024. "023906", //GBT: ERROR_CODE_GBT_BMS_VOLTAGE_OVER_RANGE
  1025. "023907", //GBT: ERROR_CODE_GBT_BSM_CHARGE_ALLOW_00_10MIN_COUUNTDONE
  1026. "023908", //GBT: ERROR_CODE_GBT_WAIT_GROUNDFAULT_TIMEOUT
  1027. "023909", //GBT: ERROR_CODE_GBT_ADC_MORE_THAN_10V
  1028. "023910", //GBT: ERROR_CODE_GBT_ADC_MORE_THAN_60V
  1029. "023911", //GBT: ERROR_CODE_GBT_CHARGER_GET_NORMAL_STOP_CMD
  1030. "023912", //GBT: ERROR_CODE_GBT_CHARGER_GET_EMERGENCY_STOP_CMD
  1031. "023913", //GBT: ERROR_CODE_GBT_ISOLATION_RESULT_FAIL
  1032. "023914", //GBT: ERROR_CODE_GBT_MOTHER_BOARD_MISS_LINK
  1033. "023915", //GBT: ERROR_CODE_GBT_OUTPUT_VOLTAGE_MORE_THAN_LIMIT
  1034. "023916", //GBT: ERROR_CODE_GBT_REQ_CURRENT_MORE_THAN_LIMIT
  1035. "023917", //GBT: ERROR_CODE_GBT_OUTPUT_VOLTAGE_MORE_THAN_10_PERCENT
  1036. "023918", //GBT: ERROR_CODE_GBT_OUTPUT_VOLTAGE_DIFF_BCS_5_PERCENT
  1037. "023919", //GBT: ERROR_CODE_GBT_STOP_ADC_MORE_THAN_10V
  1038. "023920", // Reserved
  1039. "023921", // Reserved
  1040. "023922", // Reserved
  1041. "023923", // Reserved
  1042. "023924", // Reserved
  1043. "023925", // Reserved
  1044. "023926", // Reserved
  1045. "023927", // Reserved
  1046. "023928", // Reserved
  1047. "023929", // Reserved
  1048. "023930", //GBT: ERROR_CODE_CEM_BHM_TIMEOUT
  1049. "023931", //GBT: ERROR_CODE_CEM_BRM_TIMEOUT
  1050. "023932", //GBT: ERROR_CODE_CEM_BCP_TIMEOUT
  1051. "023933", //GBT: ERROR_CODE_CEM_BRO_TIMEOUT
  1052. "023934", //GBT: ERROR_CODE_CEM_BCL_TIMEOUT
  1053. "023935", //GBT: ERROR_CODE_CEM_BCS_TIMEOUT
  1054. "023936", //GBT: ERROR_CODE_CEM_BSM_TIMEOUT
  1055. "023937", //GBT: ERROR_CODE_CEM_BST_TIMEOUT
  1056. "023938", //GBT: ERROR_CODE_CEM_BSD_TIMEOUT
  1057. "023939", //GBT: ERROR_CODE_CEM_BEM_OTHER_TIMEOUT
  1058. "023940", //GBT: ERROR_CODE_BEM_CRM_TIMEOUT
  1059. "023941", //GBT: ERROR_CODE_BEM_CRMAA_TIMEOUT
  1060. "023942", //GBT: ERROR_CODE_BEM_CTS_CML_TIMEOUT
  1061. "023943", //GBT: ERROR_CODE_BEM_CRO_TIMEOUT
  1062. "023944", //GBT: ERROR_CODE_BEM_CCS_TIMEOUT
  1063. "023945", //GBT: ERROR_CODE_BEM_CST_TIMEOUT
  1064. "023946", //GBT: ERROR_CODE_BEM_CSD_TIMEOUT
  1065. "023947", //GBT: ERROR_CODE_BEM_BEM_OTHER_TIMEOUT
  1066. "023948", // Reserved
  1067. "023949", // Reserved
  1068. "023950", //GBT: ERROR_CODE_BST_SOC_GOAL
  1069. "023951", //GBT: ERROR_CODE_BST_TOTAL_VOLTAGE_GOAL
  1070. "023952", //GBT: ERROR_CODE_BST_CELL_VOLTAGE_GOAL
  1071. "023953", //GBT: ERROR_CODE_BST_GET_CST
  1072. "023954", //GBT: ERROR_CODE_BST_ISOLATION
  1073. "023955", //GBT: ERROR_CODE_BST_OUTPUT_CONNECTOR_OTP
  1074. "023956", //GBT: ERROR_CODE_BST_COMPONENT
  1075. "023957", //GBT: ERROR_CODE_BST_CHARGE_CONNECTOR
  1076. "023958", //GBT: ERROR_CODE_BST_OTP
  1077. "023959", //GBT: ERROR_CODE_BST_OTHER
  1078. "023960", //GBT: ERROR_CODE_BST_HIGH_V
  1079. "023961", //GBT: ERROR_CODE_BST_CC2
  1080. "023962", //GBT: ERROR_CODE_BST_CURRENT
  1081. "023963", //GBT: ERROR_CODE_BST_VOLTAGE
  1082. "023964", //GBT: ERROR_CODE_GET_BST_NO_REASON
  1083. "023965", // Reserved
  1084. "023966", // Reserved
  1085. "023967", // Reserved
  1086. "023968", // Reserved
  1087. "023969", // Reserved
  1088. "023970", //GBT: ERROR_CODE_BSM_CELL_OVER_VOLTAGE
  1089. "023971", //GBT: ERROR_CODE_BSM_CELL_UNDER_VOLTAGE
  1090. "023972", //GBT: ERROR_CODE_BSM_OVER_SOC
  1091. "023973", //GBT: ERROR_CODE_BSM_UNDER_SOC
  1092. "023974", //GBT: ERROR_CODE_BSM_CURRENT
  1093. "023975", //GBT: ERROR_CODE_BSM_TEMPERATURE
  1094. "023976", //GBT: ERROR_CODE_BSM_ISOLATE
  1095. "023977", //GBT: ERROR_CODE_BSM_OUTPUT_CONNECTOR
  1096. "023978", // Reserved
  1097. "023979", // Reserved
  1098. "033900", //disconnected from backend through Ethernet
  1099. "033901", //disconnected from backend through WiFi
  1100. "033902", //disconnected from backend through 3G/4G
  1101. "033903", //Remote start charging by backend
  1102. "033904", //Remote stop charging by backend
  1103. "033905", //Remote reset by backend
  1104. "033906", //Reserved
  1105. "033907", //Reserved
  1106. };
  1107. struct InfoCodeData
  1108. {
  1109. unsigned char PreviousInfoVal[40];
  1110. union
  1111. {
  1112. unsigned char InfoVal[40];
  1113. struct
  1114. {
  1115. //InfoVal[0]
  1116. unsigned char NormalStopChargingByUser:1; //bit 0
  1117. unsigned char ChargingTimesUp:1; //bit 1
  1118. unsigned char ReplaceSystemAirFilter:1; //bit 2
  1119. unsigned char ReachChademoMaxPluggingTimes:1; //bit 3
  1120. unsigned char ReachCcsMaxPluggingTimes:1; //bit 4
  1121. unsigned char ReachGbMaxPluggingTimes:1; //bit 5
  1122. unsigned char ReachAcMaxPluggingTimes:1; //bit 6
  1123. unsigned char CsuFimrwareUpdateFail:1; //bit 7
  1124. //InfoVal[1]
  1125. unsigned char ChademoModuleFimrwareUpdateFail:1; //bit 0
  1126. unsigned char CcsModuleFimrwareUpdateFail:1; //bit 1
  1127. unsigned char GbModuleFimrwareUpdateFail:1; //bit 2
  1128. unsigned char AuxPowerModuleFimrwareUpdateFail:1; //bit 3
  1129. unsigned char RelayBoardFimrwareUpdateFail:1; //bit 4
  1130. unsigned char LcmModuleFimrwareUpdateFail:1; //bit 5
  1131. unsigned char BluetoothModuleFimrwareUpdateFail:1; //bit 6
  1132. unsigned char WiFiModuleFimrwareUpdateFail:1; //bit 7
  1133. //InfoVal[2]
  1134. unsigned char Telocom4GModuleFimrwareUpdateFail:1; //bit 0
  1135. unsigned char PsuFimrwareUpdateFail:1; //bit 1
  1136. unsigned char RfidModuleFimrwareUpdateFail:1; //bit 2
  1137. unsigned char ConfiguredByUsbFlashDrive:1; //bit 3
  1138. unsigned char ConfiguredByBackend:1; //bit 4
  1139. unsigned char ConfiguredByWebpage:1; //bit 5
  1140. unsigned char InternetDisconnectViaEthernet:1; //bit 6
  1141. unsigned char InternetDisconnectViaWiFi :1; //bit 7
  1142. //InfoVal[3]
  1143. unsigned char InternetDisconnectVia4Gi:1; //bit 0
  1144. unsigned char ApDisconnectViaWiFi:1; //bit 1
  1145. unsigned char ApnDisconnectVia4Gi:1; //bit 2
  1146. unsigned char :5; //bit 3~7 reserved
  1147. //InfoVal[4]
  1148. unsigned char ChademoEvCommFail:1; //bit 0
  1149. unsigned char CcsEvCommFail:1; //bit 1
  1150. unsigned char GbEvCommFail:1; //bit 2
  1151. unsigned char PilotFault:1; //bit 3
  1152. unsigned char ChademoBatteryMalfun:1; //bit 4
  1153. unsigned char ChademoNoPermission:1; //bit 5
  1154. unsigned char ChademoBatteryIncompatibility:1; //bit 6
  1155. unsigned char ChademoBatteryOVP:1; //bit 7
  1156. //InfoVal[5]
  1157. unsigned char ChademoBatteryUVP:1; //bit 0
  1158. unsigned char ChademoBatteryOTP:1; //bit 1
  1159. unsigned char ChademoBatteryCurrentDiff:1; //bit 2
  1160. unsigned char ChademoBatteryVoltageDiff:1; //bit 3
  1161. unsigned char ChademoShiftPosition:1; //bit 4
  1162. unsigned char ChademoBatteryOtherFault:1; //bit 5
  1163. unsigned char ChademoChargingSystemError:1; //bit 6
  1164. unsigned char ChademoEvNormalStop:1; //bit 7
  1165. //InfoVal[6]
  1166. unsigned char ChademoTempSensorBroken:1; //bit 0
  1167. unsigned char ChademoConnectorLockFail:1; //bit 1
  1168. unsigned char ChademoD1OnNoReceive:1; //bit 2
  1169. unsigned char ChademoBmsKtoJTimeout:1; //bit 3
  1170. unsigned char ChademoBmsChargeAllowTimeout:1; //bit 4
  1171. unsigned char ChademoWaitGfdTimeout:1; //bit 5
  1172. unsigned char ChademoBmsEvRelayTimeout:1; //bit 6
  1173. unsigned char ChademoBmsReqCurrentTimeout:1; //bit 7
  1174. //InfoVal[7]
  1175. unsigned char ChademoBmsKtoJOffTimeout :1; //bit 0
  1176. unsigned char ChademoBmsEvRelayOffTimeout :1; //bit 1
  1177. unsigned char ChademoAdcMoreThan10V :1; //bit 2
  1178. unsigned char ChademoAdcMoreThan20V :1; //bit 3
  1179. unsigned char ChademoBmsChargeBeforeStop :1; //bit 4
  1180. unsigned char ChademoChargerGetNormalStop :1; //bit 5
  1181. unsigned char ChademoChargerGetEmergencyStop :1; //bit 6
  1182. unsigned char ChademoIsolationResultFail :1; //bit 7
  1183. //InfoVal[8]
  1184. unsigned char ChademoMissLinkWithMotherBoard :1; //bit 0
  1185. unsigned char ChademoOutputVolMoreThanLimit :1; //bit 1
  1186. unsigned char ChademoReqCurrentMoreThanLimit :1; //bit 2
  1187. unsigned char ChademoReCapBmsEqrCurrentExceed :1; //bit 3
  1188. unsigned char ChademoChargeRemainCountDown :1; //bit 4
  1189. unsigned char CcsRESTemperatureInhibit:1; //bit 5
  1190. unsigned char CcsEVShiftPosition:1; //bit 6
  1191. unsigned char CcsChargerConnectorLockFault:1; //bit 7
  1192. //InfoVal[9]
  1193. unsigned char CcsEVRESSMalfunction:1; //bit 0
  1194. unsigned char CcsChargingCurrentdifferential:1; //bit 1
  1195. unsigned char CcsChargingVoltageOutOfRange:1; //bit 2
  1196. unsigned char CcsChargingSystemIncompatibility:1; //bit 3
  1197. unsigned char CcsEmergencyEvent:1; //bit 4
  1198. unsigned char CcsBreaker:1; //bit 5
  1199. unsigned char CcsNoData:1; //bit 6
  1200. unsigned char Ccsreserved_by_DIN_A:1; //bit 7
  1201. //InfoVal[10]
  1202. unsigned char Ccsreserved_by_DIN_B:1; //bit 0
  1203. unsigned char Ccsreserved_by_DIN_C:1; //bit 1
  1204. unsigned char Ccsreserved_by_ISO_1:1; //bit 2
  1205. unsigned char Ccsreserved_by_ISO_2:1; //bit 3
  1206. unsigned char Ccsreserved_by_ISO_3:1; //bit 4
  1207. unsigned char Ccsreserved_by_OEM_1:1; //bit 5
  1208. unsigned char Ccsreserved_by_OEM_2:1; //bit 6
  1209. unsigned char Ccsreserved_by_OEM_3:1; //bit 7
  1210. //InfoVal[11]
  1211. unsigned char Ccsreserved_by_OEM_4:1; //bit 0
  1212. unsigned char Ccsreserved_by_OEM_5:1; //bit 1
  1213. unsigned char CcsSequenceError:1; //bit 2
  1214. unsigned char CcsSignatureError:1; //bit 3
  1215. unsigned char CcsUnknownSession:1; //bit 4
  1216. unsigned char CcsServiceIDInvalid:1; //bit 5
  1217. unsigned char CcsPaymentSelectionInvalid:1; //bit 6
  1218. unsigned char CcsIdentificationSelectionInvalid:1; //bit 7
  1219. //InfoVal[12]
  1220. unsigned char CcsServiceSelectionInvalid:1; //bit 0
  1221. unsigned char CcsCertificateExpired:1; //bit 1
  1222. unsigned char CcsCertificateNotYetValid:1; //bit 2
  1223. unsigned char CcsCertificateRevoked:1; //bit 3
  1224. unsigned char CcsNoCertificateAvailable:1; //bit 4
  1225. unsigned char CcsCertChainError:1; //bit 5
  1226. unsigned char CcsCertValidationError:1; //bit 6
  1227. unsigned char CcsCertVerificationError:1; //bit 7
  1228. //InfoVal[13]
  1229. unsigned char CcsContractCanceled:1; //bit 0
  1230. unsigned char CcsChallengeInvalid:1; //bit 1
  1231. unsigned char CcsWrongEnergyTransferMode:1; //bit 2
  1232. unsigned char CcsWrongChargeParameter:1; //bit 3
  1233. unsigned char CcsChargingProfileInvalid:1; //bit 4
  1234. unsigned char CcsTariffSelectionInvalid:1; //bit 5
  1235. unsigned char CcsEVSEPresentVoltageToLow:1; //bit 6
  1236. unsigned char CcsPowerDeliveryNotApplied:1; //bit 7
  1237. //InfoVal[14]
  1238. unsigned char CcsMeteringSignatureNotValid:1; //bit 0
  1239. unsigned char CcsNoChargeServiceSelected:1; //bit 1
  1240. unsigned char CcsContactorError:1; //bit 2
  1241. unsigned char CcsCertificateNotAllowedAtThisEVSE:1; //bit 3
  1242. unsigned char CcsGAChargeStop:1; //bit 4
  1243. unsigned char CcsAlignmentError:1; //bit 5
  1244. unsigned char CcsACDError:1; //bit 6
  1245. unsigned char CcsAssociationError:1; //bit 7
  1246. //InfoVal[15]
  1247. unsigned char CcsEVSEChargeAbort:1; //bit 0
  1248. unsigned char CcsNoSupportedAppProtocol:1; //bit 1
  1249. unsigned char CcsContractNotAccepted:1; //bit 2
  1250. unsigned char CcsMOUnknown:1; //bit 3
  1251. unsigned char CcsOEM_Prov_CertificateRevoke:1; //bit 4
  1252. unsigned char CcsOEM_SubCA1_CertificateRevoked:1; //bit 5
  1253. unsigned char CcsOEM_SubCA2_CertificateRevoked:1; //bit 6
  1254. unsigned char CcsOEM_RootCA_CertificateRevoked:1; //bit 7
  1255. //InfoVal[16]
  1256. unsigned char CcsMO_Prov_CertificateRevoked:1; //bit 0
  1257. unsigned char CcsMO_SubCA1_CertificateRevoked:1; //bit 1
  1258. unsigned char CcsMO_SubCA2_CertificateRevoked:1; //bit 2
  1259. unsigned char CcsMO_RootCA_CertificateRevoked:1; //bit 3
  1260. unsigned char CcsCPS_Prov_CertificateRevoked:1; //bit 4
  1261. unsigned char CcsCPS_SubCA1_CertificateRevoked:1; //bit 5
  1262. unsigned char CcsCPS_SubCA2_CertificateRevoked:1; //bit 6
  1263. unsigned char CcsCPS_RootCA_CertificateRevoked:1; //bit 7
  1264. //InfoVal[17]
  1265. unsigned char :5; //bit 0~4 reserved
  1266. unsigned char CcsTT_EVSE_SLAC_init:1; //bit 5
  1267. unsigned char CcsTP_match_response:1; //bit 6
  1268. unsigned char CcsTT_match_sequence:1; //bit 7
  1269. //InfoVal[18]
  1270. unsigned char CcsTT_EVSE_match_MNBC:1; //bit 0
  1271. unsigned char CcsTP_EVSE_avg_atten_calc:1; //bit 1
  1272. unsigned char CcsTT_match_response:1; //bit 2
  1273. unsigned char CcsTP_EVSE_match_session:1; //bit 3
  1274. unsigned char CcsTT_EVSE_assoc_session:1; //bit 4
  1275. unsigned char CcsTT_EVSE_vald_toggle:1; //bit 5
  1276. unsigned char :2; //bit 6~7 reserved
  1277. //InfoVal[19]
  1278. unsigned char :3; //bit 0~2 reserved
  1279. unsigned char CcsUDP_TT_match_join:1; //bit 3
  1280. unsigned char CcsTCP_TT_match_join:1; //bit 4
  1281. unsigned char CcsTP_amp_map_exchange:1; //bit 5
  1282. unsigned char CcsTP_link_ready_notification:1; //bit 6
  1283. unsigned char :1; //bit 7 resetved
  1284. //InfoVal[20]
  1285. unsigned char :4; //bit 0~3 reserved
  1286. unsigned char CcsSupportedAppProtocolRes:1; //bit 4
  1287. unsigned char CcsSessionSetupRes:1; //bit 5
  1288. unsigned char CcsServiceDiscoveryRes:1; //bit 6
  1289. unsigned char CcsServicePaymentSelectionRes:1; //bit 7
  1290. //InfoVal[21]
  1291. unsigned char CcsContractAuthenticationRes:1; //bit 0
  1292. unsigned char CcsChargeParameterDiscoveryRes:1; //bit 1
  1293. unsigned char CcsPowerDeliveryRes:1; //bit 2
  1294. unsigned char CcsCableCheckRes:1; //bit 3
  1295. unsigned char CcsPreChargeRes:1; //bit 4
  1296. unsigned char CcsCurrentDemandRes:1; //bit 5
  1297. unsigned char CcsWeldingDetectionRes:1; //bit 6
  1298. unsigned char CcsSessionStopRes:1; //bit 7
  1299. //InfoVal[22]
  1300. unsigned char CcsSequence_Time:1; //bit 0
  1301. unsigned char CcsReadyToCharge_Performance_Time:1; //bit 1
  1302. unsigned char CcsCommunicationSetup_Performance_Time:1; //bit 2
  1303. unsigned char CcsCableCheck_Performance_Time:1; //bit 3
  1304. unsigned char CcsCPState_Detection_Time:1; //bit 4
  1305. unsigned char CcsCPOscillator_Retain_Time:1; //bit 5
  1306. unsigned char :2; //bit 6~7 reserved
  1307. //InfoVal[23]
  1308. unsigned char :3; //bit 0~2 reserved
  1309. unsigned char CcsTP_GET_EV_TARGET_INFO:1; //bit 3
  1310. unsigned char CcsTT_GET_EV_TARGET_INFO:1; //bit 4
  1311. unsigned char CcsTP_GET_EV_BATTERY_INFO:1; //bit 5
  1312. unsigned char CcsTT_GET_EV_BATTERY_INFO:1; //bit 6
  1313. unsigned char CcsTP_EV_STOP_EVENT:1; //bit 7
  1314. //InfoVal[24]
  1315. unsigned char CcsTT_EV_STOP_EVENT:1; //bit 0
  1316. unsigned char CcsTP_EVSE_STOP_EVENT:1; //bit 1
  1317. unsigned char CcsTT_EVSE_STOP_EVENT:1; //bit 2
  1318. unsigned char CcsTP_GET_MISC_INFO:1; //bit 3
  1319. unsigned char CcsTT_GET_MISC_INFO:1; //bit 4
  1320. unsigned char CcsTP_DOWNLOAD_REQUEST:1; //bit 5
  1321. unsigned char CcsTT_DOWNLOAD_REQUEST:1; //bit 6
  1322. unsigned char CcsTP_START_BLOCK_TRANSFER:1; //bit 7
  1323. //InfoVal[25]
  1324. unsigned char CcsTT_START_BLOCK_TRANSFER:1; //bit 0
  1325. unsigned char CcsTP_DATA_TRANSFER:1; //bit 1
  1326. unsigned char CcsTT_DATA_TRANSFER:1; //bit 2
  1327. unsigned char CcsTP_DOWNLOAD_FINISH:1; //bit 3
  1328. unsigned char CcsTT_DOWNLOAD_FINISH:1; //bit 4
  1329. unsigned char CcsTP_ISOLATION_STATUS:1; //bit 5
  1330. unsigned char CcsTT_ISOLATION_STATUS:1; //bit 6
  1331. unsigned char CcsTP_CONNECTOR_INFO:1; //bit 7
  1332. //InfoVal[26]
  1333. unsigned char CcsTT_CONNECTOR_INFO:1; //bit 0
  1334. unsigned char CcsTT_RTC_INFO:1; //bit 1
  1335. unsigned char CcsTP_RTC_INFO:1; //bit 2
  1336. unsigned char CcsTP_EVSE_PRECHARGE_INFO:1; //bit 3
  1337. unsigned char CcsTT_EVSE_PRECHARGE_INFO:1; //bit 4
  1338. unsigned char CcsMSG_Sequence:1; //bit 5
  1339. unsigned char CcsCAN_MSG_Unrecognized_CMD_ID:1; //bit 6
  1340. unsigned char CcsDIN_Msg_Decode_Error:1; //bit 7
  1341. //InfoVal[27]
  1342. unsigned char CcsDIN_Msg_Encode_Error:1; //bit 0
  1343. unsigned char CcsISO1_Msg_Decode_Error:1; //bit 1
  1344. unsigned char CcsISO1_Msg_Encode_Error:1; //bit 2
  1345. unsigned char CcsISO2_Msg_Decode_Error:1; //bit 3
  1346. unsigned char CcsISO2_Msg_Encode_Error:1; //bit 4
  1347. unsigned char CcsCpStatus_Error:1; //bit 5
  1348. unsigned char :2; //bit 6~7 reserved
  1349. //InfoVal[28]
  1350. unsigned char :8; //bit 0~8 reserved
  1351. //InfoVal[29]
  1352. unsigned char ERROR_CODE_GBT_LOS_CC1 :1; //bit 0
  1353. unsigned char ERROR_CODE_GBT_CONNECTOR_LOCK_FAIL :1; //bit 1
  1354. unsigned char ERROR_CODE_GBT_BATTERY_INCOMPATIBLE :1; //bit 2
  1355. unsigned char ERROR_CODE_GBT_BMS_BROAA_TIMEOUT :1; //bit 3
  1356. unsigned char ERROR_CODE_GBT_CSU_PRECHARGE_TIMEOUT :1; //bit 4
  1357. unsigned char ERROR_CODE_GBT_BMS_PRESENT_VOLTAGE_FAULT :1; //bit 5
  1358. unsigned char ERROR_CODE_GBT_BMS_VOLTAGE_OVER_RANGE :1; //bit 6
  1359. unsigned char ERROR_CODE_GBT_BSM_CHARGE_ALLOW_00_10MIN_COUUNTDONE :1; //bit 7
  1360. //InfoVal[30]
  1361. unsigned char ERROR_CODE_GBT_WAIT_GROUNDFAULT_TIMEOUT :1; //bit 0
  1362. unsigned char ERROR_CODE_GBT_ADC_MORE_THAN_10V :1; //bit 1
  1363. unsigned char ERROR_CODE_GBT_ADC_MORE_THAN_60V :1; //bit 2
  1364. unsigned char ERROR_CODE_GBT_CHARGER_GET_NORMAL_STOP_CMD :1; //bit 3
  1365. unsigned char ERROR_CODE_GBT_CHARGER_GET_EMERGENCY_STOP_CMD :1; //bit 4
  1366. unsigned char ERROR_CODE_GBT_ISOLATION_RESULT_FAIL :1; //bit 5
  1367. unsigned char ERROR_CODE_GBT_MOTHER_BOARD_MISS_LINK :1; //bit 6
  1368. unsigned char ERROR_CODE_GBT_OUTPUT_VOLTAGE_MORE_THAN_LIMIT :1; //bit 7
  1369. //InfoVal[31]
  1370. unsigned char ERROR_CODE_GBT_REQ_CURRENT_MORE_THAN_LIMIT :1; //bit 0
  1371. unsigned char ERROR_CODE_GBT_OUTPUT_VOLTAGE_MORE_THAN_10_PERCENT :1; //bit 1
  1372. unsigned char ERROR_CODE_GBT_OUTPUT_VOLTAGE_DIFF_BCS_5_PERCENT :1; //bit 2
  1373. unsigned char ERROR_CODE_GBT_STOP_ADC_MORE_THAN_10V :1; //bit 3
  1374. unsigned char :4; //bit 4 ~ 7
  1375. //InfoVal[32]
  1376. unsigned char :6; //bit 0 ~ 5
  1377. unsigned char ERROR_CODE_CEM_BHM_TIMEOUT :1; //bit 6
  1378. unsigned char ERROR_CODE_CEM_BRM_TIMEOUT :1; //bit 7
  1379. //InfoVal[33]
  1380. unsigned char ERROR_CODE_CEM_BCP_TIMEOUT :1; //bit 0
  1381. unsigned char ERROR_CODE_CEM_BRO_TIMEOUT :1; //bit 1
  1382. unsigned char ERROR_CODE_CEM_BCL_TIMEOUT :1; //bit 2
  1383. unsigned char ERROR_CODE_CEM_BCS_TIMEOUT :1; //bit 3
  1384. unsigned char ERROR_CODE_CEM_BSM_TIMEOUT :1; //bit 4
  1385. unsigned char ERROR_CODE_CEM_BST_TIMEOUT :1; //bit 5
  1386. unsigned char ERROR_CODE_CEM_BSD_TIMEOUT :1; //bit 6
  1387. unsigned char ERROR_CODE_CEM_BEM_OTHER_TIMEOUT :1; //bit 7
  1388. //InfoVal[34]
  1389. unsigned char ERROR_CODE_BEM_CRM_TIMEOUT :1; //bit 0
  1390. unsigned char ERROR_CODE_BEM_CRMAA_TIMEOUT :1; //bit 1
  1391. unsigned char ERROR_CODE_BEM_CTS_CML_TIMEOUT :1; //bit 2
  1392. unsigned char ERROR_CODE_BEM_CRO_TIMEOUT :1; //bit 3
  1393. unsigned char ERROR_CODE_BEM_CCS_TIMEOUT :1; //bit 4
  1394. unsigned char ERROR_CODE_BEM_CST_TIMEOUT :1; //bit 5
  1395. unsigned char ERROR_CODE_BEM_CSD_TIMEOUT :1; //bit 6
  1396. unsigned char ERROR_CODE_BEM_BEM_OTHER_TIMEOUT :1; //bit 7
  1397. //InfoVal[35]
  1398. unsigned char :2; //bit 0 ~ 1
  1399. unsigned char ERROR_CODE_BST_SOC_GOAL :1; //bit 2
  1400. unsigned char ERROR_CODE_BST_TOTAL_VOLTAGE_GOAL :1; //bit 3
  1401. unsigned char ERROR_CODE_BST_CELL_VOLTAGE_GOAL :1; //bit 4
  1402. unsigned char ERROR_CODE_BST_GET_CST :1; //bit 5
  1403. unsigned char ERROR_CODE_BST_ISOLATION :1; //bit 6
  1404. unsigned char ERROR_CODE_BST_OUTPUT_CONNECTOR_OTP :1; //bit 7
  1405. //InfoVal[36]
  1406. unsigned char ERROR_CODE_BST_COMPONENT :1; //bit 0
  1407. unsigned char ERROR_CODE_BST_CHARGE_CONNECTOR :1; //bit 1
  1408. unsigned char ERROR_CODE_BST_OTP :1; //bit 2
  1409. unsigned char ERROR_CODE_BST_OTHER :1; //bit 3
  1410. unsigned char ERROR_CODE_BST_HIGH_V :1; //bit 4
  1411. unsigned char ERROR_CODE_BST_CC2 :1; //bit 5
  1412. unsigned char ERROR_CODE_BST_CURRENT :1; //bit 6
  1413. unsigned char ERROR_CODE_BST_VOLTAGE :1; //bit 7
  1414. //InfoVal[37]
  1415. unsigned char ERROR_CODE_GET_BST_NO_REASON :1; //bit 0
  1416. unsigned char :5; //bit 1 ~ 5
  1417. unsigned char ERROR_CODE_BSM_CELL_OVER_VOLTAGE :1; //bit 6
  1418. unsigned char ERROR_CODE_BSM_CELL_UNDER_VOLTAGE :1; //bit 7
  1419. //InfoVal[38]
  1420. unsigned char ERROR_CODE_BSM_OVER_SOC :1; //bit 0
  1421. unsigned char ERROR_CODE_BSM_UNDER_SOC :1; //bit 1
  1422. unsigned char ERROR_CODE_BSM_CURRENT :1; //bit 2
  1423. unsigned char ERROR_CODE_BSM_TEMPERATURE :1; //bit 3
  1424. unsigned char ERROR_CODE_BSM_ISOLATE :1; //bit 4
  1425. unsigned char ERROR_CODE_BSM_OUTPUT_CONNECTOR :1; //bit 5
  1426. unsigned char :2; //bit 6 ~ 7
  1427. //InfoVal[39]
  1428. unsigned char BackendDisconnectedViaEthernet:1; //bit 0
  1429. unsigned char BackendDisconnectViaWiFi:1; //bit 1
  1430. unsigned char BackendDisconnectVia4G:1; //bit 2
  1431. unsigned char BackendRemoteStart:1; //bit 3
  1432. unsigned char BackendRemoteStop:1; //bit 4
  1433. unsigned char BackendRemoteReset:1; //bit 5
  1434. unsigned char :2; //bit 6~7 reserved
  1435. }bits;
  1436. }InfoEvents;
  1437. };
  1438. struct StatusCodeData
  1439. {
  1440. struct FaultCodeData FaultCode;
  1441. struct AlarmCodeData AlarmCode;
  1442. struct InfoCodeData InfoCode;
  1443. };
  1444. /**************************************************************************************/
  1445. /**************************PSU Share memory***************************************/
  1446. /**************************************************************************************/
  1447. /*Following are the information for each PSU module*/
  1448. struct PsuModuleData
  1449. {
  1450. unsigned char AssignID;
  1451. unsigned char PhysicalID;
  1452. unsigned char GroupID;
  1453. unsigned char Address;
  1454. unsigned char FireWireIndex;
  1455. unsigned char FwVersion[16];
  1456. unsigned char SerialNumber[32];
  1457. unsigned char StateMachine; //0: Identification, 1:Operation, 2: Alarm, 3: Failure, s4:Upgrade
  1458. unsigned char OutputPowerSwitch; //0: D.D normal OFF, 1: D.D emergency OFF, 2: D.D ON
  1459. unsigned short FanSpeed_1; //RPM
  1460. unsigned short FanSpeed_2; //RPM
  1461. unsigned short FanSpeed_3; //RPM
  1462. unsigned short FanSpeed_4; //RPM
  1463. unsigned short InputVoltage_Type; //0x00 = Line to Line Vol, 0x01 = Line to Neutral Vol
  1464. unsigned short InputVoltageL1; //abcd=abc.d volt
  1465. unsigned short InputVoltageL2; //abcd=abc.d volt
  1466. unsigned short InputVoltageL3; //abcd=abc.d volt
  1467. unsigned short InputCurrentL1; //abcd=abc.d amp
  1468. unsigned short InputCurrentL2; //abcd=abc.d amp
  1469. unsigned short InputCurrentL3; //abcd=abc.d amp
  1470. unsigned short PresentOutputVoltage; //abcd=abc.d volt
  1471. unsigned short PresentOutputCurrent; //abcd=abc.d amp
  1472. unsigned short AvailableCurrent; //abcd=abc.d amp
  1473. unsigned int AvailablePower; //Watt
  1474. char CriticalTemp1; //0x00: -60¢XC ~ 0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
  1475. char CriticalTemp2; //0x00: -60¢XC ~ 0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
  1476. char CriticalTemp3; //0x00: -60¢XC ~ 0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
  1477. char ExletTemp; //0x00: -60¢XC ~ 0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
  1478. char InletTemp_1; //0x00: -60¢XC ~ 0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
  1479. char InletTemp_2; //0x00: -60¢XC ~ 0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
  1480. char InletTemp; //0x00: -60¢XC ~ 0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
  1481. char OutletTemp; //0x00: -60¢XC ~ 0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
  1482. unsigned int AlarmCode;
  1483. unsigned int FaultCode; //
  1484. unsigned int IAvailableCurrent; //abcd=abc.d amp
  1485. };
  1486. /*Following are the information for each PSU Group*/
  1487. struct PsuGroupData
  1488. {
  1489. unsigned char GroupPresentPsuQuantity;
  1490. unsigned char GroupOutputPowerSwitch; //0: D.D normal OFF, 1: D.D emergency OFF, 2: D.D ON
  1491. unsigned short GroupTargetOutputVoltage; //abcd=abc.d volt
  1492. unsigned short GroupTargetOutputCurrent; //abcd=abc.d amp
  1493. unsigned short GroupAvailableCurrent; //abcd=abc.d amp
  1494. unsigned int GroupAvailablePower; //Watt
  1495. unsigned short GroupPresentOutputVoltage; //abcd=abc.d volt
  1496. unsigned short GroupPresentOutputCurrent; //abcd=abc.d Amps
  1497. struct PsuModuleData PsuModule[MAX_PSU_QUANTITY];
  1498. };
  1499. /*Following is the information for system all PSU*/
  1500. struct PsuData
  1501. {
  1502. unsigned char SystemPresentPsuQuantity;
  1503. unsigned short SystemAvailableCurrent; //abcd=abc.d amp
  1504. unsigned int SystemAvailablePower; //Watt
  1505. struct PsuGroupData PsuGroup[4];
  1506. unsigned char GroupCount;
  1507. unsigned char Work_Step;
  1508. };
  1509. /************************************************************************************/
  1510. /**************************CHAdeMO protocol Share memory*********************/
  1511. /**************************************************************************************/
  1512. struct CHAdeMOEvData
  1513. {
  1514. unsigned char SupportDynamicControl; //110.0
  1515. // bit0=1:supported
  1516. unsigned char SupportHighCurrent; //110.0
  1517. // bit1=1:supported
  1518. unsigned char MiniChargeCurrent; //100.0 0~200(A) (unit:1A)
  1519. // 0x00: request for current equivalent to 1.5kW
  1520. // 0x01: no request
  1521. // 0x02: request of 1A and following are the same rule
  1522. unsigned short MaxiBatteryVoltage; //100.5,100.4 0~600(V) (unit:1V)
  1523. unsigned short MaxiChargingTime; //101.2,101.1 10(sec.)~255(min.) (Unit:sec)
  1524. // Set 0xFF to 101.1 (Unit: 10sec) in case 101.2 (Unit: 1min) is used
  1525. unsigned char EstimatChargingTime; //101.3 0~254(min.) (Unit:sec)
  1526. // Display Only
  1527. unsigned short TotalBatteryCapacity; //101.6,101.5 0.1~6553.5(kWh) (unit:0.1 kWh)
  1528. unsigned char ProtocolVersion; //102.0 0~255
  1529. // 0x02: CHAdeMO specification ver.1.2
  1530. unsigned short TargetBatteryVoltage; //102.2,102.1 0~600(V) (unit:1V)
  1531. unsigned short ChargingCurrentRequest; //102.3 0~200(A) (unit:1A)
  1532. //110.2,110.1 0~1023(A) (unit:1A)
  1533. unsigned char BatteryAlarm; //102.4 >0:alarm
  1534. // bit0=1:Battery overvoltage
  1535. // bit1=1:Battery undervoltage
  1536. // bit2=1:Battery current deviation error
  1537. // bit3=1:High battery temperature
  1538. // bit4=1:Battery voltage deviation error
  1539. unsigned char EvDetection; //102.5
  1540. // bit0=0:Vehicle charging disabled, (stop charging)
  1541. // bit0=1:Vehicle charging enabled,
  1542. // bit1=0:¡§Parking¡¨ position
  1543. // bit1=1:other position (stop charging)
  1544. // bit2=0:Charging system normal
  1545. // bit2=1:Charging system error (stop charging)
  1546. // bit3=0:EV contactor close or during welding detection
  1547. // bit3=1:EV contactor open or termination of welding detection (stop charging)
  1548. // bit4=0:No stop request before charging
  1549. // bit4=1:Normal stop request before charging (stop charging)
  1550. unsigned char SOC; //102.6 0~100(%) (unit:%)
  1551. // Display Only
  1552. unsigned char Communicating; // it is true if receive EV CAN message within every 1500ms
  1553. unsigned char PresentMsgFlowStatus; //
  1554. };
  1555. struct CHAdeMOEvseData
  1556. {
  1557. unsigned char SelfTest_Comp;
  1558. unsigned char version[16]; //Chademo firmware version
  1559. unsigned char SupportDynamicControl; //118.0
  1560. // bit0=1:supported
  1561. unsigned char SupportHighCurrent; //118.0
  1562. // bit1=1:supported
  1563. unsigned short AvailableOutputVoltage; //108.2,108.1 0~600(V) (unit:1V)
  1564. unsigned short AvailableOutputCurrent; //108.3 0~255(A) (unit:1A)
  1565. //118.2,118.1 0~1023(A) (unit:1A)
  1566. unsigned short ThresholdVoltage; //108.5,108.4 0~600(V) (unit:1V)
  1567. unsigned char ConnectorTemperatureP; //108.6 -40~215(degC) (unit:degC) //value 0=-40 [NISSAN customized]
  1568. unsigned char ConnectorTemperatureN; //108.7 -40~215(degC) (unit:degC) //value 0=-40 [NISSAN customized]
  1569. unsigned char ProtocolVersion; //109.0 0~255
  1570. // 0x00: CHAdeMO specification 0.9 and earlier
  1571. // 0x01: CHAdeMO specification 0.9 and 0.9.1
  1572. // 0x02: CHAdeMO specification 1.0.0, 1.0.1, 1.1 and 1.2
  1573. unsigned short PresentOutputVoltage; //109.2,109.1 0~600(V) (unit:1V)
  1574. unsigned short PresentOutputCurrent; //109.3 0~255(A) (unit:1A)
  1575. //118.4,118.3 0~1023(A) (unit:1A)
  1576. unsigned char EvseDetection; //109.5
  1577. // bit0=0:not charging state now
  1578. // bit0=1:charging state now
  1579. // bit1=0:EVSE normal
  1580. // bit1=1:EVSE error
  1581. // bit2=0:Not Energizing state
  1582. // bit2=1:Energizing state
  1583. // bit3=0:No Battery incompatibility
  1584. // bit3=1:Battery incompatibility
  1585. // bit4=0:No Charging system error
  1586. // bit4=1:Charging system error
  1587. // bit5=0:No Charging stop control
  1588. // bit5=1:Charging stop control
  1589. unsigned short RemainChargingTime; //109.7,109.6 10(sec.)~255(min.) (Unit:sec)
  1590. // Set 0xFF to 109.6 (Unit: 10sec) in case 109.7 (Unit: 1min) is used
  1591. unsigned char HighPowerCondition; //118.5
  1592. // bit0=0:Present charging current H¡¦118.3,H¡¦118.4¡¨ is less than or equal to rated current of a charging cable
  1593. // bit0=1:Present charging current H¡¦118.3,H¡¦118.4¡¨ is exceeds to rated current of a charging cable
  1594. // bit1=1:charging cable Cooling function Operating Installed
  1595. // bit2=1:charging cable Current limiting function
  1596. // bit3=1:charging connector Cooling function Operating
  1597. // bit4=1:charging connector Current limiting function Installed
  1598. // bit5=1:charging connector Over-temperature protection Installed
  1599. // bit6=1:Functional safety Applied
  1600. unsigned int MaxiGroupPower; // XXXXXXXX (Unit:Watt)depend on which group to be used
  1601. unsigned int MaxiGroupCurrent; // XXXXXXXX (unit:1A)depend on which group to be used
  1602. unsigned short ApplyOutputVoltage; // 0~600(V) (unit:1V)
  1603. unsigned short ElapseChargingTime; // (Unit:sec)
  1604. unsigned short ElapseEnergy; // (Unit:10xkWh)
  1605. unsigned char EvboardStatus; // 0 : init
  1606. };
  1607. struct CHAdeMOData
  1608. {
  1609. struct CHAdeMOEvData ev[CHAdeMO_QUANTITY];
  1610. struct CHAdeMOEvseData evse[CHAdeMO_QUANTITY];
  1611. };
  1612. /************************************************************************************/
  1613. /**************************GBT protocol Share memory*********************/
  1614. /**************************************************************************************/
  1615. struct GBTEvData
  1616. {
  1617. unsigned short MaxiBatteryVoltage; // 0~600(V) (unit:1V)
  1618. unsigned short MaxiChargingTime; // 10(sec.)~255(min.) (Unit:sec)
  1619. unsigned char EstimatChargingTime; // 0~254(min.) (Unit:sec)
  1620. unsigned short TotalBatteryCapacity; // 0.1~6553.5(kWh) (unit:0.1 kWh)
  1621. unsigned char ProtocolVersion; // 0~255
  1622. unsigned short TargetBatteryVoltage; // 0~600(V) (unit:1V)
  1623. unsigned short ChargingCurrentRequest; // 0~200(A) (unit:1A)
  1624. // 0~1023(A) (unit:1A)
  1625. unsigned char EvDetection; //102.5
  1626. // bit0=0:Vehicle charging disabled, (stop charging)
  1627. // bit0=1:Vehicle charging enabled,
  1628. // bit1=0:¡§Parking¡¨ position
  1629. // bit1=1:other position (stop charging)
  1630. // bit2=0:Charging system normal
  1631. // bit2=1:Charging system error (stop charging)
  1632. // bit3=0:EV contactor close or during welding detection
  1633. // bit3=1:EV contactor open or termination of welding detection (stop charging)
  1634. // bit4=0:No stop request before charging
  1635. // bit4=1:Normal stop request before charging (stop charging)
  1636. unsigned char SOC; //102.6 0~100(%) (unit:%)
  1637. // Display Only
  1638. unsigned char PresentMsgFlowStatus; //
  1639. };
  1640. struct GBTEvseData
  1641. {
  1642. unsigned char SelfTest_Comp;
  1643. unsigned char version[16]; // GBT firmware version
  1644. unsigned short AvailableOutputVoltage; // 0~600(V) (unit:1V)
  1645. unsigned short AvailableOutputCurrent; // 0~255(A) (unit:1A)
  1646. unsigned char ConnectorTemperatureP; // -40~215(degC) (unit:degC) //value 0=-40 [NISSAN customized]
  1647. unsigned char ConnectorTemperatureN; // -40~215(degC) (unit:degC) //value 0=-40 [NISSAN customized]
  1648. unsigned short PresentOutputVoltage; // 0~600(V) (unit:1V)
  1649. unsigned short PresentOutputCurrent; // 0~255(A) (unit:1A)
  1650. unsigned short RemainChargingTime; //109.7,109.6 10(sec.)~255(min.) (Unit:sec)
  1651. unsigned char EvboardStatus; // 0 : init
  1652. };
  1653. struct GBTData
  1654. {
  1655. struct GBTEvData ev[GB_QUANTITY];
  1656. struct GBTEvseData evse[GB_QUANTITY];
  1657. };
  1658. /************************************************************************************/
  1659. /**************************CCS protocol Share memory***************************/
  1660. /**************************DIN70121: 201412***************************************/
  1661. /**************************ISO15118_2014: 2014************************************/
  1662. /**************************ISO15118_2018: 2018************************************/
  1663. /************************************************************************************/
  1664. typedef enum boolean { FALSE, TRUE } BOOL;
  1665. enum ResponseCodeType_DIN70121 { OK_DIN70121 = 0, OK_NewSessionEstablished_DIN70121 = 1, OK_OldSessionJoined_DIN70121 = 2, OK_CertificateExpiresSoon_DIN70121 = 3,
  1666. FAILED_DIN70121 = 4, FAILED_SequenceError_DIN70121 = 5, FAILED_ServiceIDInvalid_DIN70121 = 6, FAILED_UnknownSession_DIN70121 = 7,
  1667. FAILED_ServiceSelectionInvalid_DIN70121 = 8, FAILED_PaymentSelectionInvalid_DIN70121 = 9, FAILED_CertificateExpired_DIN70121 = 10,
  1668. FAILED_SignatureError_DIN70121 = 11, FAILED_NoCertificateAvailable_DIN70121 = 12, FAILED_CertChainError_DIN70121 = 13, FAILED_ChallengeInvalid_DIN70121 = 14,
  1669. FAILED_ContractCanceled_DIN70121 = 15, FAILED_WrongChargeParameter_DIN70121 = 16, FAILED_PowerDeliveryNotApplied_DIN70121 = 17,
  1670. FAILED_TariffSelectionInvalid_DIN70121 = 18, FAILED_ChargingProfileInvalid_DIN70121 = 19, FAILED_EVSEPresentVoltageToLow_DIN70121 = 20,
  1671. FAILED_MeteringSignatureNotValid_DIN70121 = 21, FAILED_WrongEnergyTransferType_DIN70121 = 22};
  1672. enum ResponseCodeType_ISO15118_2014 { OK_ISO15118_2014 = 0, OK_NewSessionEstablished_ISO15118_2014 = 1, OK_OldSessionJoined_ISO15118_2014 = 2, OK_CertificateExpiresSoon_ISO15118_2014 = 3,
  1673. FAILED_ISO15118_2014 = 4, FAILED_SequenceError_ISO15118_2014 = 5, FAILED_ServiceIDInvalid_ISO15118_2014 = 6, FAILED_UnknownSession_ISO15118_2014 = 7,
  1674. FAILED_ServiceSelectionInvalid_ISO15118_2014 = 8, FAILED_PaymentSelectionInvalid_ISO15118_2014 = 9, FAILED_CertificateExpired_ISO15118_2014 = 10,
  1675. FAILED_SignatureError_ISO15118_2014 = 11, FAILED_NoCertificateAvailable_ISO15118_2014 = 12, FAILED_CertChainError_ISO15118_2014 = 13, FAILED_ChallengeInvalid_ISO15118_2014 = 14,
  1676. FAILED_ContractCanceled_ISO15118_2014 = 15, FAILED_WrongChargeParameter_ISO15118_2014 = 16, FAILED_PowerDeliveryNotApplied_ISO15118_2014 = 17,
  1677. FAILED_TariffSelectionInvalid_ISO15118_2014 = 18, FAILED_ChargingProfileInvalid_ISO15118_2014 = 19, FAILED_MeteringSignatureNotValid_ISO15118_2014 = 20,
  1678. FAILED_NoChargeServiceSelected_ISO15118_2014 = 21, FAILED_WrongEnergyTransferMode_ISO15118_2014 = 22, FAILED_ContactorError_ISO15118_2014 = 23,
  1679. FAILED_CertificateNotAllowedAtThisEVSE_ISO15118_2014 = 24, FAILED_CertificateRevoked_ISO15118_2014 = 25 };
  1680. enum ResponseCodeType_ISO15118_2018 { OK_ISO15118_2018 = 0, OK_NewSessionEstablished_ISO15118_2018 = 1, OK_OldSessionJoined_ISO15118_2018 = 2, OK_CertificateExpiresSoon_ISO15118_2018 = 3,
  1681. OK_IsolationValid_ISO15118_2018 = 4, OK_IsolationWarning_ISO15118_2018 = 5, WARNING_CertificateExpired_ISO15118_2018 = 6, WARNING_NoCertificateAvailable_ISO15118_2018 = 7,
  1682. WARNING_CertValidationError_ISO15118_2018 = 8, WARNING_CertVerificationError_ISO15118_2018 = 9, WARNING_ContractCanceled_ISO15118_2018 = 10,
  1683. FAILED_ISO15118_2018 = 11, FAILED_SequenceError_ISO15118_2018 = 12, FAILED_ServiceIDInvalid_ISO15118_2018 = 13, FAILED_UnknownSession_ISO15118_2018 = 14,
  1684. FAILED_ServiceSelectionInvalid_ISO15118_2018 = 15, FAILED_SignatureError_ISO15118_2018 = 16, FAILED_IdentificationSelectionInvalid_ISO15118_2018 = 17,
  1685. FAILED_ChallengeInvalid_ISO15118_2018 = 18, FAILED_WrongChargeParameter_ISO15118_2018 = 19, FAILED_IsolationFault_ISO15118_2018 = 20,
  1686. FAILED_PowerDeliveryNotApplied_ISO15118_2018 = 21, FAILED_TariffSelectionInvalid_ISO15118_2018 = 22, FAILED_ChargingProfileInvalid_ISO15118_2018 = 23,
  1687. FAILED_MeteringSignatureNotValid_ISO15118_2018 = 24, FAILED_NoChargeServiceSelected_ISO15118_2018 = 25, FAILED_WrongEnergyTransferMode_ISO15118_2018 = 26,
  1688. FAILED_ContactorError_ISO15118_2018 = 27, FAILED_CertificateRevoked_ISO15118_2018 = 28, FAILED_CertificateNotYetValid_ISO15118_2018 = 29 };
  1689. enum EVSENotificationType { None = 0, StopCharging = 1, ReNegotiation = 2};
  1690. enum ServiceCategoryType { EVCharging = 0, Internet = 1, ContractCertificate = 2, OtherCustom = 3};
  1691. enum PaymentOptionType { Contract = 0, ExternalPayment = 1};
  1692. /*enum EVSESupportedEnergyTransferType { AC_single_phase_core = 0, AC_three_phase_core = 1, DC_core = 2, DC_extended = 3,
  1693. DC_combo_core = 4, DC_dual = 5, AC_core1p_DC_extended = 6, AC_single_DC_core = 7,
  1694. AC_single_phase_three_phase_core_DC_extended = 8, AC_core3p_DC_extended = 9};*/
  1695. enum EnergyTransferModeType { AC_single_phase_core = 0, AC_three_phase_core = 1, DC_core = 2, DC_extended = 3,
  1696. DC_combo_core = 4, DC_unique = 5};
  1697. //enum identificationOptionType { Contract = 0, ExternalIdentification = 1};
  1698. enum unitSymbolType_DIN70121 { h_DIN70121 = 0, m_DIN70121 = 1, s_DIN70121 = 2, A_DIN70121 = 3, Ah_DIN70121 = 4, V_DIN70121 = 5, VA_DIN70121 = 6, W_DIN70121 = 7, Ws_DIN70121 = 8, Wh_DIN70121 = 9};
  1699. enum unitSymbolType_ISO15118_2014 { h_ISO15118_2014 = 0, m_ISO15118_2014 = 1, s_ISO15118_2014 = 2, A_ISO15118_2014 = 3, V_ISO15118_2014 = 4, W_ISO15118_2014 = 5, Wh_ISO15118_2014 = 6};
  1700. enum ProcessingType { Finished = 0, Ongoing = 1, Ongoing_WaitingForCustomerInteraction = 2};
  1701. enum EVSEProcessingType_DIN70121 { Finished_DIN70121 = 0, Ongoing_DIN70121 = 1};
  1702. enum EVSEProcessingType_ISO15118_2014 { Finished_ISO15118_2014 = 0, Ongoing_ISO15118_2014 = 1, Ongoing_WaitingForCustomerInteraction_ISO15118_2014=2 };
  1703. enum DC_EVErrorCodeType { NO_ERROR = 0, FAILED_RESSTemperatureInhibit = 1, FAILED_EVShiftPosition = 2, FAILED_ChargerConnectorLockFault = 3,
  1704. FAILED_EVRESSMalfunction = 4, FAILED_ChargingCurrentdifferential = 5, FAILED_ChargingVoltageOutOfRange = 6,
  1705. Reserved_A = 7, Reserved_B = 8, Reserved_C = 9, FAILED_ChargingSystemIncompatibility = 10, NoData = 11};
  1706. enum IsolationLevelType_DIN70121 { Invalid_DIN70121 = 0, Valid_DIN70121 = 1, Warning_DIN70121 = 2, Fault_DIN70121 = 3};
  1707. enum IsolationLevelType_ISO15118_2014 { Invalid_ISO15118_2014 = 0, Valid_ISO15118_2014 = 1, Warning_ISO15118_2014 = 2, Fault_ISO15118_2014 = 3, No_IMD_ISO15118_2014 = 4};
  1708. enum DC_EVSEStatusCodeType { EVSE_NotReady = 0, EVSE_Ready = 1, EVSE_Shutdown = 2, EVSE_UtilityInterruptEvent = 3,
  1709. EVSE_IsolationMonitoringActive = 4, EVSE_EmergencyShutdown = 5, EVSE_Malfunction = 6,
  1710. Reserved_8 = 7, Reserved_9 = 8};
  1711. enum ScheduleOriginType { EV = 0, SA = 1};
  1712. enum ChargeProgressType_ISO15118_2014 {start_ISO15118_2014 = 0, Stop_ISO15118_2014 = 1, Renegotiate_ISO15118_2014 = 2};
  1713. enum ChargeProgressType_ISO15118_2018 {start_ISO15118_2018 = 0, Renegotiate_ISO15118_2018 = 1, Standby_ISO15118_2018 = 2, Stop_ISO15118_2018 = 3};
  1714. enum evOperationType {Charge = 0, Discharge = 1, Standby = 2};
  1715. enum mechanicalChargingDeviceStatusType {Home = 0, Moving = 1, EndPosition = 2};
  1716. enum EV_CP_StatusType {A = 0, B = 1, C = 2, D = 3, E = 4, F = 5};
  1717. enum EV_Error_Status_CodeType { No_EV_Error = 0, EV_FAILED_EmergencyEvent = 1, EV_FAILED_Breaker = 2, EV_FAILED_RESSTemperatureInhibit = 3,
  1718. EV_FAILED_RESS = 4, EV_FAILED_ChargingCurrentDifferential = 5, EV_FAILED_ChargingVoltageOutOfRange = 6,
  1719. Reserved_by_ISO_1 = 7, Reserved_by_ISO_2 = 8, Reserved_by_ISO_3 = 9, OEM1 = 10,
  1720. OEM2 = 11, OEM3 = 12, OEM4 = 13};
  1721. enum IsolationStatusType { Invalid = 0, Safe = 1, Warning = 2, Fault = 3};
  1722. enum ChargingSessionType { Terminate = 0, Pause = 1};
  1723. enum CostKindType { relativePricePercentage = 0, RenewableGenerationPercentage = 1, CarbonDioxideEmission = 2};
  1724. struct PhysicalValueType_DIN70121 //The final physical value is determined by: Value * 10 ^ Multiplier [Unit]
  1725. {
  1726. int Multiplier; //range: -3..+3
  1727. enum unitSymbolType_DIN70121 Unit;
  1728. short Value;
  1729. };
  1730. struct PhysicalValueType_ISO15118_2014 //The final physical value is determined by: Value * 10 ^ Multiplier [Unit]
  1731. {
  1732. int Multiplier; //range: -3..+3
  1733. enum unitSymbolType_ISO15118_2014 Unit;
  1734. short Value;
  1735. };
  1736. struct PhysicalValueType_ISO15118_2018 //The final physical value is determined by: Value * 10 ^ Exponent [Unit]
  1737. {
  1738. int Exponent; //range: -3..+3
  1739. short Value;
  1740. };
  1741. struct AppProtocolType
  1742. {
  1743. unsigned char ProtocolNamespace[100];
  1744. unsigned int VersionNumberMajor;
  1745. unsigned int VersionNumberMinor;
  1746. unsigned char SchemaID;
  1747. unsigned char Priority; //range 1..20
  1748. };
  1749. struct ACD_SSEnergyTransferModeType
  1750. {
  1751. unsigned char EVID[20];
  1752. };
  1753. struct EVSEStatusType
  1754. {
  1755. unsigned short NotificationMaxDelay; //in seconds
  1756. enum EVSENotificationType EVSENotification;
  1757. };
  1758. struct ServiceIDListType
  1759. {
  1760. unsigned short ServiceID[10]; //refer to chapter 8.6.2.1 Table 192
  1761. };
  1762. struct PaymentOptionListType
  1763. {
  1764. enum PaymentOptionType PaymentOption[2];
  1765. };
  1766. struct ServiceTagType
  1767. {
  1768. unsigned short ServiceID;
  1769. unsigned char ServiceName[32];//Optional Element
  1770. enum ServiceCategoryType ServiceCategory;
  1771. unsigned char ServiceScope[32];//Optional Element
  1772. };
  1773. struct ServiceType_DIN70121
  1774. {
  1775. struct ServiceTagType ServiceTag;
  1776. BOOL FreeService;
  1777. };
  1778. struct ServiceType_ISO15118_2014
  1779. {
  1780. unsigned short ServiceID;
  1781. unsigned char ServiceName[32]; //Optional
  1782. enum ServiceCategoryType ServiceCategory;
  1783. unsigned char ServiceScope[64]; //Optional
  1784. BOOL FreeService;
  1785. };
  1786. /*struct ServiceType_ISO15118_2018
  1787. {
  1788. unsigned short ServiceID;
  1789. BOOL FreeService;
  1790. }; */
  1791. struct SupportedEnergyTransferModeType
  1792. {
  1793. enum EnergyTransferModeType EnergyTransferMode[6];
  1794. };
  1795. struct ServiceChargeType
  1796. {
  1797. struct ServiceType_DIN70121 Services;
  1798. //enum EVSESupportedEnergyTransferType EnergyTransferType;
  1799. enum EnergyTransferModeType EnergyTransferType;
  1800. };
  1801. struct ChargeServiceType
  1802. {
  1803. struct ServiceType_ISO15118_2014 Services;
  1804. struct SupportedEnergyTransferModeType SupportedEnergyTransferMode;
  1805. };
  1806. struct ServiceListType
  1807. {
  1808. struct ServiceType_ISO15118_2014 Service[8];
  1809. };
  1810. struct IdentificationOptionListType
  1811. {
  1812. enum PaymentOptionType IdentificationOption[2];
  1813. };
  1814. struct ParameterType
  1815. {
  1816. unsigned char Name[32];
  1817. struct PhysicalValueType_ISO15118_2014 PhysicalValue_ISO15118_2014;
  1818. struct PhysicalValueType_ISO15118_2018 PhysicalValue_ISO15118_2018;
  1819. };
  1820. struct ParameterSetType
  1821. {
  1822. short ParameterSetID;
  1823. struct ParameterType Parameter[16];
  1824. };
  1825. struct ServiceParameterListType
  1826. {
  1827. struct ParameterSetType ParameterSet[255];
  1828. };
  1829. struct WPT_SDlEnergyTransferModeType
  1830. {
  1831. struct ServiceParameterListType ServiceParameterList;
  1832. };
  1833. struct SelectedServiceType
  1834. {
  1835. unsigned short ServiceID;
  1836. short ParameterSetID;
  1837. };
  1838. struct SelectedServiceListType
  1839. {
  1840. struct SelectedServiceType SelectedService[16];
  1841. };
  1842. struct CertificateChainType
  1843. {
  1844. unsigned char Id[32]; //Optional
  1845. unsigned char Certificate[800]; //check size again
  1846. unsigned char SubCertificates[4][800]; //Optional, check size again
  1847. };
  1848. struct PNC_AReqIdentificationModeType
  1849. {
  1850. unsigned char GenChallenge[16]; //DIN70121=> None, ISO15118_2014=>None, ISO15118_2018=>Optional
  1851. unsigned char Id[32]; //DIN70121=> None, ISO15118_2014=>None, ISO15118_2018=>Optional
  1852. };
  1853. struct AC_EVChargeParameterType
  1854. {
  1855. unsigned int DepartureTime; //Optional
  1856. struct PhysicalValueType_ISO15118_2014 EAmount;
  1857. struct PhysicalValueType_ISO15118_2014 EVMaxVoltage;
  1858. struct PhysicalValueType_ISO15118_2014 EVMaxCurrent;
  1859. struct PhysicalValueType_ISO15118_2014 EVMinCurrent;
  1860. };
  1861. struct DC_EVStatusType_DIN70121
  1862. {
  1863. BOOL EVReady;
  1864. BOOL EVCabinConditioning;
  1865. BOOL EVRESSConiditioning;
  1866. enum DC_EVErrorCodeType EVErrorCode;
  1867. unsigned char EVRESSSOC; /*0-100 percentage*/
  1868. };
  1869. struct DC_EVChargeParameterType_DIN70121
  1870. {
  1871. struct DC_EVStatusType_DIN70121 DC_EVStatus;
  1872. struct PhysicalValueType_DIN70121 EVMaximumCurrentLimit;
  1873. struct PhysicalValueType_DIN70121 EVMaximumPowerLimit; //Optional
  1874. struct PhysicalValueType_DIN70121 EVMaximumVoltageLimit;
  1875. struct PhysicalValueType_DIN70121 EVEnergyCapacity; //Optional
  1876. struct PhysicalValueType_DIN70121 EVEnergyRequest; //Optional
  1877. unsigned char FullSOC;/*0-100 percentage*/ //Optional
  1878. unsigned char BulkSOC;/*0-100 percentage*/ //Optional
  1879. };
  1880. struct DC_EVStatusType_ISO15118_2014
  1881. {
  1882. BOOL EVReady;
  1883. enum DC_EVErrorCodeType EVErrorCode;
  1884. unsigned char EVRESSSOC; /*0-100 percentage*/
  1885. };
  1886. struct DC_EVChargeParameterType_ISO15118_2014
  1887. {
  1888. unsigned int DepartureTime; //Optional
  1889. struct DC_EVStatusType_ISO15118_2014 DC_EVStatus;
  1890. struct PhysicalValueType_ISO15118_2014 EVMaximumCurrentLimit;
  1891. struct PhysicalValueType_ISO15118_2014 EVMaximumPowerLimit; //Optional
  1892. struct PhysicalValueType_ISO15118_2014 EVMaximumVoltageLimit;
  1893. struct PhysicalValueType_ISO15118_2014 EVEnergyCapacity; //Optional
  1894. struct PhysicalValueType_ISO15118_2014 EVEnergyRequest; //Optional
  1895. unsigned char FullSOC;/*0-100 percentage*/ //Optional
  1896. unsigned char BulkSOC;/*0-100 percentage*/ //Optional
  1897. };
  1898. struct Dynamic_CPDReqControlModeType
  1899. {
  1900. unsigned int DepartureTime;
  1901. };
  1902. struct RelativeTimeIntervalType
  1903. {
  1904. unsigned int duration; //Optional
  1905. unsigned int start;
  1906. };
  1907. struct PMaxScheduleEntryType
  1908. {
  1909. struct RelativeTimeIntervalType RelativeTimeInterval;
  1910. unsigned short PMax;
  1911. };
  1912. struct PMaxScheduleType
  1913. {
  1914. unsigned short PMaxScheduleID; //no this itme in ISO15118_2014
  1915. struct PMaxScheduleEntryType PMaxScheduleEntry[1024];
  1916. };
  1917. struct CostType
  1918. {
  1919. unsigned int amount;
  1920. enum CostKindType costKind;
  1921. int amountMultiplier; //Optional , range: -3..+3
  1922. };
  1923. struct ConsumptionCostType
  1924. {
  1925. struct CostType Cost[3];
  1926. struct PhysicalValueType_ISO15118_2014 startValue;
  1927. };
  1928. struct SalesTariffEntryType
  1929. {
  1930. struct RelativeTimeIntervalType RelativeTimeInterval;
  1931. unsigned char EPriceLevel; //Optional
  1932. struct ConsumptionCostType ConsumptionCost[3]; //Optional
  1933. };
  1934. struct SalesTariffType
  1935. {
  1936. unsigned char Id[32]; //Optional
  1937. short SalesTariffID;
  1938. unsigned char SalesTariffDescription[32]; //Optional
  1939. unsigned char NumEPriceLevels; //Optional
  1940. struct SalesTariffEntryType SalesTariffEntry[1024];
  1941. };
  1942. struct SAScheduleTupleType
  1943. {
  1944. short SAScheduleTupleID;
  1945. struct PMaxScheduleType PMaxSchedule;
  1946. struct SalesTariffType SalesTariff; //Optional
  1947. };
  1948. struct ScheduleListType
  1949. {
  1950. enum ScheduleOriginType ScheduleOrigin;
  1951. struct SAScheduleTupleType ScheduleTuple[3];
  1952. };
  1953. struct Scheduled_CPDReqControlModeType
  1954. {
  1955. enum ProcessingType EVProcessing;
  1956. unsigned int DepartureTime; //Optional
  1957. unsigned short MaxSupportingPoints;
  1958. struct ScheduleListType ScheduleList; //Optional
  1959. };
  1960. struct AC_CPDReqEnergyTransferModeType
  1961. {
  1962. struct PhysicalValueType_ISO15118_2018 EVTargetEnergyRequest; //Optional
  1963. struct PhysicalValueType_ISO15118_2018 EVMaximumEnergyRequest; //Optional
  1964. struct PhysicalValueType_ISO15118_2018 EVMinimumEnergyRequest; //Optional
  1965. struct PhysicalValueType_ISO15118_2018 EVMaximumChargePower;
  1966. struct PhysicalValueType_ISO15118_2018 EVMaximumChargeCurrent;
  1967. struct PhysicalValueType_ISO15118_2018 EVMinimumChargeCurrent;
  1968. struct PhysicalValueType_ISO15118_2018 EVMaximumVoltage;
  1969. };
  1970. struct DC_CPDReqEnergyTransferModeType
  1971. {
  1972. struct PhysicalValueType_ISO15118_2018 EVMaximumChargePower; //Optional
  1973. struct PhysicalValueType_ISO15118_2018 EVMinimumChargePower; //Optional
  1974. struct PhysicalValueType_ISO15118_2018 EVMaximumChargeCurrent;
  1975. struct PhysicalValueType_ISO15118_2018 EVMinimumChargeCurrent;
  1976. struct PhysicalValueType_ISO15118_2018 EVMaximumVoltage;
  1977. struct PhysicalValueType_ISO15118_2018 EVTargetEnergyRequest; //Optional
  1978. struct PhysicalValueType_ISO15118_2018 EVMaximumEnergyRequest; //Optional
  1979. struct PhysicalValueType_ISO15118_2018 EVMinimumEnergyRequest; //Optional
  1980. unsigned char TargetSOC; //Optional
  1981. unsigned char BulkSOC; //Optional
  1982. };
  1983. struct BPT_AC_CPDReqEnergyTransferModeType
  1984. {
  1985. struct PhysicalValueType_ISO15118_2018 EVMaximumChargePower;
  1986. struct PhysicalValueType_ISO15118_2018 EVMaximumDischargePower;
  1987. struct PhysicalValueType_ISO15118_2018 EVMinimumDischargePower;
  1988. struct PhysicalValueType_ISO15118_2018 EVMaximumChargeCurrent;
  1989. struct PhysicalValueType_ISO15118_2018 EVMaximumDischargeCurrent;
  1990. struct PhysicalValueType_ISO15118_2018 EVMinimumChargeCurrent;
  1991. struct PhysicalValueType_ISO15118_2018 EVMinimumDischargeCurrent;
  1992. struct PhysicalValueType_ISO15118_2018 EVTargetEnergyRequest; //Optional
  1993. struct PhysicalValueType_ISO15118_2018 EVMinimumEnergyRequest; //Optional
  1994. struct PhysicalValueType_ISO15118_2018 EVMaximumEnergyRequest; //Optional
  1995. struct PhysicalValueType_ISO15118_2018 EVMaximumVoltage;
  1996. };
  1997. struct BPT_DC_CPDReqEnergyTransferModeType
  1998. {
  1999. struct PhysicalValueType_ISO15118_2018 EVMaximumChargePower;
  2000. struct PhysicalValueType_ISO15118_2018 EVMinimumChargePower;
  2001. struct PhysicalValueType_ISO15118_2018 EVMaximumDischargePower;
  2002. struct PhysicalValueType_ISO15118_2018 EVMinimumDischargePower;
  2003. struct PhysicalValueType_ISO15118_2018 EVMaximumChargeCurrent;
  2004. struct PhysicalValueType_ISO15118_2018 EVMinimumChargeCurrent;
  2005. struct PhysicalValueType_ISO15118_2018 EVMaximumDischargeCurrent;
  2006. struct PhysicalValueType_ISO15118_2018 EVMinimumDischargeCurrent;
  2007. struct PhysicalValueType_ISO15118_2018 EVMaximumVoltage;
  2008. struct PhysicalValueType_ISO15118_2018 EVMinimumVoltage;
  2009. struct PhysicalValueType_ISO15118_2018 EVTargetEnergyRequest;
  2010. struct PhysicalValueType_ISO15118_2018 EVMaximumEnergyRequest;
  2011. struct PhysicalValueType_ISO15118_2018 EVMinimumEnergyRequest;
  2012. unsigned char TargetSOC; //Optional
  2013. unsigned char BulkSOC; //Optional
  2014. };
  2015. struct WPT_CPDReqEnergyTransferModeType
  2016. {
  2017. struct PhysicalValueType_ISO15118_2018 EVMaximumPower; //Optional
  2018. struct PhysicalValueType_ISO15118_2018 EVMinimumPower; //Optional
  2019. struct PhysicalValueType_ISO15118_2018 EVTargetEnergyRequest; //Optional
  2020. struct PhysicalValueType_ISO15118_2018 EVMaximumEnergyRequest; //Optional
  2021. struct PhysicalValueType_ISO15118_2018 EVMinimumEnergyRequest; //Optional
  2022. };
  2023. struct ACD_CPDReqEnergyTransferModeType
  2024. {
  2025. //cannot be found in standard
  2026. };
  2027. struct SAScheduleListType
  2028. {
  2029. struct SAScheduleTupleType SAScheduleTuple[3];
  2030. };
  2031. struct DC_EVSEStatusType_DIN70121
  2032. {
  2033. enum IsolationLevelType_DIN70121 EVSEIsolationStatus; //Optional
  2034. enum DC_EVSEStatusCodeType EVSEStatusCode;
  2035. unsigned int NotificationMaxDelay;
  2036. enum EVSENotificationType EVSENotification;
  2037. };
  2038. struct DC_EVSEChargeParameterType_DIN70121
  2039. {
  2040. struct DC_EVSEStatusType_DIN70121 DC_EVSEStatus;
  2041. struct PhysicalValueType_DIN70121 EVSEMaximumCurrentLimit;
  2042. struct PhysicalValueType_DIN70121 EVSEMaximumPowerLimit; //Optional
  2043. struct PhysicalValueType_DIN70121 EVSEMaximumVoltageLimit;
  2044. struct PhysicalValueType_DIN70121 EVSEMinimumCurrentLimit;
  2045. struct PhysicalValueType_DIN70121 EVSEMinimumVoltageLimit;
  2046. struct PhysicalValueType_DIN70121 EVSECurrentRegulationTolerance; //Optional
  2047. struct PhysicalValueType_DIN70121 EVSEPeakCurrentRipple;
  2048. struct PhysicalValueType_DIN70121 EVSEEnergyToBeDelivered; //Optional
  2049. };
  2050. struct AC_EVSEStatusType
  2051. {
  2052. BOOL RCD;
  2053. unsigned short NotificationMaxDelay;
  2054. enum EVSENotificationType EVSENotification; //need to be confirmed
  2055. };
  2056. struct AC_EVSEChargeParameterType
  2057. {
  2058. struct AC_EVSEStatusType AC_EVSEStatus;
  2059. struct PhysicalValueType_ISO15118_2014 EVSENominalVoltage;
  2060. struct PhysicalValueType_ISO15118_2014 EVSEMaxCurrent;
  2061. };
  2062. struct DC_EVSEStatusType_ISO15118_2014
  2063. {
  2064. unsigned short NotificationMaxDelay;
  2065. enum EVSENotificationType EVSENotification;
  2066. enum IsolationLevelType_ISO15118_2014 EVSEIsolationStatus; //Optional
  2067. enum DC_EVSEStatusCodeType DC_EVSEStatusCode;
  2068. };
  2069. struct DC_EVSEChargeParameterType_ISO15118_2014
  2070. {
  2071. struct DC_EVSEStatusType_ISO15118_2014 DC_EVSEStatus;
  2072. struct PhysicalValueType_ISO15118_2014 EVSEMaximumCurrentLimit;
  2073. struct PhysicalValueType_ISO15118_2014 EVSEMaximumPowerLimit;
  2074. struct PhysicalValueType_ISO15118_2014 EVSEMaximumVoltageLimit;
  2075. struct PhysicalValueType_ISO15118_2014 EVSEMinimumCurrentLimit;
  2076. struct PhysicalValueType_ISO15118_2014 EVSEMinimumVoltageLimit;
  2077. struct PhysicalValueType_ISO15118_2014 EVSECurrentRegulationTolerance; //Optional
  2078. struct PhysicalValueType_ISO15118_2014 EVSEPeakCurrentRipple;
  2079. struct PhysicalValueType_ISO15118_2014 EVSEEnergyToBeDelivered; //Optional
  2080. };
  2081. struct Scheduled_CPDResControlModeType
  2082. {
  2083. struct ScheduleListType ScheduleList;
  2084. };
  2085. struct AC_CPDResEnergyTransferModeType
  2086. {
  2087. struct PhysicalValueType_ISO15118_2018 EVSEMaximumChargeCurrent[3];
  2088. struct PhysicalValueType_ISO15118_2018 EVSENominalVoltage;
  2089. struct PhysicalValueType_ISO15118_2018 EVSENominalFrequency;
  2090. };
  2091. struct DC_CPDResEnergyTransferModeType
  2092. {
  2093. struct PhysicalValueType_ISO15118_2018 EVSEMaximumChargePower;
  2094. struct PhysicalValueType_ISO15118_2018 EVSEMaximumChargeCurrent;
  2095. struct PhysicalValueType_ISO15118_2018 EVSEMinimumChargeCurrent;
  2096. struct PhysicalValueType_ISO15118_2018 EVSEMaximumVoltage;
  2097. struct PhysicalValueType_ISO15118_2018 EVSEMinimumVoltage;
  2098. };
  2099. struct BPT_AC_CPDResEnergyTransferModeType
  2100. {
  2101. struct PhysicalValueType_ISO15118_2018 EVSEMaximumChargeCurrent[3];
  2102. struct PhysicalValueType_ISO15118_2018 EVSEMaximumDischargeCurrent[3];
  2103. struct PhysicalValueType_ISO15118_2018 EVSENominalVoltage;
  2104. struct PhysicalValueType_ISO15118_2018 EVSENominalFrequency;
  2105. };
  2106. struct BPT_DC_CPDResEnergyTransferModeType
  2107. {
  2108. struct PhysicalValueType_ISO15118_2018 EVSEMaximumChargePower;
  2109. struct PhysicalValueType_ISO15118_2018 EVSEMaximumDischargePower;
  2110. struct PhysicalValueType_ISO15118_2018 EVSEMaximumChargeCurrent;
  2111. struct PhysicalValueType_ISO15118_2018 EVSEMaximumDischargeCurrent;
  2112. struct PhysicalValueType_ISO15118_2018 EVSEMinimumChargeCurrent;
  2113. struct PhysicalValueType_ISO15118_2018 EVSEMinimumDischargeCurrent;
  2114. struct PhysicalValueType_ISO15118_2018 EVSEMaximumVoltage;
  2115. struct PhysicalValueType_ISO15118_2018 EVSEMinimumVoltage;
  2116. };
  2117. struct WPT_CPDResEnergyTransferModeType
  2118. {
  2119. struct PhysicalValueType_ISO15118_2018 EVSEMaximumPower;
  2120. struct PhysicalValueType_ISO15118_2018 EVSEMinimumPower;
  2121. };
  2122. struct ACD_CPDResEnergyTransferModeType
  2123. {
  2124. //not found in ISO15118_2018
  2125. };
  2126. struct ProfileEntryType_DIN70121
  2127. {
  2128. unsigned int ChargingProfileEntryStart;
  2129. short ChargingProfileEntryMaxPower;
  2130. };
  2131. struct ChargingProfileType_DIN70121
  2132. {
  2133. short SAScheduleTupleID;
  2134. struct ProfileEntryType_DIN70121 ProfileEntry[24];
  2135. };
  2136. struct DC_EVPowerDeliveryParameterType_DIN70121
  2137. {
  2138. struct DC_EVStatusType_DIN70121 DC_EVStatus;
  2139. BOOL BulkChargingComplete; //Optional
  2140. BOOL ChargingComplete;
  2141. };
  2142. struct ProfileEntryType_ISO15118_2014
  2143. {
  2144. unsigned int ChargingProfileEntryStart;
  2145. struct PhysicalValueType_ISO15118_2018 ChargingProfileEntryMaxPower;
  2146. unsigned char ChargingProfileEntryMaxNumberOfPhasesInUse; //Optional
  2147. };
  2148. struct ChargingProfileType_ISO15118_2014
  2149. {
  2150. struct ProfileEntryType_ISO15118_2014 ProfileEntry[24];
  2151. };
  2152. struct DC_EVPowerDeliveryParameterType_ISO15118_2014
  2153. {
  2154. struct DC_EVStatusType_ISO15118_2014 DC_EVStatus;
  2155. BOOL BulkChargingComplete; //Optional
  2156. BOOL ChargingComplete;
  2157. };
  2158. struct TimeInterval
  2159. {
  2160. unsigned int start;
  2161. unsigned int duration; //Optional
  2162. };
  2163. struct PowerScheduleEntryType
  2164. {
  2165. struct TimeInterval TimeInterval;
  2166. struct PhysicalValueType_ISO15118_2018 Power[3];
  2167. };
  2168. struct EVPowerProfileType
  2169. {
  2170. struct PowerScheduleEntryType EVPowerProfileEntry[2048];
  2171. };
  2172. struct Scheduled_PDReqControlModeType
  2173. {
  2174. unsigned char ScheduleTupleID;
  2175. struct EVPowerProfileType EVPowerProfile;
  2176. };
  2177. struct BPT_Scheduled_PDReqControlModeType
  2178. {
  2179. unsigned char ScheduleTupleID;
  2180. struct EVPowerProfileType EVPowerProfile; //Optional
  2181. enum evOperationType EVOperation;
  2182. };
  2183. struct ListOfRootCertificateIDsType
  2184. {
  2185. unsigned char RootCertificateID[20][40];
  2186. };
  2187. struct ContractSignatureEncryptedPrivateKeyType
  2188. {
  2189. unsigned char Id[32];
  2190. };
  2191. struct DiffieHellmanPublickeyType
  2192. {
  2193. unsigned char Id[32];
  2194. };
  2195. struct ContractCertificateEncryptedPrivateKeyType
  2196. {
  2197. unsigned char Id[32];
  2198. };
  2199. struct EVTechnicalStatusType
  2200. {
  2201. BOOL EV_Status_ReadyToCharge;
  2202. BOOL EV_Status_ImmobilizationRequest; //Optional
  2203. BOOL EV_Status_Immobilized;
  2204. struct PhysicalValueType_ISO15118_2018 EV_Status_WLAN_Strength;
  2205. enum EV_CP_StatusType EV_CP_Status;
  2206. unsigned char EV_Status_RESSSOC; //0~100%
  2207. enum EV_Error_Status_CodeType EV_Error_Status_Code;
  2208. BOOL EVSE_Timeout;
  2209. };
  2210. struct MeterInfoType_ISO15118_2014
  2211. {
  2212. unsigned char MeterID[32];
  2213. unsigned long MeterReading; //Optional
  2214. unsigned char SigMeterReading[64]; //Optional
  2215. short MeterStatus; //Optional
  2216. short TMeter; //Optional
  2217. };
  2218. struct Scheduled_MRReqControlModeType
  2219. {
  2220. unsigned char ScheduleTupleID;
  2221. };
  2222. struct MeterInfoType_ISO15118_2018
  2223. {
  2224. unsigned char MeterID[32];
  2225. unsigned long MeterReadingWhCharged; //Optional
  2226. unsigned long MeterReadingWhDischarged; //Optional
  2227. unsigned long MeterReadingVARhLeading; //Optional
  2228. unsigned long MeterReadingVARhLagging; //Optional
  2229. unsigned char SignatureMeterReading[64]; //Optional
  2230. short MeterStatus; //Optional
  2231. short TimeStampMeter; //Optional
  2232. BOOL ReceiptRequired; //Optional
  2233. };
  2234. struct PnC_CLReqIdentificationModeType
  2235. {
  2236. BOOL MeteringReceiptRequested;
  2237. };
  2238. struct Dynamic_CSReqControlModeType
  2239. {
  2240. struct PhysicalValueType_ISO15118_2018 EVTargetEnergyRequest;
  2241. struct PhysicalValueType_ISO15118_2018 EVMaximumEnergyRequest;
  2242. struct PhysicalValueType_ISO15118_2018 EVMinimumEnergyRequest;
  2243. struct PhysicalValueType_ISO15118_2018 EVMaximumChargePower;
  2244. struct PhysicalValueType_ISO15118_2018 EVMaximumChargeCurrent;
  2245. struct PhysicalValueType_ISO15118_2018 EVMinimumChargeCurrent;
  2246. };
  2247. struct Scheduled_CSReqControlModeType
  2248. {
  2249. struct PhysicalValueType_ISO15118_2018 EVTargetEnergyRequest; //Optional
  2250. struct PhysicalValueType_ISO15118_2018 EVMaximumEnergyRequest; //Optional
  2251. struct PhysicalValueType_ISO15118_2018 EVMinimumEnergyRequest; //Optional
  2252. BOOL Standby;
  2253. struct PhysicalValueType_ISO15118_2018 EVMaximumChargePower; //Optional
  2254. struct PhysicalValueType_ISO15118_2018 EVMaximumChargeCurrent; //Optional
  2255. struct PhysicalValueType_ISO15118_2018 EVMinimumChargeCurrent; //Optional
  2256. };
  2257. struct DisplayParametersType
  2258. {
  2259. unsigned short CurrentRange;
  2260. unsigned char CurrentSOC; //0~100%
  2261. unsigned char MinimumSOC; //0~100%
  2262. struct PhysicalValueType_ISO15118_2018 RemainingTimeToMaximumSOC;
  2263. struct PhysicalValueType_ISO15118_2018 RemainingTimeToTargetSOC;
  2264. struct PhysicalValueType_ISO15118_2018 RemainingTimeToBulkSOC;
  2265. struct PhysicalValueType_ISO15118_2018 RemainingTimeToMinimumSOC;
  2266. BOOL ChargingComplete;
  2267. BOOL BulkChargingComplete;
  2268. BOOL InletHot;
  2269. };
  2270. struct PnC_CLResIdentificationModeType
  2271. {
  2272. struct MeterInfoType_ISO15118_2018 MeterInfo;
  2273. };
  2274. struct Dynamic_CSResControlModeType
  2275. {
  2276. struct PhysicalValueType_ISO15118_2018 EVSETargetActivePower;
  2277. };
  2278. struct Scheduled_CDResControlModeType
  2279. {
  2280. struct PhysicalValueType_ISO15118_2018 EVSEMaximumChargePower; //Optional
  2281. struct PhysicalValueType_ISO15118_2018 EVSEMaximumChargeCurrent; //Optional
  2282. struct PhysicalValueType_ISO15118_2018 EVSEMaximumVoltage; //Optional
  2283. };
  2284. struct LFA_EVFinePositioningSetupParametersType
  2285. {
  2286. unsigned char NumberOfSensors;
  2287. //NOT complete yet, to be continue.....
  2288. };
  2289. /****SupportedAppProtocolRequest****/
  2290. struct SupportedAppProtocolRequest_DIN70121
  2291. {
  2292. struct AppProtocolType AppProtocol[20];
  2293. };
  2294. struct SupportedAppProtocolRequest_ISO15118_2014
  2295. {
  2296. struct AppProtocolType AppProtocol[20];
  2297. };
  2298. struct SupportedAppProtocolRequest_ISO15118_2018
  2299. {
  2300. struct AppProtocolType AppProtocol[20];
  2301. };
  2302. /****SupportedAppProtocolResponse****/
  2303. struct SupportedAppProtocolResponse_DIN70121
  2304. {
  2305. enum ResponseCodeType_DIN70121 ResponseCode;
  2306. unsigned char SchemaID; //Optional
  2307. };
  2308. struct SupportedAppProtocolResponse_ISO15118_2014
  2309. {
  2310. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2311. unsigned char SchemaID; //Optional
  2312. };
  2313. struct SupportedAppProtocolResponse_ISO15118_2018
  2314. {
  2315. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2316. unsigned char SchemaID; //Optional
  2317. };
  2318. /****SessionSetupRequest****/
  2319. struct SessionSetupRequest_DIN70121
  2320. {
  2321. unsigned char EVCCID[8]; //the MAC address of the EVCC in Hex
  2322. };
  2323. struct SessionSetupRequest_ISO15118_2014
  2324. {
  2325. unsigned char EVCCID[8]; //the MAC address of the EVCC in Hex
  2326. };
  2327. struct SessionSetupRequest_ISO15118_2018
  2328. {
  2329. unsigned char EVCCID[8]; //the MAC address of the EVCC in Hex
  2330. struct ACD_SSEnergyTransferModeType ACD_SSEnergyTransferMode; //For ACD mandatory, optional for rest
  2331. };
  2332. /****SessionSetupResponse****/
  2333. struct SessionSetupResponse_DIN70121
  2334. {
  2335. enum ResponseCodeType_DIN70121 ResponseCode;
  2336. unsigned char EVSEID[40]; //DIN70121=>Max length:32, ISO15118=>min length:7, max length:37
  2337. unsigned int EVSETimeStamp; //EPOCH format, Optional
  2338. };
  2339. struct SessionSetupResponse_ISO15118_2014
  2340. {
  2341. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2342. unsigned char EVSEID[40]; //DIN70121=>Max length:32, ISO15118=>min length:7, max length:37
  2343. unsigned int EVSETimeStamp; //EPOCH format, Optional
  2344. };
  2345. struct SessionSetupResponse_ISO15118_2018
  2346. {
  2347. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2348. unsigned char EVSEID[40]; //DIN70121=>Max length:32, ISO15118=>min length:7, max length:37
  2349. struct EVSEStatusType EVSEStatus; //Optional
  2350. };
  2351. /****ServiceDiscoveryRequest****/
  2352. struct ServiceDiscoveryRequest_DIN70121
  2353. {
  2354. unsigned char ServiceScope[32]; //Optional
  2355. enum ServiceCategoryType ServiceCategory; //Optional
  2356. };
  2357. struct ServiceDiscoveryRequest_ISO15118_2014
  2358. {
  2359. unsigned char ServiceScope[32]; //Optional
  2360. enum ServiceCategoryType ServiceCategory; //Optional
  2361. };
  2362. struct ServiceDiscoveryRequest_ISO15118_2018
  2363. {
  2364. struct ServiceIDListType SupportedServiceIDs; //Optional
  2365. };
  2366. /****ServiceDiscoveryResponse****/
  2367. struct ServiceDiscoveryResponse_DIN70121
  2368. {
  2369. enum ResponseCodeType_DIN70121 ResponseCode;
  2370. struct PaymentOptionListType PaymentOptions;
  2371. struct ServiceChargeType ChargeService_DIN70121;
  2372. };
  2373. struct ServiceDiscoveryResponse_ISO15118_2014
  2374. {
  2375. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2376. struct PaymentOptionListType PaymentOptions;
  2377. struct ChargeServiceType ChargeService;
  2378. struct ServiceListType ServiceList; //Optional
  2379. };
  2380. struct ServiceDiscoveryResponse_ISO15118_2018
  2381. {
  2382. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2383. struct EVSEStatusType EVSEStatus; //Optional
  2384. struct IdentificationOptionListType IdentificationOptionList;
  2385. struct ServiceListType EnergyTransferServiceList;
  2386. struct ServiceListType VASList; //Optional
  2387. };
  2388. /****ServiceDetailRequest****/
  2389. //Only in ISO15118_2014 and ISO15118_2018
  2390. struct ServiceDetailRequest_ISO15118_2014
  2391. {
  2392. unsigned short ServiceID;
  2393. };
  2394. struct ServiceDetailRequest_ISO15118_2018
  2395. {
  2396. unsigned short ServiceID;
  2397. struct WPT_SDlEnergyTransferModeType WPT_SDlEnergyTransferMode;
  2398. };
  2399. /****ServiceDetailResponse****/
  2400. struct ServiceDetailResponse_ISO15118_2014
  2401. {
  2402. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2403. unsigned short ServiceID;
  2404. struct ServiceParameterListType ServiceParameterList;
  2405. };
  2406. struct ServiceDetailResponse_ISO15118_2018
  2407. {
  2408. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2409. unsigned short ServiceID;
  2410. struct ServiceParameterListType ServiceParameterList;
  2411. struct EVSEStatusType EVSEStatus; //Optional
  2412. };
  2413. /****ServiceAndPaymentSelectionRequest / ServiceSelectionRequest****/
  2414. struct ServiceAndPaymentSelectionRequest_DIN70121
  2415. {
  2416. enum PaymentOptionType SelectedPaymentOption;
  2417. struct SelectedServiceListType SelectedServiceList;
  2418. };
  2419. struct ServiceAndPaymentSelectionRequest_ISO15118_2014
  2420. {
  2421. enum PaymentOptionType SelectedPaymentOption;
  2422. struct SelectedServiceListType SelectedServiceList;
  2423. };
  2424. struct ServiceSelectionRequest_ISO15118_2018
  2425. {
  2426. enum PaymentOptionType SelectedPaymentOption;
  2427. struct SelectedServiceType SelectedEnergyTransferService;
  2428. struct SelectedServiceListType SelectedVASList;
  2429. enum ProcessingType EVProcessing;
  2430. };
  2431. /****ServiceAndPaymentSelectionResponse / ServiceSelectionResponse****/
  2432. struct ServiceAndPaymentSelectionResponse_DIN70121
  2433. {
  2434. enum ResponseCodeType_DIN70121 ResponseCode;
  2435. };
  2436. struct ServiceAndPaymentSelectionResponse_ISO15118_2014
  2437. {
  2438. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2439. };
  2440. struct ServiceSelectionResponse_ISO15118_2018
  2441. {
  2442. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2443. struct EVSEStatusType EVSEStatus; //Optional
  2444. };
  2445. /****PaymentDetailsRequest / IdentificationDetailsRequest****/
  2446. struct PaymentDetailsRequest_ISO15118_2014
  2447. {
  2448. unsigned char eMAID[16];
  2449. struct CertificateChainType ContractSignatureCertChain;
  2450. };
  2451. struct IdentificationDetailsRequest_ISO15118_2018
  2452. {
  2453. struct CertificateChainType ContractSignatureCertChain;
  2454. };
  2455. /****PaymentDetailsResponse / IdentificationDetailsResponse ****/
  2456. struct PaymentDetailsResponse_ISO15118_2014
  2457. {
  2458. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2459. unsigned char GenChallenge[16];
  2460. long EVSETimeStamp;
  2461. };
  2462. struct IdentificationDetailsResponse_ISO15118_2018
  2463. {
  2464. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2465. struct EVSEStatusType EVSEStatus; //Optional
  2466. unsigned char GenChallenge[16];
  2467. enum ProcessingType EVSEProcessing;
  2468. };
  2469. /****ContractAuthenticationRequest / AuthorizationRequest****/
  2470. struct ContractAuthenticationRequest_DIN70121
  2471. {
  2472. //None
  2473. };
  2474. struct AuthorizationRequest_ISO15118_2014
  2475. {
  2476. unsigned char GenChallenge[16]; //Optional
  2477. unsigned char Id[32]; //Optional
  2478. };
  2479. struct AuthorizationRequest_ISO15118_2018
  2480. {
  2481. struct PNC_AReqIdentificationModeType PNC_AReqIdentificationMode; //Optional
  2482. };
  2483. /****ContractAuthenticationResponse / AuthorizationResponse****/
  2484. struct ContractAuthenticationResponse_DIN70121
  2485. {
  2486. enum ResponseCodeType_DIN70121 ResponseCode;
  2487. enum EVSEProcessingType_DIN70121 EVSEProcessing;
  2488. };
  2489. struct AuthorizationResponse_ISO15118_2014
  2490. {
  2491. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2492. enum EVSEProcessingType_ISO15118_2014 EVSEProcessing;
  2493. };
  2494. struct AuthorizationResponse_ISO15118_2018
  2495. {
  2496. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2497. enum ProcessingType EVSEProcessing;
  2498. struct EVSEStatusType EVSEStatus; //Optional
  2499. };
  2500. /****ChargeParameterDiscoveryRequest****/
  2501. struct ChargeParameterDiscoveryRequest_DIN70121
  2502. {
  2503. enum EnergyTransferModeType EVRequestedEnergyTransferType;
  2504. struct DC_EVChargeParameterType_DIN70121 DC_EVChargeParameter;
  2505. };
  2506. struct ChargeParameterDiscoveryRequest_ISO15118_2014
  2507. {
  2508. unsigned short MaxEntriesSAScheduleTuple; //Optional
  2509. enum EnergyTransferModeType RequestedEnergyTransferMode;
  2510. struct AC_EVChargeParameterType AC_EVChargeParameter;
  2511. struct DC_EVChargeParameterType_ISO15118_2014 DC_EVChargeParameter;
  2512. };
  2513. struct ChargeParameterDiscoveryRequest_ISO15118_2018
  2514. {
  2515. struct Dynamic_CPDReqControlModeType Dynamic_CPDReqControlMode;
  2516. struct Scheduled_CPDReqControlModeType Scheduled_CPDReqControlMode;
  2517. struct AC_CPDReqEnergyTransferModeType AC_CPDReqEnergyTransferMode;
  2518. struct DC_CPDReqEnergyTransferModeType DC_CPDReqEnergyTransferMode;
  2519. struct BPT_AC_CPDReqEnergyTransferModeType BPT_AC_CPDReqEnergyTransferMode;
  2520. struct BPT_DC_CPDReqEnergyTransferModeType BPT_DC_CPDReqEnergyTransferMode;
  2521. struct WPT_CPDReqEnergyTransferModeType WPT_CPDReqEnergyTransferMode;
  2522. struct ACD_CPDReqEnergyTransferModeType ACD_CPDReqEnergyTransferMode;
  2523. };
  2524. /****ChargeParameterDiscoveryResponse****/
  2525. struct ChargeParameterDiscoveryResponse_DIN70121
  2526. {
  2527. enum ResponseCodeType_DIN70121 ResponseCode;
  2528. enum EVSEProcessingType_DIN70121 EVSEProcessing;
  2529. struct SAScheduleListType SAScheduleList;
  2530. struct DC_EVSEChargeParameterType_DIN70121 DC_EVSEChargeParameter;
  2531. };
  2532. struct ChargeParameterDiscoveryResponse_ISO15118_2014
  2533. {
  2534. enum EVSEProcessingType_ISO15118_2014 EVSEProcessing;
  2535. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2536. struct SAScheduleListType SAScheduleList;
  2537. struct AC_EVSEChargeParameterType AC_EVSEChargeParameter;
  2538. struct DC_EVSEChargeParameterType_ISO15118_2014 DC_EVSEChargeParameter;
  2539. };
  2540. struct ChargeParameterDiscoveryResponse_ISO15118_2018
  2541. {
  2542. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2543. struct EVSEStatusType EVSEStatus; //Optional
  2544. enum ProcessingType EVSEProcessing;
  2545. struct Scheduled_CPDResControlModeType Scheduled_CPDResControlMode; //Optional
  2546. struct AC_CPDResEnergyTransferModeType AC_CPDResEnergyTransferMode;
  2547. struct DC_CPDResEnergyTransferModeType DC_CPDResEnergyTransferMode;
  2548. struct BPT_AC_CPDResEnergyTransferModeType BPT_AC_CPDResEnergyTransferMode;
  2549. struct BPT_DC_CPDResEnergyTransferModeType BPT_DC_CPDResEnergyTransferMode;
  2550. struct WPT_CPDResEnergyTransferModeType WPT_CPDResEnergyTransferMode;
  2551. struct ACD_CPDResEnergyTransferModeType ACD_CPDResEnergyTransferMode;
  2552. };
  2553. /****PowerDeliveryRequest****/
  2554. struct PowerDeliveryRequest_DIN70121
  2555. {
  2556. BOOL ReadyToChargeState;
  2557. struct ChargingProfileType_DIN70121 ChargingProfile;
  2558. struct DC_EVPowerDeliveryParameterType_DIN70121 DC_EVPowerDeliveryParameter;
  2559. };
  2560. struct PowerDeliveryRequest_ISO15118_2014
  2561. {
  2562. enum ChargeProgressType_ISO15118_2014 ChargeProgress;
  2563. short SAScheduleTupleID;
  2564. struct ChargingProfileType_ISO15118_2014 ChargingProfile;
  2565. struct DC_EVPowerDeliveryParameterType_ISO15118_2014 DC_EVPowerDeliveryParameter;
  2566. };
  2567. struct PowerDeliveryRequest_ISO15118_2018
  2568. {
  2569. enum ChargeProgressType_ISO15118_2018 ChargeProgress;
  2570. struct Scheduled_PDReqControlModeType Scheduled_PDReqControlMode;
  2571. struct BPT_Scheduled_PDReqControlModeType BPT_Scheduled_PDReqControlMode;
  2572. };
  2573. /****PowerDeliveryResponse****/
  2574. struct PowerDeliveryResponse_DIN70121
  2575. {
  2576. enum ResponseCodeType_DIN70121 ResponseCode;
  2577. struct DC_EVSEStatusType_DIN70121 DC_EVSEStatus;
  2578. };
  2579. struct PowerDeliveryResponse_ISO15118_2014
  2580. {
  2581. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2582. struct AC_EVSEStatusType AC_EVSEStatus;
  2583. struct DC_EVSEStatusType_ISO15118_2014 DC_EVSEStatus;
  2584. };
  2585. struct PowerDeliveryResponse_ISO15118_2018
  2586. {
  2587. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2588. struct EVSEStatusType EVSEStatus; //Optional
  2589. };
  2590. /****CertificateUpdateRequest****/
  2591. struct CertificateUpdateRequest_ISO15118_2014
  2592. {
  2593. unsigned char Id[32];
  2594. struct CertificateChainType ContractSignatureCertChain;
  2595. unsigned char eMAID[16];
  2596. struct ListOfRootCertificateIDsType ListOfRootCertificateIDs;
  2597. };
  2598. /****CertificateUpdateResponse****/
  2599. struct CertificateUpdateResponse_ISO15118_2014
  2600. {
  2601. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2602. struct CertificateChainType SAProvisioningCertificateChain;
  2603. struct CertificateChainType ContractSignatureCertChain;
  2604. struct ContractSignatureEncryptedPrivateKeyType ContractSignatureEncryptedPrivateKey;
  2605. struct DiffieHellmanPublickeyType DHpublickey;
  2606. unsigned char eMAID[16];
  2607. short RetryCounter; //Optional
  2608. };
  2609. /****CertificateInstallationRequest****/
  2610. struct CertificateInstallationRequest_ISO15118_2014
  2611. {
  2612. unsigned char Id[32];
  2613. unsigned char OEMProvisioningCert[800];
  2614. struct ListOfRootCertificateIDsType ListOfRootCertificateIDs;
  2615. };
  2616. struct CertificateInstallationRequest_ISO15118_2018
  2617. {
  2618. unsigned char Id[32];
  2619. struct CertificateChainType OEMProvisioningCertChain;
  2620. struct ListOfRootCertificateIDsType ListOfRootCertificateIDs;
  2621. unsigned short MaxSupportedCerts;
  2622. };
  2623. /****CertificateInstallationResponse****/
  2624. struct CertificateInstallationResponse_ISO15118_2014
  2625. {
  2626. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2627. struct CertificateChainType SAProvisioningCertificateChain;
  2628. struct CertificateChainType ContractSignatureCertChain;
  2629. struct ContractSignatureEncryptedPrivateKeyType ContractSignatureEncryptedPrivateKey;
  2630. struct DiffieHellmanPublickeyType DHpublickey;
  2631. unsigned char eMAID[16];
  2632. };
  2633. struct CertificateInstallationResponse_ISO15118_2018
  2634. {
  2635. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2636. struct EVSEStatusType EVSEStatus; //Optional
  2637. struct CertificateChainType SAProvisioningCertificateChain;
  2638. struct CertificateChainType ContractCertificateChain;
  2639. struct ContractCertificateEncryptedPrivateKeyType ContractEncryptedPrivateKey;
  2640. struct DiffieHellmanPublickeyType DHpublickey;
  2641. enum ProcessingType EVSEProcessing;
  2642. unsigned short RemainingContractCertificateChains;
  2643. };
  2644. /****SystemStatusRequest****/
  2645. struct SystemStatusRequest_ISO15118_2018
  2646. {
  2647. enum mechanicalChargingDeviceStatusType EVMechanicalChargingDeviceStatus;
  2648. struct EVTechnicalStatusType EVTechnicalStatus;
  2649. unsigned char EV_OEMStatus[800]; //Optional
  2650. };
  2651. /****SystemStatusResponse****/
  2652. struct SystemStatusResponse_ISO15118_2018
  2653. {
  2654. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2655. enum mechanicalChargingDeviceStatusType EVSEMechanicalChargingDeviceStatus;
  2656. BOOL EVSE_ReadyToCharge;
  2657. enum IsolationStatusType EVSE_IsolationStatus;
  2658. BOOL EVSE_Disabled;
  2659. BOOL EVSE_UtilityInterruptEvent;
  2660. BOOL EVSE_EmergencyShutdown;
  2661. BOOL EVSE_Malfunction;
  2662. BOOL EV_InChargePosition;
  2663. BOOL EV_AssociationStatus;
  2664. };
  2665. /****SessionStopRequest****/
  2666. struct SessionStopRequest_DIN70121
  2667. {
  2668. //No member in standard
  2669. };
  2670. struct SessionStopRequest_ISO15118_2014
  2671. {
  2672. enum ChargingSessionType ChargingSession;
  2673. };
  2674. struct SessionStopRequest_ISO15118_2018
  2675. {
  2676. enum ChargingSessionType ChargingSession;
  2677. };
  2678. /****SessionStopResponse****/
  2679. struct SessionStopResponse_DIN70121
  2680. {
  2681. enum ResponseCodeType_DIN70121 ResponseCode;
  2682. };
  2683. struct SessionStopResponse_ISO15118_2014
  2684. {
  2685. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2686. };
  2687. struct SessionStopResponse_ISO15118_2018
  2688. {
  2689. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2690. struct EVSEStatusType EVSEStatus; //Optional
  2691. };
  2692. /****MeteringReceiptRequest****/
  2693. struct MeteringReceiptRequest_ISO15118_2014
  2694. {
  2695. unsigned char Id[32]; //Optional
  2696. unsigned char SessionID[8];
  2697. short SAScheduleTupleID; //Optional
  2698. struct MeterInfoType_ISO15118_2014 MeterInfo;
  2699. };
  2700. struct MeteringReceiptRequest_ISO15118_2018
  2701. {
  2702. unsigned char Id[32]; //Optional
  2703. unsigned char SessionID[8];
  2704. struct Scheduled_MRReqControlModeType Schedule_MRReqControlMode;
  2705. struct MeterInfoType_ISO15118_2018 MeterInfo;
  2706. };
  2707. /****MeteringReceiptResponse****/
  2708. struct MeteringReceiptResponse_ISO15118_2014
  2709. {
  2710. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2711. struct AC_EVSEStatusType AC_EVSEStatus;
  2712. struct DC_EVSEStatusType_ISO15118_2014 DC_EVSEStatus;
  2713. };
  2714. struct MeteringReceiptResponse_ISO15118_2018
  2715. {
  2716. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2717. struct EVSEStatusType EVSEStatus; //Optional
  2718. };
  2719. /****ChargingStatusRequest (AC Only)****/
  2720. struct ChargingStatusRequest_ISO15118_2014
  2721. {
  2722. //No member in standard
  2723. };
  2724. struct ChargingStatusRequest_ISO15118_2018
  2725. {
  2726. struct PnC_CLReqIdentificationModeType PnC_CLReqIdentificationMode;
  2727. struct Dynamic_CSReqControlModeType Dynamic_CSReqControlMode;
  2728. struct Scheduled_CSReqControlModeType Scheduled_CSReqControlMode;
  2729. struct DisplayParametersType DisplayParameters;
  2730. };
  2731. /****ChargingStatusResponse (AC Only)****/
  2732. struct ChargingStatusResponse_ISO15118_2014
  2733. {
  2734. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2735. unsigned char EVSEID[40]; //DIN70121=>Max length:32, ISO15118=>min length:7, max length:37
  2736. short SAScheduleTupleID;
  2737. struct PhysicalValueType_ISO15118_2014 EVSEMaxCurrent; //Optional
  2738. struct MeterInfoType_ISO15118_2014 MeterInfo; //Optional
  2739. BOOL ReceiptRequired; //Optional
  2740. struct AC_EVSEStatusType AC_EVSEStatus;
  2741. };
  2742. struct ChargingStatusResponse_ISO15118_2018
  2743. {
  2744. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2745. struct EVSEStatusType EVSEStatus; //Optional
  2746. unsigned char EVSEID[40]; //DIN70121=>Max length:32, ISO15118=>min length:7, max length:37
  2747. struct PhysicalValueType_ISO15118_2018 EVSETargetFrequency; //Optional
  2748. struct PnC_CLResIdentificationModeType PnC_CLResIdentificationMode;
  2749. struct Dynamic_CSResControlModeType Dynamic_CSResControlMode;
  2750. struct Scheduled_CSReqControlModeType Scheduled_CSReqControlMode;
  2751. };
  2752. /****CableCheckRequest (DC Only)****/
  2753. struct CableCheckRequest_DIN70121
  2754. {
  2755. struct DC_EVStatusType_DIN70121 DC_EVStatus;
  2756. };
  2757. struct CableCheckRequest_ISO15118_2014
  2758. {
  2759. struct DC_EVStatusType_ISO15118_2014 DC_EVStatus;
  2760. };
  2761. struct CableCheckRequest_ISO15118_2018
  2762. {
  2763. //No member in standard
  2764. };
  2765. /****CableCheckResponse (DC Only)****/
  2766. struct CableCheckResponse_DIN70121
  2767. {
  2768. enum ResponseCodeType_DIN70121 ResponseCode;
  2769. struct DC_EVSEStatusType_DIN70121 DC_EVSEStatus;
  2770. enum EVSEProcessingType_DIN70121 EVSEProcessing;
  2771. };
  2772. struct CableCheckResponse_ISO15118_2014
  2773. {
  2774. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2775. struct DC_EVSEStatusType_ISO15118_2014 DC_EVSEStatus;
  2776. enum EVSEProcessingType_ISO15118_2014 EVSEProcessing;
  2777. };
  2778. struct CableCheckResponse_ISO15118_2018
  2779. {
  2780. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2781. struct EVSEStatusType EVSEStatus; //Optional
  2782. enum ProcessingType EVSEProcessing;
  2783. };
  2784. /****PreChargeRequest (DC Only)****/
  2785. struct PreChargeRequest_DIN70121
  2786. {
  2787. struct DC_EVStatusType_DIN70121 DC_EVStatus;
  2788. struct PhysicalValueType_DIN70121 EVTargetVoltage;
  2789. struct PhysicalValueType_DIN70121 EVTargetCurrent;
  2790. };
  2791. struct PreChargeRequest_ISO15118_2014
  2792. {
  2793. struct DC_EVStatusType_ISO15118_2014 DC_EVStatus;
  2794. struct PhysicalValueType_ISO15118_2014 EVTargetVoltage;
  2795. struct PhysicalValueType_ISO15118_2014 EVTargetCurrent;
  2796. };
  2797. struct PreChargeRequest_ISO15118_2018
  2798. {
  2799. struct PhysicalValueType_ISO15118_2018 EVTargetVoltage;
  2800. struct PhysicalValueType_ISO15118_2018 EVTargetCurrent;
  2801. };
  2802. /****PreChargeResponse (DC Only)****/
  2803. struct PreChargeResponse_DIN70121
  2804. {
  2805. enum ResponseCodeType_DIN70121 ResponseCode;
  2806. struct DC_EVSEStatusType_DIN70121 DC_EVSEStatus;
  2807. struct PhysicalValueType_DIN70121 EVSEPresentVoltage;
  2808. };
  2809. struct PreChargeResponse_ISO15118_2014
  2810. {
  2811. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2812. struct DC_EVSEStatusType_ISO15118_2014 DC_EVSEStatus;
  2813. struct PhysicalValueType_ISO15118_2014 EVSEPresentVoltage;
  2814. };
  2815. struct PreChargeResponse_ISO15118_2018
  2816. {
  2817. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2818. struct EVSEStatusType EVSEStatus; //Optional
  2819. struct PhysicalValueType_ISO15118_2018 EVSEPresentVoltage;
  2820. };
  2821. /****CurrentDemandRequest (DC Only)****/
  2822. struct CurrentDemandRequest_DIN70121
  2823. {
  2824. struct DC_EVStatusType_DIN70121 DC_EVStatus;
  2825. struct PhysicalValueType_DIN70121 EVTargetCurrent;
  2826. struct PhysicalValueType_DIN70121 EVMaximumVoltageLimit; //Optional
  2827. struct PhysicalValueType_DIN70121 EVMaximumCurrentLimit; //Optional
  2828. struct PhysicalValueType_DIN70121 EVMaximumPowerLimit; //Optional
  2829. BOOL BulkChargingComplete; //Optional
  2830. BOOL ChargingComplete;
  2831. struct PhysicalValueType_DIN70121 RemainingTimeToFullSoC; //Optional
  2832. struct PhysicalValueType_DIN70121 RemainingTimeToBulkSoC; //Optional
  2833. struct PhysicalValueType_DIN70121 EVTargetVoltage;
  2834. };
  2835. struct CurrentDemandRequest_ISO15118_2014
  2836. {
  2837. struct DC_EVStatusType_ISO15118_2014 DC_EVStatus;
  2838. struct PhysicalValueType_ISO15118_2014 EVTargetCurrent;
  2839. struct PhysicalValueType_ISO15118_2014 EVMaximumVoltageLimit; //Optional
  2840. struct PhysicalValueType_ISO15118_2014 EVMaximumCurrentLimit; //Optional
  2841. struct PhysicalValueType_ISO15118_2014 EVMaximumPowerLimit; //Optional
  2842. BOOL BulkChargingComplete; //Optional
  2843. BOOL ChargingComplete;
  2844. struct PhysicalValueType_ISO15118_2014 RemainingTimeToFullSoC; //Optional
  2845. struct PhysicalValueType_ISO15118_2014 RemainingTimeToBulkSoC; //Optional
  2846. struct PhysicalValueType_ISO15118_2014 EVTargetVoltage;
  2847. };
  2848. struct CurrentDemandRequest_ISO15118_2018
  2849. {
  2850. struct DisplayParametersType DisplayParameters; //Optional
  2851. struct PnC_CLReqIdentificationModeType PnC_CLReqIdentificationMode;
  2852. struct Dynamic_CSReqControlModeType Dynamic_CDReqControlMode;
  2853. struct Scheduled_CSReqControlModeType Scheduled_CDReqControlMode;
  2854. };
  2855. /****CurrentDemandResponse (DC Only)****/
  2856. struct CurrentDemandResponse_DIN70121
  2857. {
  2858. enum ResponseCodeType_DIN70121 ResponseCode;
  2859. struct DC_EVSEStatusType_DIN70121 DC_EVSEStatus;
  2860. struct PhysicalValueType_DIN70121 EVSEPresentVoltage;
  2861. struct PhysicalValueType_DIN70121 EVSEPresentCurrent;
  2862. BOOL EVSECurrentLimitAchieved;
  2863. BOOL EVSEVoltageLimitAchieved;
  2864. BOOL EVSEPowerLimitAchieved;
  2865. struct PhysicalValueType_DIN70121 EVSEMaximumVoltageLimit; //Optional
  2866. struct PhysicalValueType_DIN70121 EVSEMaximumCurrentLimit; //Optional
  2867. struct PhysicalValueType_DIN70121 EVSEMaximumPowerLimit; //Optional
  2868. };
  2869. struct CurrentDemandResponse_ISO15118_2014
  2870. {
  2871. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2872. struct DC_EVSEStatusType_ISO15118_2014 DC_EVSEStatus;
  2873. struct PhysicalValueType_ISO15118_2014 EVSEPresentVoltage;
  2874. struct PhysicalValueType_ISO15118_2014 EVSEPresentCurrent;
  2875. BOOL EVSECurrentLimitAchieved;
  2876. BOOL EVSEVoltageLimitAchieved;
  2877. BOOL EVSEPowerLimitAchieved;
  2878. struct PhysicalValueType_ISO15118_2014 EVSEMaximumVoltageLimit; //Optional
  2879. struct PhysicalValueType_ISO15118_2014 EVSEMaximumCurrentLimit; //Optional
  2880. struct PhysicalValueType_ISO15118_2014 EVSEMaximumPowerLimit; //Optional
  2881. unsigned char EVSEID[40]; //DIN70121=>Max length:32, ISO15118=>min length:7, max length:37
  2882. short SAScheduleTupleID;
  2883. struct MeterInfoType_ISO15118_2014 MeterInfo; //Optional
  2884. BOOL ReceiptRequired; //Optional
  2885. };
  2886. struct CurrentDemandResponse_ISO15118_2018
  2887. {
  2888. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2889. struct EVSEStatusType EVSEStatus; //Optional
  2890. struct PhysicalValueType_ISO15118_2018 EVSEPresentVoltage;
  2891. struct PhysicalValueType_ISO15118_2018 EVSEPresentCurrent;
  2892. BOOL EVSECurrentLimitAchieved;
  2893. BOOL EVSEVoltageLimitAchieved;
  2894. BOOL EVSEPowerLimitAchieved;
  2895. struct PhysicalValueType_ISO15118_2018 EVSEMaximumChargeVoltage; //Optional
  2896. struct PhysicalValueType_ISO15118_2018 EVSEMaximumChargeCurrent; //Optional
  2897. struct PhysicalValueType_ISO15118_2018 EVSEMaximumChargePower; //Optional
  2898. unsigned char EVSEID[40]; //DIN70121=>Max length:32, ISO15118=>min length:7, max length:37
  2899. struct PnC_CLResIdentificationModeType PnC_CLResIdentificationMode;
  2900. struct Scheduled_CDResControlModeType Scheduled_CDResControlMode;
  2901. };
  2902. /****WeldingDetectionRequest (DC Only)*****/
  2903. struct WeldingDetectionRequest_DIN70121
  2904. {
  2905. struct DC_EVStatusType_DIN70121 DC_EVStatus;
  2906. };
  2907. struct WeldingDetectionRequest_ISO15118_2014
  2908. {
  2909. struct DC_EVStatusType_ISO15118_2014 DC_EVStatus;
  2910. };
  2911. struct WeldingDetectionRequest_ISO15118_2018
  2912. {
  2913. //No member in Standard
  2914. };
  2915. /****WeldingDetectionResponse (DC Only)****/
  2916. struct WeldingDetectionResponse_DIN70121
  2917. {
  2918. enum ResponseCodeType_DIN70121 ResponseCode;
  2919. struct DC_EVSEStatusType_DIN70121 DC_EVSEStatus;
  2920. struct PhysicalValueType_DIN70121 EVSEPresentVoltage;
  2921. };
  2922. struct WeldingDetectionResponse_ISO15118_2014
  2923. {
  2924. enum ResponseCodeType_ISO15118_2014 ResponseCode;
  2925. struct DC_EVSEStatusType_ISO15118_2014 DC_EVSEStatus;
  2926. struct PhysicalValueType_ISO15118_2014 EVSEPresentVoltage;
  2927. };
  2928. struct WeldingDetectionResponse_ISO15118_2018
  2929. {
  2930. enum ResponseCodeType_ISO15118_2018 ResponseCode;
  2931. struct EVSEStatusType EVSEStatus; //Optional
  2932. struct PhysicalValueType_ISO15118_2018 EVSEPresentVoltage;
  2933. };
  2934. /****FinePositioningSetupRequest (WPT Only)****/
  2935. struct FinePositioningSetupRequest_ISO15118_2018
  2936. {
  2937. struct LFA_EVFinePositioningSetupParametersType LFA_EVFinePositioningSetupParameters; //Optional
  2938. };
  2939. /****FinePositioningSetupResponse (WPT Only)****/
  2940. struct FinePositioningSetupResponse_ISO15118_2018
  2941. {
  2942. //NOT complete yet, to be continue.....
  2943. };
  2944. struct V2GMessageType_DIN70121
  2945. {
  2946. unsigned char SelfTest_Comp;
  2947. unsigned char version[16];
  2948. unsigned char PresentMsgFlowStatus;
  2949. /* 0: Idle(wait B2 state), 1: CM_SLAC_PARM.REQ, 2: CM_SLAC_PARM.CNF, 3: CM_START_ATTEN_CHAR.IND
  2950. 4: CM_MNBC_SOUND.IND, 5: CM_ATTEN_CHAR.IND, 6: CM_ATTEN_CHAR.RSP, 7: CM_VALIDATE.REQ
  2951. 8: CM_VALIDATE.CNF, 9: CM_SLAC_MATCH.REQ, 10: CM_SLAC_MATCH.CNF, 11: CM_AMP_MAP.REQ
  2952. 12: CM_AMP_MAP.CNF, 13: SLACC/SDP/TCP connection,
  2953. 16: SupportedAppProtocolRequest, 17: SupportedAppProtocolResponse, 18: SessionSetupRequest
  2954. 19: SessionSetupResponse, 20: ServiceDiscoveryRequest, 21: ServiceDiscoveryResponse
  2955. 22: ServiceDetailRequest, 23: ServiceDetailResponse
  2956. 24: ServiceAndPaymentSelectionRequest/ServiceSelectionRequest, 25: ServiceAndPaymentSelectionResponse/ServiceSelectionResponse
  2957. 26: PaymentDetailsRequest/IdentificationDetailsRequest;, 27: PaymentDetailsResponse/IdentificationDetailsResponse,
  2958. 28: AuthorizationRequest, 29: AuthorizationResponse,
  2959. 30: CertificateUpdateRequest, 31: CertificateUpdateResponse, 32:CertificateInstallationRequest, 33: CertificateInstallationResponse
  2960. 34: ChargeParameterDiscoveryRequest, 35: ChargeParameterDiscoveryResponse
  2961. 36: CableCheckRequest, 37: CableCheckResponse, 38: PreChargeRequest, 39: PreChargeResponse
  2962. 40: PowerDeliveryRequest start, 41: PowerDeliveryResponse start, 42: ChargingStatusRequest, 43: ChargingStatusResponse
  2963. 44: CurrentDemandRequest, 45: CurrentDemandResponse, 46: MeteringReceiptRequest, 47: MeteringReceiptResponse
  2964. 48: PowerDeliveryRequest end, 49: PowerDeliveryRequest end, 50: WeldingDetectionRequest, 51: WeldingDetectionResponse,
  2965. 52: SessionStopRequest, 53: SessionStopResponse
  2966. 253: Performance Timeout, 254: Sequence Timeout, 255: Fault
  2967. */
  2968. struct SupportedAppProtocolRequest_DIN70121 SupportedAppProtocolRequest;
  2969. struct SupportedAppProtocolResponse_DIN70121 SupportedAppProtocolResponse;
  2970. struct SessionSetupRequest_DIN70121 SessionSetupRequest;
  2971. struct SessionSetupResponse_DIN70121 SessionSetupResponse;
  2972. struct ServiceDiscoveryRequest_DIN70121 ServiceDiscoveryRequest;
  2973. struct ServiceDiscoveryResponse_DIN70121 ServiceDiscoveryResponse;
  2974. struct ServiceAndPaymentSelectionRequest_DIN70121 ServiceAndPaymentSelectionRequest;
  2975. struct ServiceAndPaymentSelectionResponse_DIN70121 ServiceAndPaymentSelectionResponse;
  2976. struct ContractAuthenticationRequest_DIN70121 ContractAuthenticationRequest;
  2977. struct ContractAuthenticationResponse_DIN70121 ContractAuthenticationResponse;
  2978. struct ChargeParameterDiscoveryRequest_DIN70121 ChargeParameterDiscoveryRequest;
  2979. struct ChargeParameterDiscoveryResponse_DIN70121 ChargeParameterDiscoveryResponse;
  2980. struct CableCheckRequest_DIN70121 CableCheckRequest;
  2981. struct CableCheckResponse_DIN70121 CableCheckResponse;
  2982. struct PreChargeRequest_DIN70121 PreChargeRequest;
  2983. struct PreChargeResponse_DIN70121 PreChargeResponse;
  2984. struct PowerDeliveryRequest_DIN70121 PowerDeliveryRequest;
  2985. struct PowerDeliveryResponse_DIN70121 PowerDeliveryResponse;
  2986. struct CurrentDemandRequest_DIN70121 CurrentDemandRequest;
  2987. struct CurrentDemandResponse_DIN70121 CurrentDemandResponse;
  2988. struct WeldingDetectionRequest_DIN70121 WeldingDetectionRequest;
  2989. struct WeldingDetectionResponse_DIN70121 WeldingDetectionResponse;
  2990. struct SessionStopRequest_DIN70121 SessionStopRequest;
  2991. struct SessionStopResponse_DIN70121 SessionStopResponse;
  2992. };
  2993. struct V2GMessageType_ISO15118_2014
  2994. {
  2995. unsigned char PresentMsgFlowStatus;
  2996. /* 0: Idle(wait B2 state), 1: CM_SLAC_PARM.REQ, 2: CM_SLAC_PARM.CNF, 3: CM_START_ATTEN_CHAR.IND
  2997. 4: CM_MNBC_SOUND.IND, 5: CM_ATTEN_CHAR.IND, 6: CM_ATTEN_CHAR.RSP, 7: CM_VALIDATE.REQ
  2998. 8: CM_VALIDATE.CNF, 9: CM_SLAC_MATCH.REQ, 10: CM_SLAC_MATCH.CNF, 11: CM_AMP_MAP.REQ
  2999. 12: CM_AMP_MAP.CNF, 13: SLACC/SDP/TCP connection,
  3000. 16: SupportedAppProtocolRequest, 17: SupportedAppProtocolResponse, 18: SessionSetupRequest
  3001. 19: SessionSetupResponse, 20: ServiceDiscoveryRequest, 21: ServiceDiscoveryResponse
  3002. 22: ServiceDetailRequest, 23: ServiceDetailResponse
  3003. 24: ServiceAndPaymentSelectionRequest/ServiceSelectionRequest, 25: ServiceAndPaymentSelectionResponse/ServiceSelectionResponse
  3004. 26: PaymentDetailsRequest/IdentificationDetailsRequest;, 27: PaymentDetailsResponse/IdentificationDetailsResponse,
  3005. 28: AuthorizationRequest, 29: AuthorizationResponse,
  3006. 30: CertificateUpdateRequest, 31: CertificateUpdateResponse, 32:CertificateInstallationRequest, 33: CertificateInstallationResponse
  3007. 34: ChargeParameterDiscoveryRequest, 35: ChargeParameterDiscoveryResponse
  3008. 36: CableCheckRequest, 37: CableCheckResponse, 38: PreChargeRequest, 39: PreChargeResponse
  3009. 40: PowerDeliveryRequest start, 41: PowerDeliveryResponse start, 42: ChargingStatusRequest, 43: ChargingStatusResponse
  3010. 44: CurrentDemandRequest, 45: CurrentDemandResponse, 46: MeteringReceiptRequest, 47: MeteringReceiptResponse
  3011. 48: PowerDeliveryRequest end, 49: PowerDeliveryRequest end, 50: WeldingDetectionRequest, 51: WeldingDetectionResponse,
  3012. 52: SessionStopRequest, 53: SessionStopResponse
  3013. 253: Performance Timeout, 254: Sequence Timeout, 255: Fault
  3014. */
  3015. struct SupportedAppProtocolRequest_ISO15118_2014 SupportedAppProtocolRequest;
  3016. struct SupportedAppProtocolResponse_ISO15118_2014 SupportedAppProtocolResponse;
  3017. struct SessionSetupRequest_ISO15118_2014 SessionSetupRequest;
  3018. struct SessionSetupResponse_ISO15118_2014 SessionSetupResponse;
  3019. struct ServiceDiscoveryRequest_ISO15118_2014 ServiceDiscoveryRequest;
  3020. struct ServiceDiscoveryResponse_ISO15118_2014 ServiceDiscoveryResponse;
  3021. struct ServiceDetailRequest_ISO15118_2014 ServiceDetailRequest;
  3022. struct ServiceDetailResponse_ISO15118_2014 ServiceDetailResponse;
  3023. struct ServiceAndPaymentSelectionRequest_ISO15118_2014 ServiceAndPaymentSelectionRequest;
  3024. struct ServiceAndPaymentSelectionResponse_ISO15118_2014 ServiceAndPaymentSelectionResponse;
  3025. struct PaymentDetailsRequest_ISO15118_2014 PaymentDetailsRequest;
  3026. struct PaymentDetailsResponse_ISO15118_2014 PaymentDetailsResponse;
  3027. struct AuthorizationRequest_ISO15118_2014 AuthorizationRequest;
  3028. struct AuthorizationResponse_ISO15118_2014 AuthorizationResponse;
  3029. struct CertificateUpdateRequest_ISO15118_2014 CertificateUpdateRequest;
  3030. struct CertificateUpdateResponse_ISO15118_2014 CertificateUpdateResponse;
  3031. struct CertificateInstallationRequest_ISO15118_2014 CertificateInstallationRequest;
  3032. struct CertificateInstallationResponse_ISO15118_2014 CertificateInstallationResponse;
  3033. struct ChargeParameterDiscoveryRequest_ISO15118_2014 ChargeParameterDiscoveryRequest;
  3034. struct ChargeParameterDiscoveryResponse_ISO15118_2014 ChargeParameterDiscoveryResponse;
  3035. struct CableCheckRequest_ISO15118_2014 CableCheckRequest;
  3036. struct CableCheckResponse_ISO15118_2014 CableCheckResponse;
  3037. struct PreChargeRequest_ISO15118_2014 PreChargeRequest;
  3038. struct PreChargeResponse_ISO15118_2014 PreChargeResponse;
  3039. struct PowerDeliveryRequest_ISO15118_2014 PowerDeliveryRequest;
  3040. struct PowerDeliveryResponse_ISO15118_2014 PowerDeliveryResponse;
  3041. struct ChargingStatusRequest_ISO15118_2014 ChargingStatusRequest;
  3042. struct ChargingStatusResponse_ISO15118_2014 ChargingStatusResponse;
  3043. struct CurrentDemandRequest_ISO15118_2014 CurrentDemandRequest;
  3044. struct CurrentDemandResponse_ISO15118_2014 CurrentDemandResponse;
  3045. struct MeteringReceiptRequest_ISO15118_2014 MeteringReceiptRequest;
  3046. struct MeteringReceiptResponse_ISO15118_2014 MeteringReceiptResponse;
  3047. struct WeldingDetectionRequest_ISO15118_2014 WeldingDetectionRequest;
  3048. struct WeldingDetectionResponse_ISO15118_2014 WeldingDetectionResponse;
  3049. struct SessionStopRequest_ISO15118_2014 SessionStopRequest;
  3050. struct SessionStopResponse_ISO15118_2014 SessionStopResponse;
  3051. };
  3052. struct V2GMessageType_ISO15118_2018
  3053. {
  3054. unsigned char PresentMsgFlowStatus;
  3055. /* 0: Idle(wait B2 state), 1: CM_SLAC_PARM.REQ, 2: CM_SLAC_PARM.CNF, 3: CM_START_ATTEN_CHAR.IND
  3056. 4: CM_MNBC_SOUND.IND, 5: CM_ATTEN_CHAR.IND, 6: CM_ATTEN_CHAR.RSP, 7: CM_VALIDATE.REQ
  3057. 8: CM_VALIDATE.CNF, 9: CM_SLAC_MATCH.REQ, 10: CM_SLAC_MATCH.CNF, 11: CM_AMP_MAP.REQ
  3058. 12: CM_AMP_MAP.CNF, 13: SLACC/SDP/TCP connection,
  3059. 16: SupportedAppProtocolRequest, 17: SupportedAppProtocolResponse, 18: SessionSetupRequest
  3060. 19: SessionSetupResponse, 20: ServiceDiscoveryRequest, 21: ServiceDiscoveryResponse
  3061. 22: ServiceDetailRequest, 23: ServiceDetailResponse
  3062. 24: ServiceAndPaymentSelectionRequest/ServiceSelectionRequest, 25: ServiceAndPaymentSelectionResponse/ServiceSelectionResponse
  3063. 26: PaymentDetailsRequest/IdentificationDetailsRequest;, 27: PaymentDetailsResponse/IdentificationDetailsResponse,
  3064. 28: AuthorizationRequest, 29: AuthorizationResponse,
  3065. 30: CertificateUpdateRequest, 31: CertificateUpdateResponse, 32:CertificateInstallationRequest, 33: CertificateInstallationResponse
  3066. 34: ChargeParameterDiscoveryRequest, 35: ChargeParameterDiscoveryResponse
  3067. 36: CableCheckRequest, 37: CableCheckResponse, 38: PreChargeRequest, 39: PreChargeResponse
  3068. 40: PowerDeliveryRequest start, 41: PowerDeliveryResponse start, 42: ChargingStatusRequest, 43: ChargingStatusResponse
  3069. 44: CurrentDemandRequest, 45: CurrentDemandResponse, 46: MeteringReceiptRequest, 47: MeteringReceiptResponse
  3070. 48: PowerDeliveryRequest end, 49: PowerDeliveryRequest end, 50: WeldingDetectionRequest, 51: WeldingDetectionResponse,
  3071. 52: SessionStopRequest, 53: SessionStopResponse
  3072. 253: Performance Timeout, 254: Sequence Timeout, 255: Fault
  3073. */
  3074. struct SupportedAppProtocolRequest_ISO15118_2018 SupportedAppProtocolRequest;
  3075. struct SupportedAppProtocolResponse_ISO15118_2018 SupportedAppProtocolResponse;
  3076. struct SessionSetupRequest_ISO15118_2018 SessionSetupRequest;
  3077. struct SessionSetupResponse_ISO15118_2018 SessionSetupResponse;
  3078. struct ServiceDiscoveryRequest_ISO15118_2018 ServiceDiscoveryRequest;
  3079. struct ServiceDiscoveryResponse_ISO15118_2018 ServiceDiscoveryResponse;
  3080. struct ServiceDetailRequest_ISO15118_2018 ServiceDetailRequest;
  3081. struct ServiceDetailResponse_ISO15118_2018 ServiceDetailResponse;
  3082. struct ServiceSelectionRequest_ISO15118_2018 ServiceSelectionRequest;
  3083. struct ServiceSelectionResponse_ISO15118_2018 ServiceSelectionResponse;
  3084. struct IdentificationDetailsRequest_ISO15118_2018 IdentificationDetailsRequest;
  3085. struct IdentificationDetailsResponse_ISO15118_2018 IdentificationDetailsResponse;
  3086. struct AuthorizationRequest_ISO15118_2018 AuthorizationRequest;
  3087. struct AuthorizationResponse_ISO15118_2018 AuthorizationResponse;
  3088. struct CertificateInstallationRequest_ISO15118_2018 CertificateInstallationRequest;
  3089. struct CertificateInstallationResponse_ISO15118_2018 CertificateInstallationResponse;
  3090. struct ChargeParameterDiscoveryRequest_ISO15118_2018 ChargeParameterDiscoveryRequest;
  3091. struct ChargeParameterDiscoveryResponse_ISO15118_2018 ChargeParameterDiscoveryResponse;
  3092. struct CableCheckRequest_ISO15118_2018 CableCheckRequest;
  3093. struct CableCheckResponse_ISO15118_2018 CableCheckResponse;
  3094. struct PreChargeRequest_ISO15118_2018 PreChargeRequest;
  3095. struct PreChargeResponse_ISO15118_2018 PreChargeResponse;
  3096. struct PowerDeliveryRequest_ISO15118_2018 PowerDeliveryRequest;
  3097. struct PowerDeliveryResponse_ISO15118_2018 PowerDeliveryResponse;
  3098. struct ChargingStatusRequest_ISO15118_2018 ChargingStatusRequest;
  3099. struct ChargingStatusResponse_ISO15118_2018 ChargingStatusResponse;
  3100. struct CurrentDemandRequest_ISO15118_2018 CurrentDemandRequest;
  3101. struct CurrentDemandResponse_ISO15118_2018 CurrentDemandResponse;
  3102. struct MeteringReceiptRequest_ISO15118_2018 MeteringReceiptRequest;
  3103. struct MeteringReceiptResponse_ISO15118_2018 MeteringReceiptResponse;
  3104. struct WeldingDetectionRequest_ISO15118_2018 WeldingDetectionRequest;
  3105. struct WeldingDetectionResponse_ISO15118_2018 WeldingDetectionResponse;
  3106. struct SessionStopRequest_ISO15118_2018 SessionStopRequest;
  3107. struct SessionStopResponse_ISO15118_2018 SessionStopResponse;
  3108. };
  3109. struct CcsData
  3110. {
  3111. unsigned char CommProtocol; // 1: V2GMessage_DIN70121, 2:V2GMessage_ISO15118_2014, 3:V2GMessage_ISO15118_2018
  3112. struct V2GMessageType_DIN70121 V2GMessage_DIN70121[CCS_QUANTITY];
  3113. struct V2GMessageType_ISO15118_2014 V2GMessage_ISO15118_2014[CCS_QUANTITY];
  3114. struct V2GMessageType_ISO15118_2018 V2GMessage_ISO15118_2018[CCS_QUANTITY];
  3115. };
  3116. /**************************************************************************************/
  3117. /***************STM32F407 Communication Share memory**************************/
  3118. /**************************************************************************************/
  3119. struct PrimaryMcuData
  3120. {
  3121. unsigned char SelfTest_Comp;
  3122. unsigned char version[16]; //STM32F407 firmware version
  3123. unsigned int InputVoltage; //value comes from external meter
  3124. unsigned int InputCurrent; //value comes from external meter
  3125. union
  3126. {
  3127. unsigned char OutputDrvValue[1];
  3128. struct
  3129. {
  3130. //OutputDrvValue[0]
  3131. unsigned char AcContactorDrv:1; //bit 0, H: ON, L:OFF
  3132. unsigned char Button1LedDrv:1; //bit 1, H: ON, L:OFF
  3133. unsigned char Button2LedDrv:1; //bit 2, H: ON, L:OFF
  3134. unsigned char SystemLed1Drv:1; //bit 3, H: ON, L:OFF
  3135. unsigned char SystemLed2Drv:1; //bit 4, H: ON, L:OFF
  3136. unsigned char SystemLed3Drv:1; //bit 5, H: ON, L:OFF
  3137. unsigned char SystemLed4Drv:1; //bit 6, H: ON, L:OFF
  3138. unsigned char:1; //bit 7 reserved
  3139. }bits;
  3140. }OutputDrv;
  3141. union
  3142. {
  3143. unsigned char InputDetValue[2];
  3144. struct
  3145. {
  3146. //InputDetValue[0]
  3147. unsigned char AcContactorDetec:1; //bit 0, H: ON, L:OFF
  3148. unsigned char AcMainBreakerDetec:1; //bit 1, H: ON, L:OFF
  3149. unsigned char SpdDetec:1; //bit 2, H: ON, L:OFF
  3150. unsigned char DoorOpen:1; //bit 3, H: Open, L:Close
  3151. unsigned char Gfd1:1; //bit 4, H: Trigger, L:Normal
  3152. unsigned char Gfd2:1; //bit 5, H: Trigger, L:Normal
  3153. unsigned char Button1:1; //bit 6 , H: Push, L:Release
  3154. unsigned char Button2:1; //bit 7, H: Push, L:Release
  3155. //InputDetValue[1]
  3156. unsigned char EmergencyButton:1; //bit 0, H: Push, L:Release
  3157. unsigned char :7; //bit 1~7, Reserved
  3158. }bits;
  3159. }InputDet;
  3160. };
  3161. /**************************************************************************************/
  3162. /*************Fan power module Communication Share memory******************/
  3163. /**************************************************************************************/
  3164. struct FanModuleData
  3165. {
  3166. unsigned char SelfTest_Comp;
  3167. unsigned char version[16]; //fan power module firmware version
  3168. unsigned short PresentFan1Speed; //RPM
  3169. unsigned short PresentFan2Speed; //RPM
  3170. unsigned short PresentFan3Speed; //RPM
  3171. unsigned short PresentFan4Speed; //RPM
  3172. unsigned short SetFan1Speed; //RPM
  3173. unsigned short SetFan2Speed; //RPM
  3174. unsigned short SetFan3Speed; //RPM
  3175. unsigned short SetFan4Speed; //RPM
  3176. unsigned short TestFanSpeed; //RPM
  3177. unsigned char DiffOfAirPressure; //pa
  3178. unsigned char UpdateFW; //1:do update
  3179. };
  3180. /**************************************************************************************/
  3181. /***********Relay control module Communication Share memory******************/
  3182. /**************************************************************************************/
  3183. struct RelayModuleData
  3184. {
  3185. unsigned char SelfTest_Comp;
  3186. unsigned char version[16]; //fan power module firmware version
  3187. unsigned short InputL1Volt; //XXXXX.x volt
  3188. unsigned short InputL2Volt; //XXXXX.x volt
  3189. unsigned short InputL3Volt; //XXXXX.x volt
  3190. unsigned short Gun1FuseOutputVolt; //XXXXX.x volt
  3191. unsigned short Gun2FuseOutputVolt; //XXXXX.x volt
  3192. unsigned short Gun1RelayOutputVolt; //XXXXX.x volt
  3193. unsigned short Gun2RelayOutputVolt; //XXXXX.x volt
  3194. unsigned short Gun1OutputCurrent; //XXXXX.x amp
  3195. unsigned short Gun2OutputCurrent; //XXXXX.x amp
  3196. unsigned char UpdateFW; //1:do update
  3197. };
  3198. /**************************************************************************************/
  3199. /************************OCPP Share memory***************************************/
  3200. /**************************************************************************************/
  3201. struct StructIdTagInfo
  3202. {
  3203. unsigned char ExpiryDate[28];
  3204. unsigned char ParentIdTag[20];
  3205. unsigned char Status[16]; //Accepted, Blocked, Expired, Invalid, ConcurrentTx
  3206. };
  3207. struct StructLocalAuthorizationList
  3208. {
  3209. unsigned char IdTag[20];
  3210. struct StructIdTagInfo IdTagInfo;
  3211. };
  3212. struct StructSampledValue
  3213. {
  3214. unsigned char Value[128];
  3215. unsigned char Context[30];//Interruption.Begin, Interruption.End, Sample.Clock, Sample.Periodic, Transaction.Begin, Transaction.End, Trigger, Other
  3216. unsigned char Format[16];//Raw,SignedData
  3217. unsigned char Measurand[40];/* "Energy.Active.Export.Register",
  3218. "Energy.Active.Import.Register",
  3219. "Energy.Reactive.Export.Register",
  3220. "Energy.Reactive.Import.Register",
  3221. "Energy.Active.Export.Interval",
  3222. "Energy.Active.Import.Interval",
  3223. "Energy.Reactive.Export.Interval",
  3224. "Energy.Reactive.Import.Interval",
  3225. "Power.Active.Export",
  3226. "Power.Active.Import",
  3227. "Power.Offered",
  3228. "Power.Reactive.Export",
  3229. "Power.Reactive.Import",
  3230. "Power.Factor",
  3231. "Current.Import",
  3232. "Current.Export",
  3233. "Current.Offered",
  3234. "Voltage",
  3235. "Frequency",
  3236. "Temperature",
  3237. "SoC",
  3238. "RPM"
  3239. */
  3240. unsigned char Phase[10]; /* "L1",
  3241. "L2",
  3242. "L3",
  3243. "N",
  3244. "L1-N",
  3245. "L2-N",
  3246. "L3-N",
  3247. "L1-L2",
  3248. "L2-L3",
  3249. "L3-L1"
  3250. */
  3251. unsigned char Location[10]; //Cable,EV,Inlet,Outlet,Body
  3252. unsigned char Unit[20]; /* "Wh",
  3253. "kWh",
  3254. "varh",
  3255. "kvarh",
  3256. "W",
  3257. "kW",
  3258. "VA",
  3259. "kVA",
  3260. "var",
  3261. "kvar",
  3262. "A",
  3263. "V",
  3264. "K",
  3265. "Celcius",
  3266. "Fahrenheit",
  3267. "Percent"
  3268. */
  3269. };
  3270. struct StructMeterValue
  3271. {
  3272. unsigned char TimeStamp[28];
  3273. struct StructSampledValue SampledValue[10];
  3274. };
  3275. struct StructConfigurationKeyItems
  3276. {
  3277. unsigned char Item[50];
  3278. };
  3279. struct StructConfigurationKey
  3280. {
  3281. unsigned char Key[50];
  3282. unsigned char ReadOnly[8]; //boolean
  3283. unsigned char Value[500];
  3284. };
  3285. struct StructChargingSchedulePeriod
  3286. {
  3287. int StartPeriod;
  3288. float Limit;//0.1;
  3289. int NumberPhases;
  3290. };
  3291. struct StructChargingSchedule
  3292. {
  3293. int Duration;
  3294. unsigned char StartSchedule[28];
  3295. unsigned char ChargingRateUnit[4]; //A, W
  3296. struct StructChargingSchedulePeriod ChargingSchedulePeriod[10];
  3297. float MinChargingRate; //0.1;
  3298. };
  3299. struct StructChargingProfile
  3300. {
  3301. int ChargingProfileId;
  3302. int TransactionId;
  3303. int StackLevel;
  3304. unsigned char ChargingProfilePurpose[24]; //ChargePointMaxProfile, TxDefaultProfile, TxProfile
  3305. unsigned char ChargingProfileKind[12]; //Absolute, Recurring, Relative
  3306. unsigned char RecurrencyKind[8]; //Daily, Weekly
  3307. unsigned char ValidFrom[28];
  3308. unsigned char ValidTo[28];
  3309. struct StructChargingSchedule ChargingSchedule;
  3310. };
  3311. struct StructBootNotification
  3312. {
  3313. unsigned char CpVendor[20]; //chargePointVendor //mandatory
  3314. unsigned char CpModel[20]; //chargePointModel //mandatory
  3315. unsigned char CpSN[25]; //chargePointSerialNumber
  3316. unsigned char CbSN[25]; //chargeBoxSerialNumber
  3317. unsigned char CpFwVersion[50]; //firmwareVersion
  3318. unsigned char CpIccid[22]; //iccid
  3319. unsigned char CpImsi[20]; //imsi
  3320. unsigned char CpMeterType[25]; //meterType
  3321. unsigned char CpMeterSerialNumber[25]; //meterSerialNumber
  3322. unsigned char ResponseStatus[16]; //Accepted, Pending, Rejected
  3323. unsigned char ResponseCurrentTime[28]; //currentTime //mandatory
  3324. int ResponseHeartbeatInterval; //interval //mandatory
  3325. };
  3326. struct StructHeartbeat
  3327. {
  3328. unsigned char ResponseCurrentTime[28];
  3329. };
  3330. struct StructAuthorize
  3331. {
  3332. unsigned char IdTag[20];
  3333. struct StructIdTagInfo ResponseIdTagInfo;
  3334. };
  3335. struct StructStartTransaction
  3336. {
  3337. int ConnectorId;
  3338. unsigned char IdTag[20];
  3339. int MeterStart;
  3340. int ReservationId;
  3341. unsigned char Timestamp[28];
  3342. struct StructIdTagInfo ResponseIdTagInfo;
  3343. int ResponseTransactionId;
  3344. };
  3345. struct StructStopTransaction
  3346. {
  3347. unsigned char IdTag[20];
  3348. int MeterStop;
  3349. unsigned char Timestamp[28];
  3350. int TransactionId;
  3351. unsigned char StopReason[20]; /* "EmergencyStop",
  3352. "EVDisconnected",
  3353. "HardReset",
  3354. "Local",
  3355. "Other",
  3356. "PowerLoss",
  3357. "Reboot",
  3358. "Remote",
  3359. "SoftReset",
  3360. "UnlockCommand",
  3361. "DeAuthorized"
  3362. */
  3363. struct StructMeterValue TransactionData[1];
  3364. struct StructIdTagInfo ResponseIdTagInfo;
  3365. };
  3366. struct StructStatusNotification
  3367. {
  3368. int ConnectorId;
  3369. unsigned char ErrorCode[25]; /* "ConnectorLockFailure",
  3370. "EVCommunicationError",
  3371. "GroundFailure",
  3372. "HighTemperature",
  3373. "InternalError",
  3374. "LocalListConflict",
  3375. "NoError",
  3376. "OtherError",
  3377. "OverCurrentFailure",
  3378. "PowerMeterFailure",
  3379. "PowerSwitchFailure",
  3380. "ReaderFailure",
  3381. "ResetFailure",
  3382. "UnderVoltage",
  3383. "OverVoltage",
  3384. "WeakSignal"
  3385. */
  3386. unsigned char Info[50];
  3387. unsigned char Status[20]; /* "Available",
  3388. "Preparing",
  3389. "Charging",
  3390. "SuspendedEVSE",
  3391. "SuspendedEV",
  3392. "Finishing",
  3393. "Reserved",
  3394. "Unavailable",
  3395. "Faulted"
  3396. */
  3397. unsigned char Timestamp[28];
  3398. unsigned char VendorId[256];
  3399. unsigned char VendorErrorCode[50];
  3400. };
  3401. struct StructCancelReservation
  3402. {
  3403. int ReservationId;
  3404. unsigned char ResponseStatus[16]; //Accepted, Rejected
  3405. unsigned char guid[37];
  3406. };
  3407. struct StructChangeAvailability
  3408. {
  3409. int ConnectorId;
  3410. unsigned char Type[16]; //Inoperative, Operative
  3411. unsigned char ResponseStatus[16]; //Accepted, Rejected, Scheduled
  3412. unsigned char guid[37];
  3413. };
  3414. struct StructChangeConfiguration
  3415. {
  3416. unsigned char Key[50];
  3417. unsigned char Value[500];
  3418. unsigned char ResponseStatus[16]; //Accepted, Rejected, RebootRequired, NotSupported
  3419. };
  3420. struct StructClearCache
  3421. {
  3422. unsigned char ResponseStatus[16]; //Accepted, Rejected
  3423. };
  3424. struct StructClearChargingProfile
  3425. {
  3426. int Id;
  3427. int ConnectorId;
  3428. unsigned char ChargingProfilePurpose[24]; //ChargePointMaxProfile, TxDefaultProfile, TxProfile
  3429. int StackLevel;
  3430. unsigned char ResponseStatus[16]; //Accepted, Unknown
  3431. };
  3432. struct StructDataTransfer
  3433. {
  3434. unsigned char VendorId[256];
  3435. unsigned char MessageId[52];
  3436. unsigned char Data[512];
  3437. unsigned char ResponseStatus[18]; //Accepted, Rejected,UnknownMessageId,UnknownVendorId
  3438. unsigned char ResponseData[256];
  3439. };
  3440. struct StructDiagnosticsStatusNotification
  3441. {
  3442. unsigned char Status[16]; //Idle,Uploaded,UploadFailed,Uploading
  3443. };
  3444. struct StructFirmwareStatusNotification
  3445. {
  3446. unsigned char Status[20]; //Downloaded,DownloadFailed,Downloading,Idle,InstallationFailed,Installing,Installed
  3447. };
  3448. struct StructGetCompositeSchedule
  3449. {
  3450. int ConnectorId;
  3451. int Duration;
  3452. unsigned char ChargingRateUnit[4]; //A,W
  3453. unsigned char ResponseStatus[12]; //Accepted,Rejected
  3454. int ResponseConnectorId;
  3455. unsigned char ResponseScheduleStart[28];
  3456. struct StructChargingSchedule ResponseChargingSchedule;
  3457. };
  3458. struct StructGetConfiguration
  3459. {
  3460. struct StructConfigurationKeyItems *Key;
  3461. struct StructConfigurationKey *ResponseConfigurationKey;
  3462. struct StructConfigurationKeyItems *ResponseUnknownKey;
  3463. };
  3464. struct StructGetDiagnostics
  3465. {
  3466. unsigned char Location[256];
  3467. int Retries;
  3468. int RetryInterval;
  3469. unsigned char StartTime[28];
  3470. unsigned char StopTime[28];
  3471. unsigned char ResponseFileName[256];
  3472. };
  3473. struct StructGetLocalListVersion
  3474. {
  3475. int ResponseListVersion;
  3476. };
  3477. struct StructMeterValues
  3478. {
  3479. int ConnectorId;
  3480. int TransactionId;
  3481. struct StructMeterValue MeterValue[0];
  3482. };
  3483. struct StructRemoteStartTransaction
  3484. {
  3485. int ConnectorId;
  3486. unsigned char IdTag[20];
  3487. struct StructChargingProfile ChargingProfile;
  3488. unsigned char ResponseStatus[10]; //Accepted, Rejected
  3489. unsigned char guid[37];
  3490. };
  3491. struct StructRemoteStopTransaction
  3492. {
  3493. int TransactionId;
  3494. unsigned char ResponseStatus[10]; //Accepted, Rejected
  3495. };
  3496. struct StructReserveNow
  3497. {
  3498. int ConnectorId;
  3499. unsigned char ExpiryDate[28];
  3500. unsigned char IdTag[20];
  3501. unsigned char ParentIdTag[20];
  3502. int ReservationId;
  3503. unsigned char ResponseStatus[12]; //Accepted, Faulted, Occupied, Rejected, Unavailable
  3504. unsigned char guid[37]; //OCPP Server request message uuid
  3505. };
  3506. struct StructReset
  3507. {
  3508. unsigned char Type[8]; //Hard, Soft
  3509. unsigned char ResponseStatus[10]; //Accepted, Rejected
  3510. unsigned char guid[37]; //OCPP Server request message uuid
  3511. };
  3512. struct StructSendLocalList
  3513. {
  3514. int ListVersion;
  3515. unsigned char UpdateType[16]; //Differential, Full
  3516. struct StructLocalAuthorizationList *LocalAuthorizationList;
  3517. unsigned char ResponseStatus[16]; //Accepted, Failed, NotSupported, VersionMismatch
  3518. };
  3519. struct StructSetChargingProfile
  3520. {
  3521. int ConnectorId;
  3522. struct StructChargingProfile ChargingProfile;
  3523. unsigned char ResponseStatus[16]; //Accepted, Rejected, NotSupported
  3524. };
  3525. struct StructTriggerMessage
  3526. {
  3527. unsigned char RequestedMessage[32]; /*
  3528. "BootNotification",
  3529. "DiagnosticsStatusNotification",
  3530. "FirmwareStatusNotification",
  3531. "Heartbeat",
  3532. "MeterValues",
  3533. "StatusNotification"
  3534. */
  3535. int ConnectorId;
  3536. unsigned char ResponseStatus[16]; //Accepted, Rejected, NotImplemented
  3537. };
  3538. struct StructUnlockConnector
  3539. {
  3540. int ConnectorId;
  3541. unsigned char ResponseStatus[16]; //Unlocked, UnlockFailed, NotSupported
  3542. unsigned char guid[37]; //OCPP Server request message uuid
  3543. };
  3544. struct StructUpdateFirmware
  3545. {
  3546. unsigned char Location[256];
  3547. int Retries;
  3548. unsigned char RetrieveDate[28];
  3549. int RetryInterval;
  3550. };
  3551. struct OCPP16ConfigurationItem
  3552. {
  3553. unsigned char ItemName[64];
  3554. unsigned char ItemAccessibility;//0:RO, 1:RW
  3555. unsigned char ItemData[128];
  3556. };
  3557. struct OCPP16ConfigurationTable
  3558. {
  3559. //please refer to OCPP 1.6 chapter 9
  3560. struct OCPP16ConfigurationItem CoreProfile[34];
  3561. struct OCPP16ConfigurationItem LocalAuthListManagementProfile[3];
  3562. struct OCPP16ConfigurationItem ReservationProfile[1];
  3563. struct OCPP16ConfigurationItem SmartChargingProfile[5];
  3564. };
  3565. struct OCPP16Data
  3566. {
  3567. unsigned char OcppServerURL[512]; //http: non-secure OCPP 1.5-S, https: secure OCPP 1.5-S, ws: non-secure OCPP 1.6-J, wss: secure OCPP 1.6-J"
  3568. unsigned char ChargeBoxId[128];
  3569. unsigned char OcppConnStatus; //0: disconnected, 1: connected
  3570. unsigned int Timeout_Secs;
  3571. unsigned short Ping_Pong_Interval;
  3572. union
  3573. {
  3574. //Operations Initiated by Charge Point
  3575. unsigned char CpMsgValue[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3576. struct
  3577. {
  3578. //CpMsgValue[0]
  3579. unsigned char DataTransferReq:1; //bit 0,
  3580. unsigned char DataTransferConf:1; //bit 1,
  3581. unsigned char StartTransactionReq:1; //bit 2,
  3582. unsigned char StartTransactionConf:1; //bit 3,
  3583. unsigned char StopTransactionReq:1; //bit 4,
  3584. unsigned char StopTransactionConf:1; //bit 5,
  3585. unsigned char :2; //bit 6,7 , reserved
  3586. } bits[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3587. }CpMsg;
  3588. union
  3589. {
  3590. //Operations Initiated by Sequence Point
  3591. unsigned char SpMsgValue[1];
  3592. struct
  3593. {
  3594. //SpMsgValue[0]
  3595. unsigned char BootNotificationReq :1; //bit 0,
  3596. unsigned char BootNotificationConf :1; //bit 1,
  3597. unsigned char AuthorizeReq :1; //bit 2,
  3598. unsigned char AuthorizeConf :1; //bit 3,
  3599. unsigned char DiagnosticsStatusNotificationReq :1; //bit 4,
  3600. unsigned char DiagnosticsStatusNotificationConf :1; //bit 5,
  3601. unsigned char FirmwareStatusNotificationReq :1; //bit 6,
  3602. unsigned char FirmwareStatusNotificationConf :1; //bit 7,
  3603. } bits;
  3604. } SpMsg;
  3605. union
  3606. {
  3607. //Operations Initiated by Central System
  3608. unsigned char CsMsgValue[3 * (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY)];
  3609. struct
  3610. {
  3611. //CsMsgValue[0]
  3612. unsigned char CancelReservationReq :1; //bit 0,
  3613. unsigned char CancelReservationConf :1; //bit 1,
  3614. unsigned char ChangeAvailabilityReq :1; //bit 2,
  3615. unsigned char ChangeAvailabilityConf :1; //bit 3,
  3616. unsigned char ReserveNowReq :1; //bit 4,
  3617. unsigned char ReserveNowConf :1; //bit 5,
  3618. unsigned char SetChargingProfileReq :1; //bit 6,
  3619. unsigned char SetChargingProfileConf :1; //bit 7,
  3620. //CsMsgValue[1]
  3621. unsigned char TriggerMessageReq :1; //bit 0,
  3622. unsigned char TriggerMessageConf :1; //bit 1,
  3623. unsigned char UnlockConnectorReq :1; //bit 2,
  3624. unsigned char UnlockConnectorConf :1; //bit 3,
  3625. unsigned char RemoteStartTransactionReq :1; //bit 4,
  3626. unsigned char RemoteStartTransactionConf :1; //bit 5,
  3627. unsigned char RemoteStopTransactionReq :1; //bit 6,
  3628. unsigned char RemoteStopTransactionConf :1; //bit 7,
  3629. //CsMsgValue[2]
  3630. unsigned char ClearChargingProfileReq :1; //bit 0,
  3631. unsigned char ClearChargingProfileConf :1; //bit 1,
  3632. unsigned char DataTransferReq :1; //bit 2,
  3633. unsigned char DataTransferConf :1; //bit 3,
  3634. unsigned char GetCompositeScheduleReq :1; //bit 4,
  3635. unsigned char GetCompositeScheduleConf :1; //bit 5,
  3636. unsigned char :2; //bit 6,7
  3637. } bits[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3638. }CsMsg;
  3639. union
  3640. {
  3641. //Operations Initiated by Main System
  3642. unsigned char MsMsgValue[2];
  3643. struct
  3644. {
  3645. //CsMsgValue[0]
  3646. unsigned char ChangeConfigurationReq :1; //bit 0,
  3647. unsigned char ChangeConfigurationConf :1; //bit 1,
  3648. unsigned char ClearCacheReq :1; //bit 2,
  3649. unsigned char ClearCacheConf :1; //bit 3,
  3650. unsigned char GetConfigurationReq :1; //bit 4,
  3651. unsigned char GetConfigurationConf :1; //bit 5,
  3652. unsigned char UpdateFirmwareReq :1; //bit 6,
  3653. unsigned char UpdateFirmwareConf :1; //bit 7,
  3654. //CsMsgValue[1]
  3655. unsigned char GetDiagnosticsReq :1; //bit 0,
  3656. unsigned char GetDiagnosticsConf :1; //bit 1,
  3657. unsigned char GetLocalListVersionReq :1; //bit 2,
  3658. unsigned char GetLocalListVersionConf :1; //bit 3,
  3659. unsigned char ResetReq :1; //bit 4,
  3660. unsigned char ResetConf :1; //bit 5,
  3661. unsigned char SendLocalListReq :1; //bit 6,
  3662. unsigned char SendLocalListConf :1; //bit 7,
  3663. } bits;
  3664. } MsMsg;
  3665. union
  3666. {
  3667. //Operations triggered by CSU
  3668. unsigned char CSUMsgValue[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3669. struct
  3670. {
  3671. //CSUMsgValue[0]
  3672. unsigned char ChargingProfileReq:1; //bit 0,
  3673. unsigned char ChargingProfileConf:1; //bit 0,
  3674. unsigned char :6; //bit 1,2,3,4,5,6,7 , reserved
  3675. } bits[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3676. }CSUMsg;
  3677. struct StructBootNotification BootNotification;
  3678. struct StructHeartbeat Heartbeat;
  3679. struct StructAuthorize Authorize;
  3680. struct StructStartTransaction StartTransaction[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3681. struct StructStopTransaction StopTransaction[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3682. struct StructStatusNotification StatusNotification[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3683. struct StructCancelReservation CancelReservation[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3684. struct StructChangeAvailability ChangeAvailability[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3685. struct StructChangeConfiguration ChangeConfiguration;
  3686. struct StructClearCache ClearCache;
  3687. struct StructClearChargingProfile ClearChargingProfile[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3688. struct StructDataTransfer DataTransfer[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3689. struct StructDiagnosticsStatusNotification DiagnosticsStatusNotification;
  3690. struct StructFirmwareStatusNotification FirmwareStatusNotification;
  3691. struct StructGetCompositeSchedule GetCompositeSchedule[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3692. struct StructGetConfiguration GetConfiguration;
  3693. struct StructGetDiagnostics GetDiagnostics;
  3694. struct StructGetLocalListVersion GetLocalListVersion;
  3695. struct StructMeterValues MeterValues[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3696. struct StructRemoteStartTransaction RemoteStartTransaction[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3697. struct StructRemoteStopTransaction RemoteStopTransaction[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3698. struct StructReserveNow ReserveNow[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3699. struct StructReset Reset;
  3700. struct StructSendLocalList SendLocalList;
  3701. struct StructSetChargingProfile SetChargingProfile[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3702. struct StructTriggerMessage TriggerMessage[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3703. struct StructUnlockConnector UnlockConnector[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3704. struct StructUpdateFirmware UpdateFirmware;
  3705. struct OCPP16ConfigurationTable ConfigurationTable;
  3706. struct StructChargingProfile SmartChargingProfile[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY + AC_QUANTITY];
  3707. };
  3708. #endif // DEFINE_H_