define.h 166 KB

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