Module_InternalComm.c 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691
  1. #include <sys/time.h>
  2. #include <sys/timeb.h>
  3. #include <sys/types.h>
  4. #include <sys/stat.h>
  5. #include <sys/types.h>
  6. #include <sys/ioctl.h>
  7. #include <sys/socket.h>
  8. #include <sys/ipc.h>
  9. #include <sys/shm.h>
  10. #include <sys/shm.h>
  11. #include <sys/mman.h>
  12. #include <linux/wireless.h>
  13. #include <arpa/inet.h>
  14. #include <netinet/in.h>
  15. #include <unistd.h>
  16. #include <stdarg.h>
  17. #include <stdio.h> /*標準輸入輸出定義*/
  18. #include <stdlib.h> /*標準函數庫定義*/
  19. #include <unistd.h> /*Unix 標準函數定義*/
  20. #include <fcntl.h> /*檔控制定義*/
  21. #include <termios.h> /*PPSIX 終端控制定義*/
  22. #include <errno.h> /*錯誤號定義*/
  23. #include <errno.h>
  24. #include <string.h>
  25. #include <time.h>
  26. #include <ctype.h>
  27. #include <ifaddrs.h>
  28. #include <math.h>
  29. #include "define.h"
  30. #include "main.h"
  31. #include "Module_InternalComm.h"
  32. #define FAIL_SPEC_COMM 1000
  33. #define ARRAY_SIZE(A) (sizeof(A) / sizeof(A[0]))
  34. #define PASS 1
  35. #define FAIL 0
  36. #define ON 1
  37. #define OFF 0
  38. //Print out level
  39. unsigned char PRINT_OUT_LEVEL_STATE = 0;
  40. #define LEVEL_1 4 // 3 Seconds
  41. #define LEVEL_2 8 // 6 Seconds
  42. struct SysConfigAndInfo *ShmSysConfigAndInfo;
  43. struct StatusCodeData *ShmStatusCodeData;
  44. struct PrimaryMcuData *ShmPrimaryMcuData;
  45. struct OCPP16Data *ShmOCPP16Data;
  46. struct Charger *ShmCharger;
  47. uint16_t stepIndex;
  48. void trim(char *s);
  49. int mystrcmp(char *p1,char *p2);
  50. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt);
  51. void split(char **arr, char *str, const char *del);
  52. int StoreLogMsg(const char *fmt, ...)
  53. {
  54. char Buf[4096+256];
  55. char buffer[4096];
  56. time_t CurrentTime;
  57. struct tm *tm;
  58. va_list args;
  59. va_start(args, fmt);
  60. int rc = vsnprintf(buffer, sizeof(buffer), fmt, args);
  61. va_end(args);
  62. memset(Buf,0,sizeof(Buf));
  63. CurrentTime = time(NULL);
  64. tm=localtime(&CurrentTime);
  65. if((ShmSysConfigAndInfo->SysConfig.ModelName != NULL) && (ShmSysConfigAndInfo->SysConfig.SerialNumber != NULL) && (strlen((char*)ShmSysConfigAndInfo->SysConfig.ModelName) >= 14))
  66. {
  67. sprintf(Buf,"echo \"[%04d.%02d.%02d %02d:%02d:%02d] - %s\" >> /Storage/SystemLog/[%04d.%02d]%s_%s_SystemLog",
  68. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,
  69. buffer,
  70. tm->tm_year+1900,tm->tm_mon+1,
  71. ShmSysConfigAndInfo->SysConfig.ModelName,
  72. ShmSysConfigAndInfo->SysConfig.SerialNumber);
  73. }
  74. else
  75. {
  76. sprintf(Buf,"echo \"[%04d.%02d.%02d %02d:%02d:%02d] - %s\" >> /Storage/SystemLog/[%04d.%02d]SystemLog",
  77. tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec,
  78. buffer,
  79. tm->tm_year+1900,tm->tm_mon+1);
  80. }
  81. #ifdef SystemLogMessage
  82. system(Buf);
  83. #endif
  84. #ifdef ConsloePrintLog
  85. printf("[%04d.%02d.%02d %02d:%02d:%02d] - %s", tm->tm_year+1900,tm->tm_mon+1,tm->tm_mday,tm->tm_hour,tm->tm_min,tm->tm_sec, buffer);
  86. #endif
  87. return rc;
  88. }
  89. int DiffTimeb(struct timeb ST, struct timeb ET)
  90. {
  91. //return milli-second
  92. unsigned int StartTime,StopTime;
  93. StartTime=(unsigned int)ST.time;
  94. StopTime=(unsigned int)ET.time;
  95. return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
  96. }
  97. //=================================
  98. // Common routine
  99. //=================================
  100. void trim(char *s)
  101. {
  102. int i=0, j, k, l=0;
  103. while((s[i]==' ')||(s[i]=='\t')||(s[i]=='\n'))
  104. i++;
  105. j = strlen(s)-1;
  106. while((s[j]==' ')||(s[j]=='\t')||(s[j]=='\n'))
  107. j--;
  108. if(i==0 && j==strlen(s)-1) { }
  109. else if(i==0) s[j+1] = '\0';
  110. else {
  111. for(k=i; k<=j; k++) s[l++] = s[k];
  112. s[l] = '\0';
  113. }
  114. }
  115. int mystrcmp(char *p1,char *p2)
  116. {
  117. while(*p1==*p2)
  118. {
  119. if(*p1=='\0' || *p2=='\0')
  120. break;
  121. p1++;
  122. p2++;
  123. }
  124. if(*p1=='\0' && *p2=='\0')
  125. return(PASS);
  126. else
  127. return(FAIL);
  128. }
  129. void substr(char *dest, const char* src, unsigned int start, unsigned int cnt)
  130. {
  131. strncpy(dest, src + start, cnt);
  132. dest[cnt] = 0;
  133. }
  134. void split(char **arr, char *str, const char *del)
  135. {
  136. char *s = strtok(str, del);
  137. while(s != NULL)
  138. {
  139. *arr++ = s;
  140. s = strtok(NULL, del);
  141. }
  142. }
  143. //==========================================
  144. // Init all share memory
  145. //==========================================
  146. int InitShareMemory()
  147. {
  148. int result = PASS;
  149. int MeterSMId;
  150. //Initial ShmSysConfigAndInfo
  151. if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo), 0777)) < 0)
  152. {
  153. #ifdef SystemLogMessage
  154. DEBUG_ERROR("shmget ShmSysConfigAndInfo NG\n");
  155. #endif
  156. result = FAIL;
  157. }
  158. else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  159. {
  160. #ifdef SystemLogMessage
  161. DEBUG_ERROR("[shmat ShmSysConfigAndInfo NG\n");
  162. #endif
  163. result = FAIL;
  164. }
  165. //Initial ShmStatusCodeData
  166. if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData), 0777)) < 0)
  167. {
  168. #ifdef SystemLogMessage
  169. DEBUG_ERROR("shmget ShmStatusCodeData NG\n");
  170. #endif
  171. result = FAIL;
  172. }
  173. else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  174. {
  175. #ifdef SystemLogMessage
  176. DEBUG_ERROR("shmat ShmStatusCodeData NG\n");
  177. #endif
  178. result = FAIL;
  179. }
  180. //Initial ShmPrimaryMcuKey
  181. if ((MeterSMId = shmget(ShmPrimaryMcuKey, sizeof(struct PrimaryMcuData), 0777)) < 0)
  182. {
  183. #ifdef SystemLogMessage
  184. DEBUG_ERROR("shmget ShmPrimaryMcuData NG\r\n");
  185. #endif
  186. result = FAIL;
  187. }
  188. else if ((ShmPrimaryMcuData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  189. {
  190. #ifdef SystemLogMessage
  191. DEBUG_ERROR("shmat ShmPrimaryMcuData NG\r\n");
  192. #endif
  193. result = FAIL;
  194. }
  195. //creat ShmOCPP16Data
  196. if ((MeterSMId = shmget(ShmOcppModuleKey, sizeof(struct OCPP16Data), 0777)) < 0)
  197. {
  198. #ifdef SystemLogMessage
  199. DEBUG_ERROR("shmget ShmOCPP16Data NG");
  200. #endif
  201. result = FAIL;
  202. }
  203. else if ((ShmOCPP16Data = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  204. {
  205. #ifdef SystemLogMessage
  206. DEBUG_ERROR("shmat ShmOCPP16Data NG");
  207. #endif
  208. result = FAIL;
  209. }
  210. else
  211. {}
  212. //Initial ShmCharger
  213. if ((MeterSMId = shmget(ShmChargerKey, sizeof(struct Charger), 0777)) < 0)
  214. {
  215. #ifdef SystemLogMessage
  216. DEBUG_ERROR("shmget ShmChargerKey NG\r\n");
  217. #endif
  218. result = FAIL;
  219. }
  220. else if ((ShmCharger = shmat(MeterSMId, NULL, 0)) == (void *) -1)
  221. {
  222. #ifdef SystemLogMessage
  223. DEBUG_ERROR("shmat ShmChargerKey NG\r\n");
  224. #endif
  225. result = FAIL;
  226. }
  227. return result;
  228. }
  229. int InitComPort()
  230. {
  231. int fd;
  232. struct termios tios;
  233. fd = open("/dev/ttyS1", O_RDWR);
  234. if(fd<=0)
  235. {
  236. #ifdef SystemLogMessage
  237. DEBUG_ERROR("open /dev/ttyS1 NG\n");
  238. #endif
  239. return -1;
  240. }
  241. ioctl (fd, TCGETS, &tios);
  242. tios.c_cflag = B115200| CS8 | CLOCAL | CREAD;
  243. tios.c_lflag = 0;
  244. tios.c_iflag = 0;
  245. tios.c_oflag = 0;
  246. tios.c_cc[VMIN]=0;
  247. tios.c_cc[VTIME]=(unsigned char)5; // timeout 0.5 secod
  248. tios.c_lflag=0;
  249. tcflush(fd, TCIFLUSH);
  250. ioctl (fd, TCSETS, &tios);
  251. return fd;
  252. }
  253. void ack_delay(unsigned char cmd)
  254. {
  255. switch(cmd)
  256. {
  257. case CMD_UPDATE_START:
  258. case CMD_UPDATE_END:
  259. usleep(300000);
  260. break;
  261. default:
  262. usleep(100000);
  263. break;
  264. }
  265. }
  266. int tranceive(int fd, unsigned char* cmd, unsigned char cmd_len, unsigned char* rx)
  267. {
  268. int len;
  269. tcflush(fd,TCIOFLUSH);
  270. if(write(fd, cmd, cmd_len) >= cmd_len)
  271. {
  272. ack_delay(cmd[3]);
  273. len = read(fd, rx, 512);
  274. }
  275. else
  276. {
  277. #ifdef SystemLogMessage
  278. DEBUG_ERROR("Serial command %s response fail.\n", cmd);
  279. #endif
  280. }
  281. return len;
  282. }
  283. unsigned char Query_FW_Ver(unsigned char fd, unsigned char targetAddr, Ver *Ret_Buf)
  284. {
  285. unsigned char result = FAIL;
  286. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_FW_VER, 0x00, 0x00, 0x00};
  287. unsigned char rx[512];
  288. unsigned char chksum = 0x00;
  289. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  290. if(len > 6)
  291. {
  292. if (len < 6+(rx[4] | rx[5]<<8))
  293. return result;
  294. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  295. {
  296. chksum ^= rx[6+idx];
  297. }
  298. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  299. (rx[2] == tx[1]) &&
  300. (rx[1] == tx[2]) &&
  301. (rx[3] == tx[3]))
  302. {
  303. strncpy(Ret_Buf->Version_FW, (char *)rx+6, (rx[4] | rx[5]<<8));
  304. result = PASS;
  305. }
  306. }
  307. return result;
  308. }
  309. unsigned char Query_HW_Ver(unsigned char fd, unsigned char targetAddr, Ver *Ret_Buf)
  310. {
  311. unsigned char result = FAIL;
  312. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_HW_VER, 0x00, 0x00, 0x00};
  313. unsigned char rx[512];
  314. unsigned char chksum = 0x00;
  315. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  316. if(len > 6)
  317. {
  318. if (len < 6+(rx[4] | rx[5]<<8))
  319. return result;
  320. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  321. {
  322. chksum ^= rx[6+idx];
  323. }
  324. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  325. (rx[2] == tx[1]) &&
  326. (rx[1] == tx[2]) &&
  327. (rx[3] == tx[3]))
  328. {
  329. strncpy(Ret_Buf->Version_HW, (char *)rx+6, (rx[4] | rx[5]<<8));
  330. result = PASS;
  331. }
  332. }
  333. return result;
  334. }
  335. unsigned char Query_Present_InputVoltage(unsigned char fd, unsigned char targetAddr, PresentInputVoltage *Ret_Buf)
  336. {
  337. unsigned char result = FAIL;
  338. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_PRESENT_INPUTVOLTAGE, 0x00, 0x00, 0x00};
  339. unsigned char rx[512];
  340. unsigned char chksum = 0x00;
  341. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  342. if(len > 6)
  343. {
  344. if (len < 6+(rx[4] | rx[5]<<8))
  345. return result;
  346. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  347. {
  348. chksum ^= rx[6+idx];
  349. }
  350. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  351. (rx[2] == tx[1]) &&
  352. (rx[1] == tx[2]) &&
  353. (rx[3] == tx[3]))
  354. {
  355. Ret_Buf->inputType = rx[6];
  356. Ret_Buf->L1N_L12 =( rx[7] | (rx[8]<<8))/10.0;
  357. Ret_Buf->L2N_L23 =( rx[9] | (rx[10]<<8))/10.0;
  358. Ret_Buf->L3N_L31 =( rx[11] | (rx[12]<<8))/10.0;
  359. result = PASS;
  360. }
  361. }
  362. return result;
  363. }
  364. unsigned char Query_Present_OutputVoltage(unsigned char fd, unsigned char targetAddr, PresentOutputVoltage *Ret_Buf)
  365. {
  366. unsigned char result = FAIL;
  367. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_PRESENT_OUTPUTVOLTAGE, 0x00, 0x00, 0x00};
  368. unsigned char rx[512];
  369. unsigned char chksum = 0x00;
  370. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  371. if(len > 6)
  372. {
  373. if (len < 6+(rx[4] | rx[5]<<8))
  374. return result;
  375. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  376. {
  377. chksum ^= rx[6+idx];
  378. }
  379. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  380. (rx[2] == tx[1]) &&
  381. (rx[1] == tx[2]) &&
  382. (rx[3] == tx[3]))
  383. {
  384. Ret_Buf->behindFuse_Voltage_C1 =(rx[6] | (rx[7]<<8))/10.0;
  385. Ret_Buf->behindRelay_Voltage_C1 =(rx[8] | (rx[9]<<8))/10.0;
  386. if((rx[4] | rx[5]<<8) > 4)
  387. {
  388. Ret_Buf->behindFuse_Voltage_C2 =(rx[10] | (rx[11]<<8))/10.0;
  389. Ret_Buf->behindRelay_Voltage_C2 =(rx[12] | (rx[13]<<8))/10.0;
  390. }
  391. result = PASS;
  392. }
  393. }
  394. return result;
  395. }
  396. unsigned char Query_Fan_Speed(unsigned char fd, unsigned char targetAddr, FanSpeed *Ret_Buf)
  397. {
  398. unsigned char result = FAIL;
  399. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_FAN_SPEED, 0x00, 0x00, 0x00};
  400. unsigned char rx[512];
  401. unsigned char chksum = 0x00;
  402. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  403. if(len > 6)
  404. {
  405. if (len < 6+(rx[4] | rx[5]<<8))
  406. return result;
  407. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  408. {
  409. chksum ^= rx[6+idx];
  410. }
  411. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  412. (rx[2] == tx[1]) &&
  413. (rx[1] == tx[2]) &&
  414. (rx[3] == tx[3]))
  415. {
  416. for(int idx=0;idx<((rx[4] | rx[5]<<8)>>1);idx++)
  417. Ret_Buf->speed[idx] =(rx[6+(2*idx)] | (rx[6+(2*idx)+1]<<8));
  418. result = PASS;
  419. }
  420. }
  421. return result;
  422. }
  423. unsigned char Query_Temperature(unsigned char fd, unsigned char targetAddr, Temperature *Ret_Buf)
  424. {
  425. unsigned char result = FAIL;
  426. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_TEMPERATURE, 0x00, 0x00, 0x00};
  427. unsigned char rx[512];
  428. unsigned char chksum = 0x00;
  429. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  430. if(len > 6)
  431. {
  432. if (len < 6+(rx[4] | rx[5]<<8))
  433. return result;
  434. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  435. {
  436. chksum ^= rx[6+idx];
  437. }
  438. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  439. (rx[2] == tx[1]) &&
  440. (rx[1] == tx[2]) &&
  441. (rx[3] == tx[3]))
  442. {
  443. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  444. Ret_Buf->point[idx] = rx[6+idx] - 60;
  445. result = PASS;
  446. }
  447. }
  448. return result;
  449. }
  450. unsigned char Query_Aux_PowerVoltage(unsigned char fd, unsigned char targetAddr, AuxPower *Ret_Buf)
  451. {
  452. unsigned char result = FAIL;
  453. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_AUX_POWERVOLTAGE, 0x00, 0x00, 0x00};
  454. unsigned char rx[512];
  455. unsigned char chksum = 0x00;
  456. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  457. if(len > 6)
  458. {
  459. if (len < 6+(rx[4] | rx[5]<<8))
  460. return result;
  461. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  462. {
  463. chksum ^= rx[6+idx];
  464. }
  465. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  466. (rx[2] == tx[1]) &&
  467. (rx[1] == tx[2]) &&
  468. (rx[3] == tx[3]))
  469. {
  470. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  471. Ret_Buf->voltage[idx] = rx[6+idx];
  472. result = PASS;
  473. }
  474. }
  475. return result;
  476. }
  477. unsigned char Query_Relay_Output(unsigned char fd, unsigned char targetAddr, Relay *Ret_Buf)
  478. {
  479. unsigned char result = FAIL;
  480. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_RELAY_OUTPUT, 0x00, 0x00, 0x00};
  481. unsigned char rx[512];
  482. unsigned char chksum = 0x00;
  483. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  484. if(len > 6)
  485. {
  486. if (len < 6+(rx[4] | rx[5]<<8))
  487. return result;
  488. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  489. {
  490. chksum ^= rx[6+idx];
  491. }
  492. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  493. (rx[2] == tx[1]) &&
  494. (rx[1] == tx[2]) &&
  495. (rx[3] == tx[3]))
  496. {
  497. for(int idx_connector=0;idx_connector<(rx[4] | rx[5]<<8);idx_connector++)
  498. {
  499. for(int idx=0;idx<8;idx++)
  500. Ret_Buf->relay_status[idx_connector][idx] = (rx[6+idx_connector]>>idx) & 0x01;
  501. }
  502. result = PASS;
  503. }
  504. }
  505. return result;
  506. }
  507. unsigned char Query_Gfd_Adc(unsigned char fd, unsigned char targetAddr, Gfd *Ret_Buf)
  508. {
  509. unsigned char result = FAIL;
  510. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_GFD_ADC, 0x00, 0x00, 0x00};
  511. unsigned char rx[512];
  512. unsigned char chksum = 0x00;
  513. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  514. if(len > 6)
  515. {
  516. if (len < 6+(rx[4] | rx[5]<<8))
  517. return result;
  518. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  519. {
  520. chksum ^= rx[6+idx];
  521. }
  522. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  523. (rx[2] == tx[1]) &&
  524. (rx[1] == tx[2]) &&
  525. (rx[3] == tx[3]))
  526. {
  527. for(int idx_connector=0;idx_connector<((rx[4] | rx[5]<<8)>>2);idx_connector++)
  528. {
  529. Ret_Buf->adc_value_positive[idx_connector] = (rx[6+(4*idx_connector)] | rx[6+(4*idx_connector)+1]<<8);
  530. Ret_Buf->adc_value_negative[idx_connector] = (rx[6+(4*idx_connector)+2] | rx[6+(4*idx_connector)+3]<<8);;
  531. }
  532. result = PASS;
  533. }
  534. }
  535. return result;
  536. }
  537. unsigned char Query_Gpio_Input(unsigned char fd, unsigned char targetAddr, Gpio_in *Ret_Buf)
  538. {
  539. unsigned char result = FAIL;
  540. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_GPIO_INPUT, 0x00, 0x00, 0x00};
  541. unsigned char rx[512];
  542. unsigned char chksum = 0x00;
  543. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  544. if(len > 6)
  545. {
  546. if (len < 6+(rx[4] | rx[5]<<8))
  547. return result;
  548. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  549. {
  550. chksum ^= rx[6+idx];
  551. }
  552. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  553. (rx[2] == tx[1]) &&
  554. (rx[1] == tx[2]) &&
  555. (rx[3] == tx[3]))
  556. {
  557. Ret_Buf->AC_Connector = (rx[6] >> 0) & 0x01;
  558. Ret_Buf->AC_MainBreaker = (rx[6] >> 1) & 0x01;
  559. Ret_Buf->SPD = (rx[6] >> 2) & 0x01;
  560. Ret_Buf->Door_Open = (rx[6] >> 3) & 0x01;
  561. Ret_Buf->GFD[0] = (rx[6] >> 4) & 0x01;
  562. Ret_Buf->GFD[1] = (rx[6] >> 5) & 0x01;
  563. Ret_Buf->Button[0] = (rx[6] >> 6) & 0x01;
  564. Ret_Buf->Button[1] = (rx[6] >> 7) & 0x01;
  565. Ret_Buf->Button_Emergency = (rx[7] >> 0) & 0x01;
  566. result = PASS;
  567. }
  568. }
  569. return result;
  570. }
  571. unsigned char Query_Alarm_Log(unsigned char fd, unsigned char targetAddr, Alarm_Log *Ret_Buf)
  572. {
  573. unsigned char result = FAIL;
  574. unsigned char tx[10] = {0xaa, 0x00, targetAddr, CMD_QUERY_ALARM_LOG, 0x03, 0x00, Ret_Buf->logArea, Ret_Buf->alarmIndex&0xff, ((Ret_Buf->alarmIndex>>8)&0xff), 0x00};
  575. unsigned char rx[512];
  576. unsigned char chksum = Ret_Buf->logArea ^ (Ret_Buf->alarmIndex&0xff) ^ ((Ret_Buf->alarmIndex>>8)&0xff);
  577. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  578. if(len > 6)
  579. {
  580. if (len < 6+(rx[4] | rx[5]<<8))
  581. return result;
  582. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  583. {
  584. chksum ^= rx[6+idx];
  585. }
  586. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  587. (rx[2] == tx[1]) &&
  588. (rx[1] == tx[2]) &&
  589. (rx[3] == tx[3]))
  590. {
  591. memcpy(&Ret_Buf->log[0], &rx[8], 8);
  592. result = PASS;
  593. }
  594. }
  595. return result;
  596. }
  597. unsigned char Query_RTC(unsigned char fd, unsigned char targetAddr, Rtc *Ret_Buf)
  598. {
  599. unsigned char result = FAIL;
  600. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_RTC, 0x00, 0x00, 0x00};
  601. unsigned char rx[512];
  602. unsigned char chksum = 0x00;
  603. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  604. if(len > 6)
  605. {
  606. if (len < 6+(rx[4] | rx[5]<<8))
  607. return result;
  608. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  609. {
  610. chksum ^= rx[6+idx];
  611. }
  612. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  613. (rx[2] == tx[1]) &&
  614. (rx[1] == tx[2]) &&
  615. (rx[3] == tx[3]))
  616. {
  617. Ret_Buf->year = ((rx[6]-'0')*1000) + ((rx[7]-'0')*100) + ((rx[8]-'0')*10) + ((rx[9]-'0')*1);
  618. Ret_Buf->month = ((rx[10]-'0')*10) + ((rx[11]-'0')*1);
  619. Ret_Buf->day = ((rx[12]-'0')*10) + ((rx[13]-'0')*1);
  620. Ret_Buf->hour = ((rx[14]-'0')*10) + ((rx[15]-'0')*1);
  621. Ret_Buf->min = ((rx[16]-'0')*10) + ((rx[17]-'0')*1);
  622. Ret_Buf->sec = ((rx[18]-'0')*10) + ((rx[19]-'0')*1);
  623. result = PASS;
  624. }
  625. }
  626. return result;
  627. }
  628. unsigned char Query_AC_MCU_Status(unsigned char fd, unsigned char targetAddr, Ac_Primary_Mcu *Ret_Buf)
  629. {
  630. unsigned char result = FAIL;
  631. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_AC_STATUS, 0x00, 0x00, 0x00};
  632. unsigned char rx[512];
  633. unsigned char chksum = 0x00;
  634. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  635. if(len > 6)
  636. {
  637. if (len < 6+(rx[4] | rx[5]<<8))
  638. return result;
  639. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  640. {
  641. chksum ^= rx[6+idx];
  642. }
  643. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  644. (rx[2] == tx[1]) &&
  645. (rx[1] == tx[2]) &&
  646. (rx[3] == tx[3]))
  647. {
  648. Ret_Buf->cp_state = rx[6];
  649. Ret_Buf->current_limit = rx[7] | (rx[8]<<0x08);
  650. Ret_Buf->cp_voltage_positive = (rx[9] | (rx[10]<<0x08))/100.0;
  651. Ret_Buf->cp_voltage_negtive = (rx[11] | (rx[12]<<0x08))/100.0;
  652. Ret_Buf->locker_state = rx[13];
  653. Ret_Buf->relay_state = rx[14];
  654. Ret_Buf->shutter_state = rx[15];
  655. Ret_Buf->meter_state = rx[16];
  656. Ret_Buf->pp_state = rx[17];
  657. Ret_Buf->rating_current = rx[18];
  658. Ret_Buf->rotatory_switch = (rx[19] & 0x0F);
  659. result = PASS;
  660. }
  661. }
  662. return result;
  663. }
  664. unsigned char Query_AC_MCU_Alarm(unsigned char fd, unsigned char targetAddr, Ac_Primary_Mcu_Alarm *Ret_Buf)
  665. {
  666. unsigned char result = FAIL;
  667. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_AC_ALARM, 0x00, 0x00, 0x00};
  668. unsigned char rx[512];
  669. unsigned char chksum = 0x00;
  670. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  671. if(len > 6)
  672. {
  673. if (len < 6+(rx[4] | rx[5]<<8))
  674. return result;
  675. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  676. {
  677. chksum ^= rx[6+idx];
  678. }
  679. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  680. (rx[2] == tx[1]) &&
  681. (rx[1] == tx[2]) &&
  682. (rx[3] == tx[3]))
  683. {
  684. //rx[6]
  685. Ret_Buf->bits.OVP = (((rx[6]>>0)&0x01)?1:0);
  686. Ret_Buf->bits.UVP = (((rx[6]>>1)&0x01)?1:0);
  687. Ret_Buf->bits.OCP = (((rx[6]>>2)&0x01)?1:0);
  688. Ret_Buf->bits.OTP = (((rx[6]>>3)&0x01)?1:0);
  689. Ret_Buf->bits.gmi_fault = (((rx[6]>>4)&0x01)?1:0);
  690. Ret_Buf->bits.cp_fault = (((rx[6]>>5)&0x01)?1:0);
  691. Ret_Buf->bits.ac_leak = (((rx[6]>>6)&0x01)?1:0);
  692. Ret_Buf->bits.dc_leak = (((rx[6]>>7)&0x01)?1:0);
  693. //rx[7]
  694. Ret_Buf->bits.mcu_selftest_fail = (((rx[7]>>0)&0x01)?1:0);
  695. Ret_Buf->bits.handshaking_timeout = (((rx[7]>>1)&0x01)?1:0);
  696. Ret_Buf->bits.emergency_stop = (((rx[7]>>2)&0x01)?1:0);
  697. Ret_Buf->bits.relay_welding = (((rx[7]>>3)&0x01)?1:0);
  698. Ret_Buf->bits.leak_module_fail = (((rx[7]>>4)&0x01)?1:0);
  699. Ret_Buf->bits.shutter_fault = (((rx[7]>>5)&0x01)?1:0);
  700. Ret_Buf->bits.locker_fault = (((rx[7]>>6)&0x01)?1:0);
  701. Ret_Buf->bits.power_drop = (((rx[7]>>7)&0x01)?1:0);
  702. //rx[8] 3~7bits reserved
  703. Ret_Buf->bits.circuit_short = (((rx[8]>>0)&0x01)?1:0);
  704. Ret_Buf->bits.set_circuit = (((rx[8]>>1)&0x01)?1:0);
  705. Ret_Buf->bits.relay_drive_fault = (((rx[8]>>2)&0x01)?1:0);
  706. //rx[9] 0~7bits reserved
  707. result = PASS;
  708. }
  709. }
  710. return result;
  711. }
  712. unsigned char Query_Present_OutputCurrent(unsigned char fd, unsigned char targetAddr, Presentoutputcurrent *Ret_Buf)
  713. {
  714. unsigned char result = FAIL;
  715. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_PRESENT_OUTPUTCURRENT, 0x00, 0x00, 0x00};
  716. unsigned char rx[512];
  717. unsigned char chksum = 0x00;
  718. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  719. if(len > 0)
  720. {
  721. if(len < 6+(rx[4] | rx[5]<<8))
  722. return result;
  723. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  724. {
  725. chksum ^= rx[6+idx];
  726. }
  727. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  728. (rx[2] == tx[1]) &&
  729. (rx[1] == tx[2]) &&
  730. (rx[3] == tx[3]))
  731. {
  732. Ret_Buf->L1N_L12[0] = (rx[6] | (rx[7]<<8))/10.0;
  733. Ret_Buf->L2N_L23[0] = (rx[8] | (rx[9]<<8))/10.0;
  734. Ret_Buf->L3N_L31[0] = (rx[10] | (rx[11]<<8))/10.0;
  735. Ret_Buf->L1N_L12[1] = (rx[12] | (rx[13]<<8))/10.0;
  736. Ret_Buf->L2N_L23[1] = (rx[14] | (rx[15]<<8))/10.0;
  737. Ret_Buf->L3N_L31[1] = (rx[16] | (rx[17]<<8))/10.0;
  738. result = PASS;
  739. }
  740. }
  741. return result;
  742. }
  743. unsigned char Query_Ble_Config(unsigned char fd, unsigned char targetAddr, Ble_Config_Data *Ret_Buf)
  744. {
  745. unsigned char result = FAIL;
  746. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_BLE_CONFIG_DATA, 0x00, 0x00, 0x00};
  747. unsigned char rx[512];
  748. unsigned char chksum = 0x00;
  749. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  750. if(len > 0)
  751. {
  752. if(len < 6+(rx[4] | rx[5]<<8))
  753. return result;
  754. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  755. {
  756. chksum ^= rx[6+idx];
  757. }
  758. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  759. (rx[2] == tx[1]) &&
  760. (rx[1] == tx[2]) &&
  761. (rx[3] == tx[3]))
  762. {
  763. Ret_Buf->isLogin = (rx[6]?0x01:0x00);
  764. Ret_Buf->isRequestStart = (rx[7]?0x01:0x00);
  765. Ret_Buf->isRequestStop = (rx[8]?0x01:0x00);
  766. result = PASS;
  767. }
  768. }
  769. return result;
  770. }
  771. unsigned char Query_Ble_Central_ID(unsigned char fd, unsigned char targetAddr, Ble_Login_Central_Id *Ret_Buf)
  772. {
  773. unsigned char result = FAIL;
  774. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_BLE_CENTRAL_ID, 0x00, 0x00, 0x00};
  775. unsigned char rx[512];
  776. unsigned char chksum = 0x00;
  777. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  778. if(len > 0)
  779. {
  780. if(len < 6+(rx[4] | rx[5]<<8))
  781. return result;
  782. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  783. {
  784. chksum ^= rx[6+idx];
  785. }
  786. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  787. (rx[2] == tx[1]) &&
  788. (rx[1] == tx[2]) &&
  789. (rx[3] == tx[3]))
  790. {
  791. memset(Ret_Buf->id, 0x00, ARRAY_SIZE(Ret_Buf->id));
  792. memcpy(&Ret_Buf->id[0], &rx[6], (rx[4] | (rx[5]<<8)));
  793. result = PASS;
  794. }
  795. }
  796. return result;
  797. }
  798. unsigned char Query_Power_Consumption(unsigned char fd, unsigned char targetAddr, Power_Consumption *Ret_Buf)
  799. {
  800. unsigned char result = FAIL;
  801. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_POWER_CONSUMPTION, 0x00, 0x00, 0x00};
  802. unsigned char rx[512];
  803. unsigned char chksum = 0x00;
  804. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  805. if(len > 0)
  806. {
  807. if(len < 6+(rx[4] | rx[5]<<8))
  808. return result;
  809. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  810. {
  811. chksum ^= rx[6+idx];
  812. }
  813. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  814. (rx[2] == tx[1]) &&
  815. (rx[1] == tx[2]) &&
  816. (rx[3] == tx[3]))
  817. {
  818. Ret_Buf-> power_consumption = ((uint32_t)rx[6] | (((uint32_t)rx[7])<<8) | (((uint32_t)rx[8])<<16) | (((uint32_t)rx[9])<<24));
  819. result = PASS;
  820. }
  821. }
  822. return result;
  823. }
  824. unsigned char Config_Fan_Speed(unsigned char fd, unsigned char targetAddr, FanSpeed *Set_Buf)
  825. {
  826. unsigned char result = FAIL;
  827. unsigned char tx[15] = {0xaa, 0x00, targetAddr, CMD_CONFIG_FAN_SPEED, 0x08, 0x00, Set_Buf->speed[0]&0xff, (Set_Buf->speed[0]>>8)&0xff, Set_Buf->speed[1]&0xff, (Set_Buf->speed[1]>>8)&0xff, Set_Buf->speed[2]&0xff, (Set_Buf->speed[2]>>8)&0xff, Set_Buf->speed[3]&0xff, (Set_Buf->speed[3]>>8)&0xff, 0x00};
  828. unsigned char rx[512];
  829. unsigned char chksum = 0x00;
  830. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  831. chksum ^= tx[6+idx];
  832. tx[14] = chksum;
  833. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  834. if(len > 6)
  835. {
  836. if (len < 6+(rx[4] | rx[5]<<8))
  837. return result;
  838. chksum = 0x00;
  839. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  840. {
  841. chksum ^= rx[6+idx];
  842. }
  843. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  844. (rx[2] == tx[1]) &&
  845. (rx[1] == tx[2]) &&
  846. (rx[3] == tx[3]) &&
  847. (rx[6] == 0x01))
  848. {
  849. result = PASS;
  850. }
  851. }
  852. return result;
  853. }
  854. unsigned char Config_Serial_Number(unsigned char fd, unsigned char targetAddr, Evse_Id *Set_Buf)
  855. {
  856. unsigned char result = FAIL;
  857. unsigned char tx[27] = {0xaa, 0x00, targetAddr, CMD_CONFIG_SERIAL_NUMBER, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  858. unsigned char rx[512];
  859. unsigned char chksum = 0x00;
  860. memcpy(&tx[14], &Set_Buf->serial_number[0], ARRAY_SIZE(Set_Buf->serial_number));
  861. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  862. chksum ^= tx[6+idx];
  863. tx[26] = chksum;
  864. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  865. if(len > 6)
  866. {
  867. if (len < 6+(rx[4] | rx[5]<<8))
  868. return result;
  869. chksum = 0x00;
  870. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  871. {
  872. chksum ^= rx[6+idx];
  873. }
  874. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  875. (rx[2] == tx[1]) &&
  876. (rx[1] == tx[2]) &&
  877. (rx[3] == tx[3]) &&
  878. (rx[6] == 0x01))
  879. {
  880. result = PASS;
  881. }
  882. }
  883. return result;
  884. }
  885. unsigned char Config_Model_Name(unsigned char fd, unsigned char targetAddr, Evse_Id *Set_Buf)
  886. {
  887. unsigned char result = FAIL;
  888. unsigned char tx[21] = {0xaa, 0x00, targetAddr, CMD_CONFIG_MODEL_NAME, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
  889. unsigned char rx[512];
  890. unsigned char chksum = 0x00;
  891. memcpy(&tx[6], &Set_Buf->model_name[0], ARRAY_SIZE(Set_Buf->model_name));
  892. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  893. chksum ^= tx[6+idx];
  894. tx[20] = chksum;
  895. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  896. if(len > 6)
  897. {
  898. if (len < 6+(rx[4] | rx[5]<<8))
  899. return result;
  900. chksum = 0x00;
  901. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  902. {
  903. chksum ^= rx[6+idx];
  904. }
  905. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  906. (rx[2] == tx[1]) &&
  907. (rx[1] == tx[2]) &&
  908. (rx[3] == tx[3]) &&
  909. (rx[6] == 0x01))
  910. {
  911. result = PASS;
  912. }
  913. }
  914. return result;
  915. }
  916. unsigned char Config_Relay_Output(unsigned char fd, unsigned char targetAddr, Relay *Set_Buf)
  917. {
  918. unsigned char result = FAIL;
  919. unsigned char tx[9] = {0xaa, 0x00, targetAddr, CMD_CONFIG_RELAY_OUTPUT, 0x02, 0x00, 0x00, 0x00, 0x00};
  920. unsigned char rx[512];
  921. unsigned char chksum = 0x00;
  922. for(int idx_connector=0;idx_connector<2;idx_connector++)
  923. for(int idx = 0;idx<8;idx++)
  924. tx[6+idx_connector] |= ((Set_Buf->relay_status[idx_connector][idx]?0x01:0x00)<<idx);
  925. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  926. chksum ^= tx[6+idx];
  927. tx[8] = chksum;
  928. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  929. if(len > 6)
  930. {
  931. if (len < 6+(rx[4] | rx[5]<<8))
  932. return result;
  933. chksum = 0x00;
  934. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  935. {
  936. chksum ^= rx[6+idx];
  937. }
  938. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  939. (rx[2] == tx[1]) &&
  940. (rx[1] == tx[2]) &&
  941. (rx[3] == tx[3]) &&
  942. (rx[6] == 0x01))
  943. {
  944. result = PASS;
  945. }
  946. }
  947. return result;
  948. }
  949. unsigned char Config_Gpio_Output(unsigned char fd, unsigned char targetAddr, Gpio_out *Set_Buf)
  950. {
  951. unsigned char result = FAIL;
  952. unsigned char tx[9] = {0xaa, 0x00, targetAddr, CMD_CONFIG_GPIO_OUTPUT, 0x01, 0x00, 0x00, 0x00};
  953. unsigned char rx[512];
  954. unsigned char chksum = 0x00;
  955. tx[6] |= (Set_Buf->AC_Connector?0x01:0x00);
  956. for(int idx=0;idx<2;idx++)
  957. tx[6] |= (Set_Buf->Button_LED[idx]?0x01:0x00)<<(1+idx);
  958. for(int idx=0;idx<4;idx++)
  959. tx[6] |= (Set_Buf->System_LED[idx]?0x01:0x00)<<(3+idx);
  960. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  961. chksum ^= tx[6+idx];
  962. tx[14] = chksum;
  963. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  964. if(len > 6)
  965. {
  966. if (len < 6+(rx[4] | rx[5]<<8))
  967. return result;
  968. chksum = 0x00;
  969. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  970. {
  971. chksum ^= rx[6+idx];
  972. }
  973. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  974. (rx[2] == tx[1]) &&
  975. (rx[1] == tx[2]) &&
  976. (rx[3] == tx[3]) &&
  977. (rx[6] == tx[6]))
  978. {
  979. result = PASS;
  980. }
  981. }
  982. return result;
  983. }
  984. unsigned char Config_RTC(unsigned char fd, unsigned char targetAddr, Rtc *Set_Buf)
  985. {
  986. unsigned char result = FAIL;
  987. unsigned char tx[21];
  988. unsigned char rx[512];
  989. unsigned char chksum = 0x00;
  990. tx[0] = 0xaa;
  991. tx[1] = 0x00;
  992. tx[2] = targetAddr;
  993. tx[3] = CMD_CONFIG_RTC;
  994. tx[4] = 0x0e;
  995. tx[5] = 0x00;
  996. tx[6] = ((Set_Buf->year)/1000)+'0';
  997. tx[7] = ((Set_Buf->year)/100%10)+'0';
  998. tx[8] = ((Set_Buf->year)/10%10)+'0';
  999. tx[9] = ((Set_Buf->year)%10)+'0';
  1000. tx[10] = ((Set_Buf->month)/10)+'0';
  1001. tx[11] = ((Set_Buf->month)%10)+'0';
  1002. tx[12] = ((Set_Buf->day)/10)+'0';
  1003. tx[13] = ((Set_Buf->day)%10)+'0';
  1004. tx[14] = ((Set_Buf->hour)/10)+'0';
  1005. tx[15] = ((Set_Buf->hour)%10)+'0';
  1006. tx[16] = ((Set_Buf->min)/10)+'0';
  1007. tx[17] = ((Set_Buf->min)%10)+'0';
  1008. tx[18] = ((Set_Buf->sec)/10)+'0';
  1009. tx[19] = ((Set_Buf->sec)%10)+'0';
  1010. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  1011. chksum ^= tx[6+idx];
  1012. tx[20] = chksum;
  1013. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  1014. if(len > 6)
  1015. {
  1016. if (len < 6+(rx[4] | rx[5]<<8))
  1017. return result;
  1018. chksum = 0x00;
  1019. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  1020. {
  1021. chksum ^= rx[6+idx];
  1022. }
  1023. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  1024. (rx[2] == tx[1]) &&
  1025. (rx[1] == tx[2]) &&
  1026. (rx[3] == tx[3]) &&
  1027. (rx[6] == 0x01))
  1028. {
  1029. result = PASS;
  1030. }
  1031. }
  1032. return result;
  1033. }
  1034. unsigned char Config_AC_MCU_LED(unsigned char fd, unsigned char targetAddr, Ac_Primary_Mcu_Led *Set_Buf)
  1035. {
  1036. unsigned char result = FAIL;
  1037. unsigned char tx[12] ;
  1038. unsigned char rx[512];
  1039. unsigned char chksum = 0x00;
  1040. tx[0] = 0xaa;
  1041. tx[1] = 0x00;
  1042. tx[2] = targetAddr;
  1043. tx[3] = CMD_CONFIG_AC_LED;
  1044. tx[4] = 0x05;
  1045. tx[5] = 0x00;
  1046. tx[6] = Set_Buf->mode;
  1047. tx[7] = ((Set_Buf->alarm_code>>0)&0xff);
  1048. tx[8] = ((Set_Buf->alarm_code>>8)&0xff);
  1049. tx[9] = ((Set_Buf->alarm_code>>16)&0xff);
  1050. tx[10] = ((Set_Buf->alarm_code>>24)&0xff);
  1051. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  1052. chksum ^= tx[6+idx];
  1053. tx[11] = chksum;
  1054. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  1055. if(len > 6)
  1056. {
  1057. if (len < 6+(rx[4] | rx[5]<<8))
  1058. return result;
  1059. chksum = 0x00;
  1060. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  1061. {
  1062. chksum ^= rx[6+idx];
  1063. }
  1064. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  1065. (rx[2] == tx[1]) &&
  1066. (rx[1] == tx[2]) &&
  1067. (rx[3] == tx[3]) &&
  1068. (rx[6] == 0x01))
  1069. {
  1070. result = PASS;
  1071. }
  1072. }
  1073. return result;
  1074. }
  1075. unsigned char Config_AC_MCU_LEGACY_REQUEST(unsigned char fd, unsigned char targetAddr, Legacy_Request *Set_Buf)
  1076. {
  1077. unsigned char result = FAIL;
  1078. unsigned char tx[9];
  1079. unsigned char rx[512];
  1080. unsigned char chksum = 0x00;
  1081. tx[0] = 0xaa;
  1082. tx[1] = 0x00;
  1083. tx[2] = targetAddr;
  1084. tx[3] = CMD_CONFIG_MCU_MODE;
  1085. tx[4] = 0x02;
  1086. tx[5] = 0x00;
  1087. tx[6] = Set_Buf->isLegacyRequest;
  1088. tx[7] = 0x00;
  1089. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  1090. chksum ^= tx[6+idx];
  1091. tx[8] = chksum;
  1092. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  1093. if(len > 6)
  1094. {
  1095. if (len < 6+(rx[4] | rx[5]<<8))
  1096. return result;
  1097. chksum = 0x00;
  1098. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  1099. {
  1100. chksum ^= rx[6+idx];
  1101. }
  1102. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  1103. (rx[2] == tx[1]) &&
  1104. (rx[1] == tx[2]) &&
  1105. (rx[3] == tx[3]) &&
  1106. (rx[6] == 0x01))
  1107. {
  1108. result = PASS;
  1109. }
  1110. }
  1111. return result;
  1112. }
  1113. unsigned char Config_AC_MCU_RELAY(unsigned char fd, unsigned char targetAddr, Legacy_Request *Set_Buf)
  1114. {
  1115. unsigned char result = FAIL;
  1116. unsigned char tx[9];
  1117. unsigned char rx[512];
  1118. unsigned char chksum = 0x00;
  1119. tx[0] = 0xaa;
  1120. tx[1] = 0x00;
  1121. tx[2] = targetAddr;
  1122. tx[3] = CMD_CONFIG_MCU_MODE;
  1123. tx[4] = 0x02;
  1124. tx[5] = 0x00;
  1125. tx[6] = Set_Buf->isLegacyRequest;
  1126. tx[7] = 0x00;
  1127. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  1128. chksum ^= tx[6+idx];
  1129. tx[8] = chksum;
  1130. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  1131. if(len > 6)
  1132. {
  1133. if (len < 6+(rx[4] | rx[5]<<8))
  1134. return result;
  1135. chksum = 0x00;
  1136. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  1137. {
  1138. chksum ^= rx[6+idx];
  1139. }
  1140. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  1141. (rx[2] == tx[1]) &&
  1142. (rx[1] == tx[2]) &&
  1143. (rx[3] == tx[3]) &&
  1144. (rx[6] == 0x01))
  1145. {
  1146. result = PASS;
  1147. }
  1148. }
  1149. return result;
  1150. }
  1151. unsigned char Config_AC_MCU_RESET_REQUEST(unsigned char fd, unsigned char targetAddr, Mcu_Reset_Request *Set_Buf)
  1152. {
  1153. unsigned char result = FAIL;
  1154. unsigned char tx[9];
  1155. unsigned char rx[512];
  1156. unsigned char chksum = 0x00;
  1157. tx[0] = 0xaa;
  1158. tx[1] = 0x00;
  1159. tx[2] = targetAddr;
  1160. tx[3] = CMD_CONFIG_MCU_RESET_REQUEST;
  1161. tx[4] = 0x02;
  1162. tx[5] = 0x00;
  1163. tx[6] = Set_Buf->isMcuResetRequest;
  1164. tx[7] = 0x00;
  1165. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  1166. chksum ^= tx[6+idx];
  1167. tx[8] = chksum;
  1168. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  1169. if(len > 6)
  1170. {
  1171. if (len < 6+(rx[4] | rx[5]<<8))
  1172. return result;
  1173. chksum = 0x00;
  1174. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  1175. {
  1176. chksum ^= rx[6+idx];
  1177. }
  1178. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  1179. (rx[2] == tx[1]) &&
  1180. (rx[1] == tx[2]) &&
  1181. (rx[3] == tx[3]) &&
  1182. (rx[6] == 0x01))
  1183. {
  1184. result = PASS;
  1185. }
  1186. }
  1187. return result;
  1188. }
  1189. unsigned char Query_AC_GUN_PLUGIN_TIMES(unsigned char fd, unsigned char targetAddr, Gun_Plugin_Times *Ret_Buf)
  1190. {
  1191. unsigned char result = FAIL;
  1192. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_QUERY_GUN_PLUGIN_TIMES, 0x00, 0x00, 0x00};
  1193. unsigned char rx[512];
  1194. unsigned char chksum = 0x00;
  1195. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  1196. if(len > 6)
  1197. {
  1198. if(len < 6+(rx[4] | rx[5]<<8))
  1199. return result;
  1200. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  1201. {
  1202. chksum ^= rx[6+idx];
  1203. }
  1204. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  1205. (rx[2] == tx[1]) &&
  1206. (rx[1] == tx[2]) &&
  1207. (rx[3] == tx[3]))
  1208. {
  1209. Ret_Buf-> GunPluginTimes = ((uint32_t)rx[6] | (((uint32_t)rx[7])<<8) | (((uint32_t)rx[8])<<16) | (((uint32_t)rx[9])<<24));
  1210. result = PASS;
  1211. }
  1212. }
  1213. return result;
  1214. }
  1215. unsigned char Config_AC_MaxCurrent_And_CpPwmDuty(unsigned char fd, unsigned char targetAddr, Ac_Primary_Mcu_Cp_Pwm_Duty*Set_Buf)
  1216. {
  1217. unsigned char result = FAIL;
  1218. unsigned char tx[8];
  1219. unsigned char rx[512];
  1220. unsigned char chksum = 0x00;
  1221. tx[0] = 0xaa;
  1222. tx[1] = 0x00;
  1223. tx[2] = targetAddr;
  1224. tx[3] = CMD_CONFIG_CURRENT_LINIT;
  1225. tx[4] = 0x01;
  1226. tx[5] = 0x00;
  1227. tx[6] = Set_Buf->max_current;
  1228. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  1229. chksum ^= tx[6+idx];
  1230. tx[7] = chksum;
  1231. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  1232. if(len > 6)
  1233. {
  1234. if(len < 6+(rx[4] | rx[5]<<8))
  1235. return result;
  1236. chksum = 0x00;
  1237. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  1238. {
  1239. chksum ^= rx[6+idx];
  1240. }
  1241. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  1242. (rx[2] == tx[1]) &&
  1243. (rx[1] == tx[2]) &&
  1244. (rx[3] == tx[3]) &&
  1245. (rx[6] == 0x01))
  1246. {
  1247. result = PASS;
  1248. }
  1249. }
  1250. return result;
  1251. }
  1252. unsigned char Config_AC_Set_Breathe_Led_Timing(unsigned char fd, unsigned char targetAddr,Set_Breathe_Led_Timing*Set_Buf)
  1253. {
  1254. unsigned char result = FAIL;
  1255. unsigned char tx[19];
  1256. unsigned char rx[512];
  1257. unsigned char chksum = 0x00;
  1258. tx[0] = 0xaa;
  1259. tx[1] = 0x00;
  1260. tx[2] = targetAddr;
  1261. tx[3] = CMD_CONFIG_MCU_SET_BREATHE_LED_TIMING;
  1262. tx[4] = 0x0C;
  1263. tx[5] = 0x00;
  1264. // Increase LED_ACTION_CONNECTED
  1265. tx[6] = (Set_Buf->set_Led_Action_Connected_Fade_In & 0xff);
  1266. tx[7] = (Set_Buf->set_Led_Action_Connected_Fade_In >> 8);
  1267. // Decrease LED_ACTION_CONNECTED
  1268. tx[8] = (Set_Buf->set_Led_Action_Connected_Fade_Out & 0xff);
  1269. tx[9] = (Set_Buf->set_Led_Action_Connected_Fade_Out >> 8);
  1270. // Increase LED_ACTION_AUTHED
  1271. tx[10] = (Set_Buf->set_Led_Action_Authed_Fade_In & 0xff);
  1272. tx[11] = (Set_Buf->set_Led_Action_Authed_Fade_In >> 8);
  1273. // Decrease LED_ACTION_AUTHED
  1274. tx[12] = (Set_Buf->set_Led_Action_Authed_Fade_Out & 0xff);
  1275. tx[13] = (Set_Buf->set_Led_Action_Authed_Fade_Out >> 8);
  1276. // Increase_LED_ACTION_CHARGING
  1277. tx[14] = (Set_Buf->Set_Led_Action_Chaging_Fade_In & 0xff);
  1278. tx[15] = (Set_Buf->Set_Led_Action_Chaging_Fade_In >> 8);
  1279. // Decrease_LED_ACTION_CHARGING
  1280. tx[16] = (Set_Buf->set_Led_Action_Chaging_Fade_Out & 0xff);
  1281. tx[17] = (Set_Buf->set_Led_Action_Chaging_Fade_Out >> 8);
  1282. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  1283. chksum ^= tx[6+idx];
  1284. tx[18] = chksum;
  1285. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  1286. if(len > 6)
  1287. {
  1288. if(len < 6+(rx[4] | rx[5]<<8))
  1289. return result;
  1290. chksum = 0x00;
  1291. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  1292. {
  1293. chksum ^= rx[6+idx];
  1294. }
  1295. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  1296. (rx[2] == tx[1]) &&
  1297. (rx[1] == tx[2]) &&
  1298. (rx[3] == tx[3]) &&
  1299. (rx[6] == 0x01))
  1300. {
  1301. result = PASS;
  1302. }
  1303. }
  1304. return result;
  1305. }
  1306. unsigned char Config_AC_Set_Led_Brightness(unsigned char fd, unsigned char targetAddr,Set_Led_Brightness*Set_Buf)
  1307. {
  1308. unsigned char result = FAIL;
  1309. unsigned char tx[19];
  1310. unsigned char rx[512];
  1311. unsigned char chksum = 0x00;
  1312. tx[0] = 0xaa;
  1313. tx[1] = 0x00;
  1314. tx[2] = targetAddr;
  1315. tx[3] = CMD_CONFIG_MCU_SET_LED_BRIGHTNESS;
  1316. tx[4] = 0x0C;
  1317. tx[5] = 0x00;
  1318. tx[6] = Set_Buf-> sector_1; // 0~1 AM and 1~2 AM
  1319. tx[7] = Set_Buf-> sector_2; // 2~3 AM and 3~4 AM
  1320. tx[8] = Set_Buf-> sector_3; // 4~5 AM and 5~6 AM
  1321. tx[9] = Set_Buf-> sector_4; // 6~7 AM and 7~8 AM
  1322. tx[10] = Set_Buf-> sector_5; // 8~9 AM and 9~10 AM
  1323. tx[11] = Set_Buf-> sector_6; // 10~11 AM and 11~12 AM
  1324. tx[12] = Set_Buf-> sector_7; // 12~13 PM and 13~14 PM
  1325. tx[13] = Set_Buf-> sector_8; // 14~15 PM and 15~16 PM
  1326. tx[14] = Set_Buf-> sector_9; // 16~17 PM and 17~18 PM
  1327. tx[15] = Set_Buf-> sector_10; // 18~19 PM and 19~20 PM
  1328. tx[16] = Set_Buf-> sector_11; // 20~21 PM and 21~22 PM
  1329. tx[17] = Set_Buf-> sector_12; // 22~23 PM and 23~24 PM
  1330. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  1331. chksum ^= tx[6+idx];
  1332. tx[18] = chksum;
  1333. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  1334. if(len > 6)
  1335. {
  1336. if(len < 6+(rx[4] | rx[5]<<8))
  1337. return result;
  1338. chksum = 0x00;
  1339. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  1340. {
  1341. chksum ^= rx[6+idx];
  1342. }
  1343. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  1344. (rx[2] == tx[1]) &&
  1345. (rx[1] == tx[2]) &&
  1346. (rx[3] == tx[3]) &&
  1347. (rx[6] == 0x01))
  1348. {
  1349. result = PASS;
  1350. }
  1351. }
  1352. return result;
  1353. }
  1354. unsigned char Update_Start(unsigned char fd, unsigned char targetAddr, unsigned int crc32)
  1355. {
  1356. unsigned char result = FAIL;
  1357. unsigned char tx[11] = {0xaa, 0x00, targetAddr, CMD_UPDATE_START, 0x04, 0x00, (crc32>>0)&0xff, (crc32>>8)&0xff, (crc32>>16)&0xff, (crc32>>24)&0xff, 0x00};
  1358. unsigned char rx[512];
  1359. unsigned char chksum = 0x00;
  1360. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  1361. chksum ^= tx[6+idx];
  1362. tx[10] = chksum;
  1363. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  1364. if(len > 6)
  1365. {
  1366. if (len < 6+(rx[4] | rx[5]<<8))
  1367. return result;
  1368. chksum = 0x00;
  1369. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  1370. {
  1371. chksum ^= rx[6+idx];
  1372. }
  1373. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  1374. (rx[2] == tx[1]) &&
  1375. (rx[1] == tx[2]) &&
  1376. (rx[3] == tx[3]) &&
  1377. (rx[6] == 0x00))
  1378. {
  1379. result = PASS;
  1380. }
  1381. }
  1382. return result;
  1383. }
  1384. unsigned char Update_Abord(unsigned char fd, unsigned char targetAddr)
  1385. {
  1386. unsigned char result = FAIL;
  1387. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_UPDATE_ABOARD, 0x04, 0x00, 0x00};
  1388. unsigned char rx[512];
  1389. unsigned char chksum = 0x00;
  1390. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  1391. if(len > 6)
  1392. {
  1393. if (len < 6+(rx[4] | rx[5]<<8))
  1394. return result;
  1395. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  1396. {
  1397. chksum ^= rx[6+idx];
  1398. }
  1399. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  1400. (rx[2] == tx[1]) &&
  1401. (rx[1] == tx[2]) &&
  1402. (rx[3] == tx[3]) &&
  1403. (rx[6] == 0x00))
  1404. {
  1405. result = PASS;
  1406. }
  1407. }
  1408. return result;
  1409. }
  1410. unsigned char Update_Transfer(unsigned char fd, unsigned char targetAddr, unsigned int startAddr, unsigned char *data, unsigned short int length)
  1411. {
  1412. unsigned char result = FAIL;
  1413. unsigned char tx[11 + length];
  1414. unsigned char rx[512];
  1415. unsigned char chksum = 0x00;
  1416. tx[0] = 0xaa;
  1417. tx[1] = 0x00;
  1418. tx[2] = targetAddr;
  1419. tx[3] = CMD_UPDATE_TRANSFER;
  1420. tx[4] = (4 + length) & 0xff;
  1421. tx[5] = ((4 + length)>>8) & 0xff;
  1422. tx[6] = (startAddr>>0) & 0xff;
  1423. tx[7] = (startAddr>>8) & 0xff;
  1424. tx[8] = (startAddr>>16) & 0xff;
  1425. tx[9] = (startAddr>>24) & 0xff;
  1426. memcpy(tx+10, data, length);
  1427. for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
  1428. chksum ^= tx[6+idx];
  1429. tx[sizeof(tx)-1] = chksum;
  1430. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  1431. if(len > 6)
  1432. {
  1433. if (len < 6+(rx[4] | rx[5]<<8))
  1434. return result;
  1435. for(int idx = 0;idx<(rx[4] | rx[5]<<8);idx++)
  1436. {
  1437. chksum ^= rx[6+idx];
  1438. }
  1439. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  1440. (rx[2] == tx[1]) &&
  1441. (rx[1] == tx[2]) &&
  1442. (rx[3] == tx[3]) &&
  1443. (rx[6] == 0x00))
  1444. {
  1445. result = PASS;
  1446. }
  1447. }
  1448. return result;
  1449. }
  1450. unsigned char Update_Finish(unsigned char fd, unsigned char targetAddr)
  1451. {
  1452. unsigned char result = FAIL;
  1453. unsigned char tx[7] = {0xaa, 0x00, targetAddr, CMD_UPDATE_END, 0x04, 0x00, 0x00};
  1454. unsigned char rx[512];
  1455. unsigned char chksum = 0x00;
  1456. unsigned char len = tranceive(fd, tx, sizeof(tx), rx);
  1457. if(len > 6)
  1458. {
  1459. if (len < 6+(rx[4] | rx[5]<<8))
  1460. return result;
  1461. for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
  1462. {
  1463. chksum ^= rx[6+idx];
  1464. }
  1465. if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
  1466. (rx[2] == tx[1]) &&
  1467. (rx[1] == tx[2]) &&
  1468. (rx[3] == tx[3]) &&
  1469. (rx[6] == 0x01))
  1470. {
  1471. result = PASS;
  1472. }
  1473. }
  1474. return result;
  1475. }
  1476. //================================================
  1477. // Main process
  1478. //================================================
  1479. int main(void)
  1480. {
  1481. int Uart1Fd;
  1482. unsigned short int failCount[2] = {0,0};
  1483. unsigned short int printOutCount[2] = {0,0};
  1484. if(InitShareMemory() == FAIL)
  1485. {
  1486. #ifdef SystemLogMessage
  1487. DEBUG_ERROR("InitShareMemory NG\n");
  1488. #endif
  1489. if(ShmStatusCodeData!=NULL)
  1490. {
  1491. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.FailToCreateShareMemory=1;
  1492. }
  1493. sleep(5);
  1494. return 0;
  1495. }
  1496. else
  1497. {
  1498. DEBUG_INFO("InitShareMemory OK.\r\n");
  1499. }
  1500. Uart1Fd=InitComPort();
  1501. if(Uart1Fd<0)
  1502. {
  1503. DEBUG_ERROR("InitComPort NG\n");
  1504. if(ShmStatusCodeData!=NULL)
  1505. {
  1506. ShmStatusCodeData->AlarmCode.AlarmEvents.bits.CsuInitFailed=1;
  1507. }
  1508. sleep(5);
  1509. return 0;
  1510. }
  1511. else
  1512. {
  1513. DEBUG_INFO("ttyS1 port open success.\r\n");
  1514. }
  1515. for(;;)
  1516. {
  1517. for(int gun_index=0;gun_index<AC_QUANTITY;gun_index++)
  1518. {
  1519. /*
  1520. * Polling loop
  1521. */
  1522. if((stepIndex%2)==0)
  1523. {
  1524. /*
  1525. * High priority communication
  1526. */
  1527. //===============================
  1528. // Case 1 : Config primary MCU LED
  1529. //===============================
  1530. ShmCharger->gun_info[gun_index].primaryMcuLed.alarm_code = ShmCharger->gun_info[gun_index].systemAlarmCode.SystemAlarmCode;
  1531. if(Config_AC_MCU_LED(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].primaryMcuLed))
  1532. {
  1533. failCount[gun_index] = 0;
  1534. }
  1535. else
  1536. {
  1537. DEBUG_WARN("MCU-%d set led fail...%d\r\n", gun_index, failCount[gun_index]);
  1538. if(failCount[gun_index]<1000)
  1539. {
  1540. failCount[gun_index]++;
  1541. }
  1542. }
  1543. //===============================
  1544. // Case 2 : Config primary Legacy request
  1545. //===============================
  1546. if(Config_AC_MCU_LEGACY_REQUEST(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1),&ShmCharger->gun_info[gun_index].legacyRequest))
  1547. {
  1548. failCount[gun_index] = 0;
  1549. }
  1550. else
  1551. {
  1552. DEBUG_WARN("MCU-%d set request fail...%d\r\n", gun_index, failCount[gun_index]);
  1553. if(failCount[gun_index]<1000)
  1554. {
  1555. failCount[gun_index]++;
  1556. }
  1557. }
  1558. //===============================
  1559. // Case 2-X : Config primary Relay
  1560. //===============================
  1561. if(Config_AC_MCU_RELAY(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1),&ShmCharger->gun_info[gun_index].legacyRequest))
  1562. {
  1563. failCount[gun_index] = 0;
  1564. }
  1565. else
  1566. {
  1567. DEBUG_WARN("MCU-%d set relay fail...%d\r\n", gun_index, failCount[gun_index]);
  1568. if(failCount[gun_index]<1000)
  1569. {
  1570. failCount[gun_index]++;
  1571. }
  1572. }
  1573. //===============================
  1574. // Case 3 : Query primary MCU status
  1575. //===============================
  1576. if(Query_AC_MCU_Status(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].primaryMcuState))
  1577. {
  1578. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotState = ShmCharger->gun_info[gun_index].primaryMcuState.cp_state;
  1579. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotDuty = (ShmCharger->gun_info[gun_index].primaryMcuState.current_limit>51?(unsigned char)((ShmCharger->gun_info[gun_index].primaryMcuState.current_limit/2.5)+64):(unsigned char)(ShmCharger->gun_info[gun_index].primaryMcuState.current_limit/0.6));
  1580. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PilotVoltage = ShmCharger->gun_info[gun_index].primaryMcuState.cp_voltage_positive;
  1581. ShmCharger->gun_info[gun_index].PilotVoltage.PilotVoltagePositive = ShmCharger->gun_info[gun_index].primaryMcuState.cp_voltage_positive;
  1582. ShmCharger->gun_info[gun_index].PilotVoltage.PilotVoltageNegative = ShmCharger->gun_info[gun_index].primaryMcuState.cp_voltage_negtive;
  1583. failCount[gun_index] = 0;
  1584. }
  1585. else
  1586. {
  1587. DEBUG_WARN("MCU-%d get status fail...%d\r\n", gun_index, failCount[gun_index]);
  1588. if(failCount[gun_index]<1000)
  1589. {
  1590. failCount[gun_index]++;
  1591. }
  1592. }
  1593. //===============================
  1594. // Case 4 : Query primary MCU Alarm code
  1595. //===============================
  1596. if(Query_AC_MCU_Alarm(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].primaryMcuAlarm))
  1597. {
  1598. //DEBUG_INFO("MCU-%d get alarm code success.\r\n",gun_index);
  1599. //================================================
  1600. // Byte[6]
  1601. // Byte[7]
  1602. // Byte[8] Alarm code 3~7 bits Reserved
  1603. // Byte[9] Alarm code 0~7 bits Reserved
  1604. //================================================
  1605. //================================================
  1606. // Byte[6]
  1607. //================================================
  1608. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.OVP == 0x01)
  1609. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<0;
  1610. else
  1611. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<0);
  1612. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.UVP == 0x01)
  1613. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<1;
  1614. else
  1615. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<1);
  1616. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.OCP == 0x01)
  1617. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<2;
  1618. else
  1619. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<2);
  1620. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.OTP == 0x01)
  1621. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<3;
  1622. else
  1623. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<3);
  1624. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.gmi_fault == 0x01)
  1625. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<4;
  1626. else
  1627. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<4);
  1628. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.cp_fault == 0x01)
  1629. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<5;
  1630. else
  1631. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<5);
  1632. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.ac_leak == 0x01)
  1633. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<6;
  1634. else
  1635. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<6);
  1636. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.dc_leak == 0x01)
  1637. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<7;
  1638. else
  1639. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<7);
  1640. //================================================
  1641. // Byte[7]
  1642. //================================================
  1643. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.mcu_selftest_fail == 0x01)
  1644. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<8;
  1645. else
  1646. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<8);
  1647. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.handshaking_timeout == 0x01)
  1648. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<9;
  1649. else
  1650. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<9);
  1651. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.emergency_stop == 0x01)
  1652. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<10;
  1653. else
  1654. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<10);
  1655. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.relay_welding == 0x01)
  1656. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<11;
  1657. else
  1658. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<11);
  1659. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.leak_module_fail == 0x01)
  1660. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<12;
  1661. else
  1662. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<12);
  1663. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.shutter_fault == 0x01)
  1664. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<13;
  1665. else
  1666. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<13);
  1667. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.locker_fault == 0x01)
  1668. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<14;
  1669. else
  1670. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<14);
  1671. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.power_drop == 0x01)
  1672. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<15;
  1673. else
  1674. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<15);
  1675. //================================================
  1676. // Byte[8]
  1677. //================================================
  1678. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.circuit_short == 0x01)
  1679. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<16;
  1680. else
  1681. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<16);
  1682. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.set_circuit == 0x01)
  1683. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<17;
  1684. else
  1685. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<17);
  1686. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.relay_drive_fault == 0x01)
  1687. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode |= 1<<18;
  1688. else
  1689. ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode &= ~(1<<18);
  1690. //================================================
  1691. // Byte[9] Reserved
  1692. //================================================
  1693. failCount[gun_index] = 0;
  1694. }
  1695. else
  1696. {
  1697. DEBUG_WARN("MCU-%d get alarm fail...%d\r\n", gun_index, failCount[gun_index]);
  1698. if(failCount[gun_index]<1000)
  1699. {
  1700. failCount[gun_index]++;
  1701. }
  1702. }
  1703. //===============================
  1704. // Case 5 : Query primary MCU BLE config
  1705. //===============================
  1706. if(Query_Ble_Config(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].bleConfigData))
  1707. {
  1708. ShmSysConfigAndInfo->SysConfig.Bluetooth.isLogin = ShmCharger->gun_info[gun_index].bleConfigData.isLogin;
  1709. ShmSysConfigAndInfo->SysConfig.Bluetooth.isRequestStart = ShmCharger->gun_info[gun_index].bleConfigData.isRequestStart;
  1710. ShmSysConfigAndInfo->SysConfig.Bluetooth.isRequestStop = ShmCharger->gun_info[gun_index].bleConfigData.isRequestStop;
  1711. failCount[gun_index] = 0;
  1712. }
  1713. else
  1714. {
  1715. DEBUG_WARN("MCU-%d get ble config fail...%d\r\n", gun_index, failCount[gun_index]);
  1716. if(failCount[gun_index]<1000)
  1717. {
  1718. failCount[gun_index]++;
  1719. }
  1720. }
  1721. //===============================
  1722. // Case 6 : Query primary MCU ble login id
  1723. //===============================
  1724. if(Query_Ble_Central_ID(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].bleLoginCentralId))
  1725. {
  1726. memcpy(ShmSysConfigAndInfo->SysConfig.Bluetooth.LoginCentralID, ShmCharger->gun_info[gun_index].bleLoginCentralId.id, sizeof ShmSysConfigAndInfo->SysConfig.Bluetooth.LoginCentralID);
  1727. failCount[gun_index] = 0;
  1728. }
  1729. else
  1730. {
  1731. DEBUG_WARN("MCU-%d get ble login central id fail...%d\r\n", gun_index, failCount[gun_index]);
  1732. if(failCount[gun_index]<1000)
  1733. {
  1734. failCount[gun_index]++;
  1735. }
  1736. }
  1737. //===============================
  1738. // Case 7 : Config primary MCU reset request
  1739. //===============================
  1740. if((access("/sys/class/gpio/gpio116/value", F_OK)) != -1)
  1741. {
  1742. if(ShmCharger->gun_info[gun_index].mcuResetRequest.isMcuResetRequest == ON)
  1743. {
  1744. if(Config_AC_MCU_RESET_REQUEST(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].mcuResetRequest) == PASS)
  1745. {
  1746. DEBUG_INFO("**************************************************\r\n");
  1747. DEBUG_INFO("********* High priority polling : Case 7 *********\r\n");
  1748. DEBUG_INFO("**************************************************\r\n");
  1749. DEBUG_INFO("MCU-%d set MCU reset Request : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].mcuResetRequest.isMcuResetRequest);
  1750. ShmCharger->gun_info[gun_index].mcuResetRequest.isMcuResetRequest = OFF;
  1751. failCount[gun_index] = 0;
  1752. }
  1753. else
  1754. {
  1755. DEBUG_WARN("MCU-%d get MCU reset fail...%d\r\n", gun_index, failCount[gun_index]);
  1756. if(failCount[gun_index]<1000)
  1757. {
  1758. failCount[gun_index]++;
  1759. }
  1760. }
  1761. }
  1762. }
  1763. //==========================================================
  1764. // High priority polling log print out
  1765. //==========================================================
  1766. if(ShmCharger->gun_info[gun_index].legacyRequest.isLegacyRequest == ON)
  1767. {
  1768. PRINT_OUT_LEVEL_STATE = LEVEL_1;
  1769. if(printOutCount[gun_index]>LEVEL_1)
  1770. printOutCount[gun_index] = 0;
  1771. }
  1772. else
  1773. {
  1774. PRINT_OUT_LEVEL_STATE = LEVEL_2;
  1775. if(printOutCount[gun_index]>LEVEL_2)
  1776. printOutCount[gun_index] = 0;
  1777. }
  1778. if(printOutCount[gun_index] == PRINT_OUT_LEVEL_STATE)
  1779. {
  1780. //===============================
  1781. // Config primary MCU LED
  1782. //===============================
  1783. DEBUG_INFO("**************************************************\r\n");
  1784. DEBUG_INFO("********* High priority polling : Case 1 *********\r\n");
  1785. DEBUG_INFO("**************************************************\r\n");
  1786. DEBUG_INFO("MCU-%d set Led mode : %d\r\n",gun_index, ShmCharger->gun_info[gun_index].primaryMcuLed.mode);
  1787. DEBUG_INFO("MCU-%d set Alarm code : %x\r\n",gun_index, ShmCharger->gun_info[gun_index].primaryMcuLed.alarm_code);
  1788. //===============================
  1789. // Config primary Legacy request
  1790. //===============================
  1791. DEBUG_INFO("**************************************************\r\n");
  1792. DEBUG_INFO("********* High priority polling : Case 2 *********\r\n");
  1793. DEBUG_INFO("**************************************************\r\n");
  1794. DEBUG_INFO("MCU-%d set relay request : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].legacyRequest.isLegacyRequest);
  1795. //===============================
  1796. // Query primary MCU status
  1797. //===============================
  1798. DEBUG_INFO("**************************************************\r\n");
  1799. DEBUG_INFO("********* High priority polling : Case 3 *********\r\n");
  1800. DEBUG_INFO("**************************************************\r\n");
  1801. DEBUG_INFO("MCU-%d get Pilot State : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuState.cp_state);
  1802. DEBUG_INFO("MCU-%d get Pilot Duty : %.2f\r\n", gun_index, (float)ShmCharger->gun_info[gun_index].primaryMcuState.current_limit);
  1803. DEBUG_INFO("MCU-%d get Pilot Voltage Positive : %.2f\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuState.cp_voltage_positive);
  1804. DEBUG_INFO("MCU-%d get Pilot Voltage Negative : %.2f\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuState.cp_voltage_negtive);
  1805. DEBUG_INFO("MCU-%d get Relay State : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuState.relay_state);
  1806. DEBUG_INFO("MCU-%d get Rating Current : %.2f\r\n", gun_index, (float)ShmCharger->gun_info[gun_index].primaryMcuState.rating_current);
  1807. DEBUG_INFO("MCU-%d get Rotary switch : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuState.rotatory_switch);
  1808. /*
  1809. DEBUG_INFO("MCU-%d get Locker State : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuState.locker_state);
  1810. DEBUG_INFO("MCU-%d get Shutter State : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuState.shutter_state);
  1811. DEBUG_INFO("MCU-%d get Meter State : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuState.meter_state);
  1812. DEBUG_INFO("MCU-%d get PP State : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuState.pp_state);
  1813. */
  1814. //===============================
  1815. // Query primary MCU Alarm code
  1816. //===============================
  1817. if((ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode>0))
  1818. {
  1819. DEBUG_INFO("**************************************************\r\n");
  1820. DEBUG_INFO("********* High priority polling : Case 4 *********\r\n");
  1821. DEBUG_INFO("**************************************************\r\n");
  1822. DEBUG_INFO("MCU-%d get OVP : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.OVP);
  1823. DEBUG_INFO("MCU-%d get UVP : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.UVP);
  1824. DEBUG_INFO("MCU-%d get OCP : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.OCP);
  1825. DEBUG_INFO("MCU-%d get OTP : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.OTP);
  1826. DEBUG_INFO("MCU-%d get gmi_fault : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.gmi_fault);
  1827. DEBUG_INFO("MCU-%d get cp_fault : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.cp_fault);
  1828. DEBUG_INFO("MCU-%d get ac_leak : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.ac_leak);
  1829. DEBUG_INFO("MCU-%d get dc_leak : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.dc_leak);
  1830. DEBUG_INFO("MCU-%d get mcu_selftest_fail : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.mcu_selftest_fail);
  1831. DEBUG_INFO("MCU-%d get handshaking_timeout : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.handshaking_timeout);
  1832. DEBUG_INFO("MCU-%d get emergency_stop : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.emergency_stop);
  1833. DEBUG_INFO("MCU-%d get relay_welding : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.relay_welding);
  1834. DEBUG_INFO("MCU-%d get leak_module_fail : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.leak_module_fail);
  1835. DEBUG_INFO("MCU-%d get shutter_fault : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.shutter_fault);
  1836. DEBUG_INFO("MCU-%d get locker_fault : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.locker_fault);
  1837. DEBUG_INFO("MCU-%d get power_drop : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.power_drop);
  1838. DEBUG_INFO("MCU-%d get circuit_short : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.circuit_short);
  1839. DEBUG_INFO("MCU-%d get set_circuit : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.set_circuit);
  1840. DEBUG_INFO("MCU-%d get relay_drive_fault : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.relay_drive_fault);
  1841. DEBUG_INFO("MCU-%d get InputAlarmCode : %x\r\n", gun_index, ShmCharger->gun_info[gun_index].primaryMcuAlarm.InputAlarmCode);
  1842. }
  1843. //===============================
  1844. // Query primary MCU BLE config
  1845. //===============================
  1846. if(ShmCharger->gun_info[gun_index].bleConfigData.isLogin == ON)
  1847. {
  1848. DEBUG_INFO("**************************************************\r\n");
  1849. DEBUG_INFO("********* High priority polling : Case 5 *********\r\n");
  1850. DEBUG_INFO("**************************************************\r\n");
  1851. DEBUG_INFO("MCU-%d get isUserLogin : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].bleConfigData.isLogin);
  1852. DEBUG_INFO("MCU-%d get isRequestStartCharger : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].bleConfigData.isRequestStart);
  1853. DEBUG_INFO("MCU-%d get isRequestStopCharger : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].bleConfigData.isRequestStop);
  1854. }
  1855. //===============================
  1856. // Query primary MCU ble login id
  1857. //===============================
  1858. if(strcmp((char *)&ShmCharger->gun_info[gun_index].bleLoginCentralId.id,"") != 0)
  1859. {
  1860. DEBUG_INFO("**************************************************\r\n");
  1861. DEBUG_INFO("********* High priority polling : Case 6 *********\r\n");
  1862. DEBUG_INFO("**************************************************\r\n");
  1863. DEBUG_INFO("MCU-%d get ble central id : %s\r\n", gun_index, ShmCharger->gun_info[gun_index].bleLoginCentralId.id);
  1864. }
  1865. usleep(100000);
  1866. }
  1867. printOutCount[gun_index]++;
  1868. }
  1869. else
  1870. {
  1871. /*
  1872. * Normal priority communication
  1873. */
  1874. switch(stepIndex)
  1875. {
  1876. case 1:
  1877. //===============================
  1878. // Query present input voltage
  1879. //===============================
  1880. if(Query_Present_InputVoltage(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].inputVoltage) == PASS)
  1881. {
  1882. ShmSysConfigAndInfo->SysInfo.InputVoltageR = ShmCharger->gun_info[gun_index].inputVoltage.L1N_L12;
  1883. ShmSysConfigAndInfo->SysInfo.InputVoltageS = ShmCharger->gun_info[gun_index].inputVoltage.L2N_L23;
  1884. ShmSysConfigAndInfo->SysInfo.InputVoltageT = ShmCharger->gun_info[gun_index].inputVoltage.L3N_L31;
  1885. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargingVoltage = ShmCharger->gun_info[gun_index].inputVoltage.L1N_L12;
  1886. failCount[gun_index] = 0;
  1887. }
  1888. else
  1889. {
  1890. DEBUG_WARN("MCU-%d get input voltage fail...%d\r\n", gun_index, failCount[gun_index]);
  1891. if(failCount[gun_index]<1000)
  1892. {
  1893. failCount[gun_index]++;
  1894. }
  1895. }
  1896. break;
  1897. case 3:
  1898. //===============================
  1899. // Query present output current
  1900. //===============================
  1901. if(Query_Present_OutputCurrent(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].outputCurrent) == PASS)
  1902. {
  1903. ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargingCurrent = (float)ShmCharger->gun_info[gun_index].outputCurrent.L1N_L12[0];
  1904. failCount[gun_index] = 0;
  1905. }
  1906. else
  1907. {
  1908. DEBUG_WARN("MCU-%d get output current fail...%d\r\n", gun_index, failCount[gun_index]);
  1909. if(failCount[gun_index]<1000)
  1910. {
  1911. failCount[gun_index]++;
  1912. }
  1913. }
  1914. break;
  1915. case 5:
  1916. //===============================
  1917. // Query gun plug-in times
  1918. //===============================
  1919. if(Query_AC_GUN_PLUGIN_TIMES(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].gunPluginTimes) == PASS)
  1920. {
  1921. ShmSysConfigAndInfo->SysConfig.AcPlugInTimes = ((long)ShmCharger->gun_info[gun_index].gunPluginTimes.GunPluginTimes & 0xFFFF);
  1922. failCount[gun_index] = 0;
  1923. }
  1924. else
  1925. {
  1926. DEBUG_WARN("MCU-%d get gun plugin times fail...%d\r\n", gun_index, failCount[gun_index]);
  1927. if(failCount[gun_index]<1000)
  1928. {
  1929. failCount[gun_index]++;
  1930. }
  1931. }
  1932. break;
  1933. case 7:
  1934. //===============================
  1935. // Query temperature
  1936. //===============================
  1937. if(Query_Temperature(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].temperature) == PASS)
  1938. {
  1939. ShmSysConfigAndInfo->SysInfo.SystemAmbientTemp = ShmCharger->gun_info[gun_index].temperature.point[0];
  1940. failCount[gun_index] = 0;
  1941. }
  1942. else
  1943. {
  1944. DEBUG_WARN("MCU-%d get temperature fail...%d\r\n", gun_index, failCount[gun_index]);
  1945. if(failCount[gun_index]<1000)
  1946. {
  1947. failCount[gun_index]++;
  1948. }
  1949. }
  1950. break;
  1951. case 9:
  1952. //===============================
  1953. // Config primary set CP PWN duty
  1954. //===============================
  1955. if(ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty == ON)
  1956. {
  1957. if(Config_AC_MaxCurrent_And_CpPwmDuty(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty))
  1958. {
  1959. failCount[gun_index] = 0;
  1960. ShmCharger->gun_info[gun_index].mcuFlag.isSetCpPwmDuty = OFF;
  1961. }
  1962. else
  1963. {
  1964. DEBUG_WARN("MCU-%d set cp pwn duty fail...%d\r\n", gun_index, failCount[gun_index]);
  1965. if(failCount[gun_index]<1000)
  1966. {
  1967. failCount[gun_index]++;
  1968. }
  1969. }
  1970. }
  1971. break;
  1972. case 11:
  1973. //===============================
  1974. // Query RTC
  1975. //===============================
  1976. if(Query_RTC(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].rtc))
  1977. {
  1978. struct timeb csuTime, mcuTime;
  1979. struct tm *tmCSU;
  1980. struct tm tmMcu;
  1981. ftime(&csuTime);
  1982. tmCSU = localtime(&csuTime.time);
  1983. tmMcu.tm_year = ShmCharger->gun_info[gun_index].rtc.year-1900;
  1984. tmMcu.tm_mon = ShmCharger->gun_info[gun_index].rtc.month-1;
  1985. tmMcu.tm_mday = ShmCharger->gun_info[gun_index].rtc.day;
  1986. tmMcu.tm_hour = ShmCharger->gun_info[gun_index].rtc.hour;
  1987. tmMcu.tm_min = ShmCharger->gun_info[gun_index].rtc.min;
  1988. tmMcu.tm_sec = ShmCharger->gun_info[gun_index].rtc.sec;
  1989. mcuTime.time = mktime(&tmMcu);
  1990. if(ShmCharger->gun_info[gun_index].bleConfigData.isLogin && !ShmOCPP16Data->OcppConnStatus)
  1991. {
  1992. if(abs(DiffTimeb(csuTime, mcuTime)) > 10000)
  1993. {
  1994. char cmdBuf[128];
  1995. sprintf(cmdBuf, "date -u -s \"%04d-%02d-%02d %02d:%02d:%02d\"", ShmCharger->gun_info[gun_index].rtc.year,
  1996. ShmCharger->gun_info[gun_index].rtc.month,
  1997. ShmCharger->gun_info[gun_index].rtc.day,
  1998. ShmCharger->gun_info[gun_index].rtc.hour,
  1999. ShmCharger->gun_info[gun_index].rtc.min,
  2000. ShmCharger->gun_info[gun_index].rtc.sec);
  2001. system(cmdBuf);
  2002. system("hwclock -w -u");
  2003. system("hwclock -s");
  2004. }
  2005. }
  2006. else
  2007. {
  2008. if(abs(DiffTimeb(csuTime, mcuTime)) > 10000)
  2009. {
  2010. ShmCharger->gun_info[gun_index].rtc.year = tmCSU->tm_year+1900;
  2011. ShmCharger->gun_info[gun_index].rtc.month = tmCSU->tm_mon+1;
  2012. ShmCharger->gun_info[gun_index].rtc.day = tmCSU->tm_mday;
  2013. ShmCharger->gun_info[gun_index].rtc.hour = tmCSU->tm_hour;
  2014. ShmCharger->gun_info[gun_index].rtc.min = tmCSU->tm_min;
  2015. ShmCharger->gun_info[gun_index].rtc.sec = tmCSU->tm_sec;
  2016. Config_RTC(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].rtc);
  2017. }
  2018. }
  2019. failCount[gun_index] = 0;
  2020. }
  2021. else
  2022. {
  2023. DEBUG_WARN("MCU-%d get rtc fail...%d\r\n", gun_index, failCount[gun_index]);
  2024. if(failCount[gun_index]<1000)
  2025. {
  2026. failCount[gun_index]++;
  2027. }
  2028. }
  2029. break;
  2030. case 13:
  2031. //===============================
  2032. // Query primary MCU power consumption
  2033. //===============================
  2034. if(Query_Power_Consumption(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].powerConsumption))
  2035. {
  2036. failCount[gun_index] = 0;
  2037. }
  2038. else
  2039. {
  2040. DEBUG_WARN("MCU-%d get power consumption fail...%d\r\n", gun_index, failCount[gun_index]);
  2041. if(failCount[gun_index]<1000)
  2042. {
  2043. failCount[gun_index]++;
  2044. }
  2045. }
  2046. break;
  2047. case 15:
  2048. //===============================
  2049. // Upgrade MCU
  2050. //===============================
  2051. if(ShmCharger->gun_info[gun_index].mcuFlag.isMcuUpgradeReq)
  2052. {
  2053. DEBUG_INFO("==================================================\r\n");
  2054. DEBUG_INFO("======== Normal priority polling : Case 15 =======\r\n");
  2055. DEBUG_INFO("==================================================\r\n");
  2056. unsigned char cmd[512];
  2057. if(Upgrade_UART(Uart1Fd, AC_WALLMOUNT_CONTROLLER, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), ShmCharger->fwUpgradeInfo.location, ShmCharger->fwUpgradeInfo.modelName))
  2058. {
  2059. DEBUG_INFO("MCU-%d upgrade firmware OK...%s\r\n", gun_index, ShmCharger->gun_info[gun_index].ver.Version_FW);
  2060. sleep(20);
  2061. ShmCharger->gun_info[gun_index].mcuFlag.isMcuUpgradeReq = OFF;
  2062. failCount[gun_index] = 0;
  2063. }
  2064. else
  2065. {
  2066. DEBUG_WARN("MCU-%d upgrade firmware fail...%d\r\n", gun_index, failCount[gun_index]);
  2067. if(failCount[gun_index]<1000)
  2068. {
  2069. failCount[gun_index]++;
  2070. }
  2071. }
  2072. sprintf((char*)cmd, "yes|rm %s", ShmCharger->fwUpgradeInfo.location);
  2073. system((char*)cmd);
  2074. }
  2075. break;
  2076. case 17:
  2077. //===============================
  2078. // Config set breathe led timing
  2079. //===============================
  2080. if(ShmCharger->gun_info[gun_index].isSetBreatheLedTiming == ON)
  2081. {
  2082. if(Config_AC_Set_Breathe_Led_Timing(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].setBreatheLedTiming))
  2083. {
  2084. failCount[gun_index] = 0;
  2085. }
  2086. else
  2087. {
  2088. DEBUG_WARN("MCU-%d set breathe led timing fail...%d\r\n", gun_index, failCount[gun_index]);
  2089. if(failCount[gun_index]<1000)
  2090. {
  2091. failCount[gun_index]++;
  2092. }
  2093. }
  2094. }
  2095. break;
  2096. case 19:
  2097. //===============================
  2098. // Config set led brightness
  2099. //===============================
  2100. if(ShmCharger->gun_info[gun_index].isSetLedBrightness == ON)
  2101. {
  2102. if(Config_AC_Set_Led_Brightness(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].setLedBrightness))
  2103. {
  2104. failCount[gun_index] = 0;
  2105. }
  2106. else
  2107. {
  2108. DEBUG_WARN("MCU-%d set led brightness fail...%d\r\n", gun_index, failCount[gun_index]);
  2109. if(failCount[gun_index]<1000)
  2110. {
  2111. failCount[gun_index]++;
  2112. }
  2113. }
  2114. }
  2115. break;
  2116. case 21:
  2117. //===============================
  2118. // Query firmware version
  2119. //===============================
  2120. if(ShmCharger->gun_info[gun_index].mcuFlag.isReadFwVerPass != PASS)
  2121. {
  2122. DEBUG_INFO("==================================================\r\n");
  2123. DEBUG_INFO("======== Normal priority polling : Case 21-1======\r\n");
  2124. DEBUG_INFO("==================================================\r\n");
  2125. if(Query_FW_Ver(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->gun_info[gun_index].ver) == PASS)
  2126. {
  2127. DEBUG_INFO("MCU-%d get firmware version : %s\r\n", gun_index, ShmCharger->gun_info[gun_index].ver.Version_FW);
  2128. memcpy(ShmPrimaryMcuData->version, ShmCharger->gun_info[gun_index].ver.Version_FW, sizeof(ShmPrimaryMcuData->version));
  2129. ShmCharger->gun_info[gun_index].mcuFlag.isReadFwVerPass = PASS;
  2130. failCount[gun_index] = 0;
  2131. }
  2132. else
  2133. {
  2134. DEBUG_WARN("MCU-%d get firmware version fail...%d\r\n", gun_index, failCount[gun_index]);
  2135. if(failCount[gun_index]<1000)
  2136. {
  2137. failCount[gun_index]++;
  2138. }
  2139. }
  2140. }
  2141. //===============================
  2142. // Config primary MCU serial number
  2143. //===============================
  2144. if(ShmCharger->gun_info[gun_index].mcuFlag.isSetSerialNumberPass != PASS)
  2145. {
  2146. DEBUG_INFO("==================================================\r\n");
  2147. DEBUG_INFO("======== Normal priority polling : Case 21-2======\r\n");
  2148. DEBUG_INFO("==================================================\r\n");
  2149. memcpy(ShmCharger->evseId.serial_number, ShmSysConfigAndInfo->SysConfig.SerialNumber, ARRAY_SIZE(ShmCharger->evseId.serial_number));
  2150. if(Config_Serial_Number(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->evseId))
  2151. {
  2152. DEBUG_INFO("MCU-%d set serial number : %.12s\r\n",gun_index,ShmCharger->evseId.serial_number);
  2153. ShmCharger->gun_info[gun_index].mcuFlag.isSetSerialNumberPass = PASS;
  2154. failCount[gun_index] = 0;
  2155. }
  2156. else
  2157. {
  2158. DEBUG_WARN("MCU-%d set serial number fail...%d\r\n", gun_index, failCount[gun_index]);
  2159. if(failCount[gun_index]<1000)
  2160. {
  2161. failCount[gun_index]++;
  2162. }
  2163. }
  2164. }
  2165. //===============================
  2166. // Config primary MCU model name
  2167. //===============================
  2168. if(ShmCharger->gun_info[gun_index].mcuFlag.isSetModelNamePass != PASS)
  2169. {
  2170. DEBUG_INFO("==================================================\r\n");
  2171. DEBUG_INFO("======== Normal priority polling : Case 21-3======\r\n");
  2172. DEBUG_INFO("==================================================\r\n");
  2173. memcpy(ShmCharger->evseId.model_name, ShmSysConfigAndInfo->SysConfig.ModelName, ARRAY_SIZE(ShmCharger->evseId.model_name));
  2174. if(Config_Model_Name(Uart1Fd, (gun_index>0?ADDR_AC_PRIMARY_2:ADDR_AC_PRIMARY_1), &ShmCharger->evseId))
  2175. {
  2176. DEBUG_INFO("MCU-%d set model name : %.14s\r\n",gun_index,ShmCharger->evseId.model_name);
  2177. ShmCharger->gun_info[gun_index].mcuFlag.isSetModelNamePass = PASS;
  2178. failCount[gun_index] = 0;
  2179. }
  2180. else
  2181. {
  2182. DEBUG_WARN("MCU-%d set model name fail...%d\r\n", gun_index, failCount[gun_index]);
  2183. if(failCount[gun_index]<1000)
  2184. {
  2185. failCount[gun_index]++;
  2186. }
  2187. }
  2188. }
  2189. break;
  2190. default:
  2191. stepIndex = 0;
  2192. break;
  2193. }
  2194. //==========================================================
  2195. // Low priority polling log print out
  2196. //==========================================================
  2197. if(printOutCount[gun_index] == PRINT_OUT_LEVEL_STATE)
  2198. {
  2199. if(stepIndex == 1)
  2200. {
  2201. DEBUG_INFO("==================================================\r\n");
  2202. DEBUG_INFO("======== Normal priority polling : Case 1 ========\r\n");
  2203. DEBUG_INFO("==================================================\r\n");
  2204. DEBUG_INFO("MCU-%d get input voltage : %f\r\n", gun_index, (float)ShmCharger->gun_info[gun_index].inputVoltage.L1N_L12);
  2205. DEBUG_INFO("MCU-%d get PresentChargingVoltage : %.2f\r\n", gun_index, (float)ShmSysConfigAndInfo->SysInfo.AcChargingData[gun_index].PresentChargingVoltage);
  2206. }
  2207. else if(stepIndex == 3)
  2208. {
  2209. DEBUG_INFO("==================================================\r\n");
  2210. DEBUG_INFO("======== Normal priority polling : Case 3 ========\r\n");
  2211. DEBUG_INFO("==================================================\r\n");
  2212. DEBUG_INFO("MCU-%d get output current : %f\r\n", gun_index, (float)ShmCharger->gun_info[gun_index].outputCurrent.L1N_L12[0]);
  2213. }
  2214. else if(stepIndex == 5)
  2215. {
  2216. DEBUG_INFO("==================================================\r\n");
  2217. DEBUG_INFO("======== Normal priority polling : Case 5 ========\r\n");
  2218. DEBUG_INFO("==================================================\r\n");
  2219. DEBUG_INFO("MCU-%d get gun plugin times : %ld\r\n", gun_index, (long)ShmCharger->gun_info[gun_index].gunPluginTimes.GunPluginTimes);
  2220. }
  2221. else if(stepIndex == 7)
  2222. {
  2223. DEBUG_INFO("==================================================\r\n");
  2224. DEBUG_INFO("======== Normal priority polling : Case 7 ========\r\n");
  2225. DEBUG_INFO("==================================================\r\n");
  2226. DEBUG_INFO("MCU-%d get temperature : %d\r\n", gun_index, ShmCharger->gun_info[gun_index].temperature.point[0]);
  2227. }
  2228. else if(stepIndex == 9)
  2229. {
  2230. DEBUG_INFO("==================================================\r\n");
  2231. DEBUG_INFO("======== Normal priority polling : Case 9 ========\r\n");
  2232. DEBUG_INFO("==================================================\r\n");
  2233. DEBUG_INFO("MCU-%d set cp pwn duty : %d\r\n",gun_index, ShmCharger->gun_info[gun_index].primaryMcuCp_Pwn_Duty.max_current);
  2234. }
  2235. else if(stepIndex == 11)
  2236. {
  2237. DEBUG_INFO("==================================================\r\n");
  2238. DEBUG_INFO("======== Normal priority polling : Case 11 =======\r\n");
  2239. DEBUG_INFO("==================================================\r\n");
  2240. if(ShmCharger->gun_info[gun_index].bleConfigData.isLogin && !ShmOCPP16Data->OcppConnStatus)
  2241. {
  2242. DEBUG_INFO("Sync from MCU-%d rtc OK...%04d-%02d-%02d %02d:%02d:%02d\r\n", gun_index,
  2243. ShmCharger->gun_info[gun_index].rtc.year,
  2244. ShmCharger->gun_info[gun_index].rtc.month,
  2245. ShmCharger->gun_info[gun_index].rtc.day,
  2246. ShmCharger->gun_info[gun_index].rtc.hour,
  2247. ShmCharger->gun_info[gun_index].rtc.min,
  2248. ShmCharger->gun_info[gun_index].rtc.sec);
  2249. }
  2250. else
  2251. {
  2252. DEBUG_INFO("MCU-%d set rtc OK...%04d-%02d-%02d %02d:%02d:%02d\r\n", gun_index,
  2253. ShmCharger->gun_info[gun_index].rtc.year,
  2254. ShmCharger->gun_info[gun_index].rtc.month,
  2255. ShmCharger->gun_info[gun_index].rtc.day,
  2256. ShmCharger->gun_info[gun_index].rtc.hour,
  2257. ShmCharger->gun_info[gun_index].rtc.min,
  2258. ShmCharger->gun_info[gun_index].rtc.sec);
  2259. }
  2260. }
  2261. else if(stepIndex == 13)
  2262. {
  2263. DEBUG_INFO("==================================================\r\n");
  2264. DEBUG_INFO("======== Normal priority polling : Case 13 =======\r\n");
  2265. DEBUG_INFO("==================================================\r\n");
  2266. DEBUG_INFO("MCU-%d get power consumption : %f kWh\r\n",gun_index, ((float)ShmCharger->gun_info[gun_index].powerConsumption.power_consumption/100));
  2267. }
  2268. else if(stepIndex == 17)
  2269. {
  2270. if(ShmCharger->gun_info[gun_index].isSetBreatheLedTiming == ON)
  2271. {
  2272. DEBUG_INFO("==================================================\r\n");
  2273. DEBUG_INFO("======== Normal priority polling : Case 17 =======\r\n");
  2274. DEBUG_INFO("==================================================\r\n");
  2275. DEBUG_INFO("MCU-%d set breathe led timing : Authed Fade in [%ld].\r\n", gun_index, (long)ShmCharger->gun_info[gun_index].setBreatheLedTiming.set_Led_Action_Authed_Fade_In);
  2276. DEBUG_INFO("MCU-%d set breathe led timing : Authed Fade out [%ld].\r\n", gun_index, (long)ShmCharger->gun_info[gun_index].setBreatheLedTiming.set_Led_Action_Authed_Fade_Out);
  2277. DEBUG_INFO("MCU-%d set breathe led timing : Charging Fade in [%ld].\r\n", gun_index, (long)ShmCharger->gun_info[gun_index].setBreatheLedTiming.Set_Led_Action_Chaging_Fade_In);
  2278. DEBUG_INFO("MCU-%d set breathe led timing : Charging Fade out [%ld].\r\n", gun_index, (long)ShmCharger->gun_info[gun_index].setBreatheLedTiming.set_Led_Action_Chaging_Fade_Out);
  2279. DEBUG_INFO("MCU-%d set breathe led timing : Connected Fade in [%ld].\r\n", gun_index, (long)ShmCharger->gun_info[gun_index].setBreatheLedTiming.set_Led_Action_Connected_Fade_In);
  2280. DEBUG_INFO("MCU-%d set breathe led timing : Connected Fade out [%ld].\r\n", gun_index, (long)ShmCharger->gun_info[gun_index].setBreatheLedTiming.set_Led_Action_Connected_Fade_Out);
  2281. }
  2282. }
  2283. else if(stepIndex == 19)
  2284. {
  2285. if(ShmCharger->gun_info[gun_index].isSetLedBrightness == ON)
  2286. {
  2287. DEBUG_INFO("==================================================\r\n");
  2288. DEBUG_INFO("======== Normal priority polling : Case 19 =======\r\n");
  2289. DEBUG_INFO("==================================================\r\n");
  2290. DEBUG_INFO("MCU-%d set led brightness Sector 01 : [%x].\r\n", gun_index, ShmCharger->gun_info[gun_index].setLedBrightness.sector_1);
  2291. DEBUG_INFO("MCU-%d set led brightness Sector 02 : [%x].\r\n", gun_index, ShmCharger->gun_info[gun_index].setLedBrightness.sector_2);
  2292. DEBUG_INFO("MCU-%d set led brightness Sector 03 : [%x].\r\n", gun_index, ShmCharger->gun_info[gun_index].setLedBrightness.sector_3);
  2293. DEBUG_INFO("MCU-%d set led brightness Sector 04 : [%x].\r\n", gun_index, ShmCharger->gun_info[gun_index].setLedBrightness.sector_4);
  2294. DEBUG_INFO("MCU-%d set led brightness Sector 05 : [%x].\r\n", gun_index, ShmCharger->gun_info[gun_index].setLedBrightness.sector_5);
  2295. DEBUG_INFO("MCU-%d set led brightness Sector 06 : [%x].\r\n", gun_index, ShmCharger->gun_info[gun_index].setLedBrightness.sector_6);
  2296. DEBUG_INFO("MCU-%d set led brightness Sector 07 : [%x].\r\n", gun_index, ShmCharger->gun_info[gun_index].setLedBrightness.sector_7);
  2297. DEBUG_INFO("MCU-%d set led brightness Sector 08 : [%x].\r\n", gun_index, ShmCharger->gun_info[gun_index].setLedBrightness.sector_8);
  2298. DEBUG_INFO("MCU-%d set led brightness Sector 09 : [%x].\r\n", gun_index, ShmCharger->gun_info[gun_index].setLedBrightness.sector_9);
  2299. DEBUG_INFO("MCU-%d set led brightness Sector 10 : [%x].\r\n", gun_index, ShmCharger->gun_info[gun_index].setLedBrightness.sector_10);
  2300. DEBUG_INFO("MCU-%d set led brightness Sector 11 : [%x].\r\n", gun_index, ShmCharger->gun_info[gun_index].setLedBrightness.sector_11);
  2301. DEBUG_INFO("MCU-%d set led brightness Sector 12 : [%x].\r\n", gun_index, ShmCharger->gun_info[gun_index].setLedBrightness.sector_12);
  2302. }
  2303. }
  2304. else
  2305. {}
  2306. usleep(100000);
  2307. }
  2308. }
  2309. stepIndex++;
  2310. //===============================
  2311. // Communication fail check
  2312. //===============================
  2313. if(failCount[gun_index] >= FAIL_SPEC_COMM)
  2314. {
  2315. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.comm_timeout == OFF)
  2316. {
  2317. DEBUG_ERROR("Primary MCU-%d communication fault", gun_index);
  2318. ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.comm_timeout = ON;
  2319. }
  2320. }
  2321. else
  2322. {
  2323. if(ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.comm_timeout == ON)
  2324. {
  2325. DEBUG_ERROR("Primary MCU-%d communication recover", gun_index);
  2326. ShmCharger->gun_info[gun_index].primaryMcuAlarm.bits.comm_timeout = OFF;
  2327. }
  2328. }
  2329. }
  2330. }
  2331. return FAIL;
  2332. }