Browse Source

2020.03.10 / TC Hsu

Actions: Remove redundent files(general define and Modularization) in DW30 project folder.

Files:
       deleted:    EVSE/Projects/DW30/Apps/Infypwr_PsuCommObj.c
       deleted:    EVSE/Projects/DW30/Apps/Infypwr_PsuCommObj.h
       deleted:    EVSE/Projects/DW30/Apps/Module_Upgrade.h
       deleted:    EVSE/Projects/DW30/Apps/Phihong_PsuCommObj.c
       deleted:    EVSE/Projects/DW30/Apps/Phihong_PsuCommObj.h
       deleted:    EVSE/Projects/DW30/Apps/define.h

Image version    : N/A
Image checksum   : N/A

Hardware PWB P/N : N/A
Hardware Version : N/A
TC_Hsu 5 years ago
parent
commit
5f9a245f52

+ 0 - 634
EVSE/Projects/DW30/Apps/Infypwr_PsuCommObj.c

@@ -1,634 +0,0 @@
-/*
- * Infypwr_PsuCommObj.c
- *
- *  Created on: 2019年11月26日
- *      Author: 7564
- */
-
-#include "Infypwr_PsuCommObj.h"
-
-struct Current_cmd_Proc Psu_cmd={
-		0,
-		0x02000200,
-		0x01000300,
-		0x01000400,
-		0x01000500,
-		0x01000600,
-		0x01000700,
-		0x01000800,
-		0x01000900,
-		0x02000A00,
-
-		0x02000B00,
-		0x01000C00,
-		0x02000F00,
-		0x02001000,
-		0x02001100,
-		0x02001200,
-
-		0x01001300,
-		0x02001400,
-		0x01001500,
-		0x01001600,
-		0x02001700,
-
-		0x01001800,
-		0x01001900,
-		0x01001A00,
-
-		0x02001B00,
-		0x0E001C00,
-};
-
-//================================================
-// Callback function
-//================================================
-void GetPsuAddressReq(void *func)
-{
-	get_psu_addr_req = func;
-}
-
-void RefreshStatus(void *func)
-{
-	return_status = func;
-}
-
-void RefreshInputVol(void *func)
-{
-	return_input_vol = func;
-}
-
-void RefreshGetOutput(void *func)
-{
-	return_get_output = func;
-}
-
-void RefreshHWVersion(void *func)
-{
-	//return_hw_version = func;
-}
-
-void RefreshAvailableCap(void *func)
-{
-	return_available_cap = func;
-}
-
-
-void RefreshOutputPowerSwitch(void *func)
-{
-	return_output_pow_switch = func;
-}
-//================================================
-// CANBUS initialization
-//================================================
-int InitCanBus()
-{
-	int 					s0,nbytes;
-	struct timeval			tv;
-	struct ifreq 			ifr0;
-	struct sockaddr_can		addr0;
-
-	system("/sbin/ip link set can1 down");
-	system("/sbin/ip link set can1 type can bitrate 125000 restart-ms 100");
-	system("/sbin/ip link set can1 up");
-
-	s0 = socket(PF_CAN, SOCK_RAW, CAN_RAW);
-
-	tv.tv_sec = 0;
-	tv.tv_usec = 10000;
-   	if (setsockopt(s0, SOL_SOCKET, SO_RCVTIMEO, (char *)&tv, sizeof(struct	timeval)) < 0)
-	{
-		#ifdef SystemLogMessage
-		printf("Set SO_RCVTIMEO NG");
-		#endif
-	}
-	nbytes=40960;
-	if (setsockopt(s0, SOL_SOCKET,  SO_RCVBUF, &nbytes, sizeof(int)) < 0)
-	{
-		#ifdef SystemLogMessage
-		printf("Set SO_RCVBUF NG");
-		#endif
-	}
-	nbytes=40960;
-	if (setsockopt(s0, SOL_SOCKET, SO_SNDBUF, &nbytes, sizeof(int)) < 0)
-	{
-		#ifdef SystemLogMessage
-		printf("Set SO_SNDBUF NG");
-		#endif
-	}
-
-   	strcpy(ifr0.ifr_name, "can1" );
-	ioctl(s0, SIOCGIFINDEX, &ifr0); /* ifr.ifr_ifindex gets filled with that device's index */
-	addr0.can_family = AF_CAN;
-	addr0.can_ifindex = ifr0.ifr_ifindex;
-	bind(s0, (struct sockaddr *)&addr0, sizeof(addr0));
-	return s0;
-}
-
-//================================================
-// Receive Cmd from canbus
-//================================================
-void ReceiveDataFromCanBus()
-{
-	int nbytes;
-	struct can_frame frame;
-	int intCmd;
-	byte target, group, address;
-	while(1)
-	{
-		memset(&frame, 0, sizeof(struct can_frame));
-		nbytes = read(CanFd, &frame, sizeof(struct can_frame));
-
-
-		if (nbytes > 0)
-		{
-			frame.can_id = frame.can_id & CAN_EFF_MASK;
-
-			intCmd = (uint) (frame.can_id &  0x003F0000);
-			target = (byte) ((frame.can_id & 0x0000FF00)>>8);
-			group = (word) ((frame.can_id &  0x03C00000)>>22);
-			address = (byte) (frame.can_id & 0xFF);
-
-            //if master id
-            if(target == 0xF0)
-            {
-                //printf("Get-INFYPWR-Msg : %08x - %02x%02x%02x%02x%02x%02x%02x%02x\n", frame.can_id,frame.data[0], frame.data[1], frame.data[2], frame.data[3],frame.data[4], frame.data[5], frame.data[6], frame.data[7]);
-                //printf("Get-INFYPWR-Msg : %08x cmd:%08x target:%02x group:%02x address:%02x\n", frame.can_id, intCmd, target, group, address);
-
-    			switch (intCmd)
-    			{
-    				case INFYPWR_GET_TOTAL_MOULE_MSG:
-    				{
-    					byte Quantity;
-    					char sn[7];
-
-                        Quantity = frame.data[2];
-
-                        for (byte index = 0; index < Quantity; index++)
-                        {
-                            memcpy(sn, (char *)"INFY00", 6);
-                            sn[7] = index + 48;     //sacii
-                            get_psu_addr_req((index), sn);
-                        }
-    				}
-    					break;
-    				case ACK_ADDRESS_ASSINGMENT:
-    				{ }
-    					break;
-    				case INFYPWR_GET_STATUS_MSG:
-    				{
-    				    //英飛源狀態 (如果是使用 Group 命令發問模組會使用 Group 命令回覆)
-    				    if(group == 0x0B)
-    				    {
-    				        //data[2] = group
-    				        //data[4] = temp
-    				        //data[5,6,7] = alarm
-    					    return_status(frame.data[2], address,frame.data[4],
-    					    (((int) frame.data[5] << 16) + ((int) frame.data[6] << 8) + (int) frame.data[7])  & 0x00ffffff);
-    					}
-    				}
-    					break;
-
-
-    				case INFYPWR_GET_PRESENT_INPUT_VOLTAGE_MSG:
-    				{
-        			    return_input_vol(address,
-        			        ((word) frame.data[0] * 256 ) + (word) frame.data[1],
-        			        ((word) frame.data[2] * 256 ) + (word) frame.data[3],
-        			        ((word) frame.data[4] * 256 ) + (word) frame.data[5]);
-    				}
-    				    break;
-
-    				case INFYPWR_GET_PRESENT_OUTPUT_MSG:
-    				{
-    				    //英飛源狀態 (如果是使用 Group 命令發問模組會使用 Group 命令回覆)
-    				    //電壓值及電流值 = 4byte 精度 0.001位(高位在byte0)(轉為CSU使用 0.1位)
-    				    //if(group == 0x0B)
-    				    //{
-    				        //uint vol = (((unit) frame.data[0] << 24) + ((unit) frame.data[1] << 16) + ((unit) frame.data[2] << 8) + (unit) frame.data[3])/100);
-
-    				        //uint cur = (((unit) frame.data[4] << 24) + ((unit) frame.data[5] << 16) + ((unit) frame.data[6] << 8) + (unit) frame.data[7])/100);
-
-    				        //vol = vol / 100;
-    				        //cur = cur / 100;
-
-        					return_get_output(address,
-        							(word)((((unit) frame.data[0] << 24) + ((unit) frame.data[1] << 16) + ((unit) frame.data[2] << 8) + (unit) frame.data[3])/100),
-    								(word)((((unit) frame.data[4] << 24) + ((unit) frame.data[5] << 16) + ((unit) frame.data[6] << 8) + (unit) frame.data[7])/100));
-        				//}
-    				}
-    					break;
-
-    				case INFYPWR_GET_AVAILABLE_CAP_MSG:
-    				{
-    				    //英飛源狀態 (如果是使用 Group 命令發問模組會使用 Group 命令回覆)
-    				    if(group == 0x0B)
-    				    {
-        				    //英飛源單位
-        				    //最大電壓 1:1 (CSU使用是0.1位所以 X 10)
-        				    //最小電壓 1:1 (CSU使用是0.1位所以 X 10)
-        				    //電流 0.1位  (CSU使用是0.1位單位一樣)
-        				    //功率 0.01位 (CSU使用是0.1位所以再除 10)
-        					return_available_cap(address,
-        					        ((((word) frame.data[0] * 256) + (word) frame.data[1]) * 10),
-        					        ((((word) frame.data[2] * 256) + (word) frame.data[3]) * 10),
-        							(((word) frame.data[4] * 256) + (word) frame.data[5]),
-        							((((word) frame.data[6] * 256) + (word) frame.data[7]))/10);
-            			}
-    				}
-    					break;
-
-    				case INFYPWR_SET_POWER_SWITCH_MSG:
-    				{
-                        return_output_pow_switch(address, frame.data[0]);
-    				}
-    					break;
-    				case ACK_SET_PRESENT_OUTPUT:
-    				{
-    				}
-    					break;
-
-    			}
-    	    }
-		}
-		else
-		{
-
-		}
-
-		usleep(10000);
-	}
-}
-
-//================================================
-// Private Function
-//================================================
-void SendCmdToPsu(int cmd, byte *data, byte dataLen)
-{
-    struct can_frame frame;
-
-    //設定 CANBSU 2.0B 長封包
-    cmd = cmd | 0x80000000;
-
-    frame.can_id = cmd;
-    frame.can_dlc = dataLen;
-    memcpy(frame.data, data, dataLen);
-
-    write(CanFd, &frame, sizeof(struct can_frame));
-}
-
-//================================================
-// API Function
-//================================================
-bool InitialCommunication()
-{
-	CanFd = InitCanBus();
-
-	if(CanFd < 0)
-	{
-		printf("Init can bus fail.\n");
-		return false;
-	}
-
-    recFork = fork();
-    if(recFork > 0)
-    {
-    	ReceiveDataFromCanBus();
-	}
-    else if(recFork > 0)
-    {
-    	printf("fork fail\n");
-    }
-
-    return true;
-}
-
-void RequestModuleTotalMumbert(void)
-{
-	uint cmd = INFYPWR_MODULE_CMD | INFYPWR_GET_TOTAL_MOULE_MSG | (INFYPWR_BROADCAST_ID << 8) | INFYPWR_MASTER_TXID;
-
-	byte data[8];
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-//void PsuAddressAssignment(byte phy_addr, char *serial_number, byte real_addr, byte group)
-void PsuAddressAssignment(byte phy_addr, byte group)
-{
-	uint cmd = INFYPWR_MODULE_CMD | INFYPWR_SET_GROUP_ASSINGMENT_MSG | (phy_addr << 8) | INFYPWR_MASTER_TXID;
-
-	byte data[8];
-
-    memset(data, 0x00, ARRAY_SIZE(data));
-	data[0] =  group;
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void GetStatus(byte group, byte address)
-{
-	//如果用 group 發送 (該 group 內的模組會自動依序回應)
-	//printf("PSU_C_DLL : GetStatus. group = %x, address = %x \n", group, address);
-	uint cmd;
-	byte data[8];
-
-    //如果是群組命令
-    if(group == SET_GROUP_CMD)
-    {
-        cmd = INFYPWR_GROUP_CMD | INFYPWR_GET_STATUS_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-    }
-    //如果是模組命令則找出模組對應到 (英飛源的ID)
-    else
-    {
-        cmd = INFYPWR_MODULE_CMD | INFYPWR_GET_STATUS_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-    }
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void GetFwVersion(byte group, byte address, byte type)
-{
-}
-
-void GetSerialNumber(byte group, byte address)
-{
-}
-
-void GetAvailableCap(byte group, byte address, short _outputVol)
-{
-	//如果用 group 發送 (該 group 內的模組會自動依序回應)
-	uint cmd;
-	byte data[8];
-
-    //如果是群組命令
-    if(group == SET_GROUP_CMD)
-    {
-        cmd = INFYPWR_GROUP_CMD | INFYPWR_GET_AVAILABLE_CAP_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-    }
-    //如果是模組命令則找出模組對應到 (英飛源的ID)
-    else
-    {
-        cmd = INFYPWR_MODULE_CMD | INFYPWR_GET_AVAILABLE_CAP_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-    }
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void GetPresentInputVol(byte group, byte address)
-{
-	//printf("PSU_C_DLL : GetPresentInputVol. group = %x, address = %x \n", group, address);
-	//如果用 group 發送 (該 group 內的模組會自動依序回應)
-	uint cmd;
-	byte data[8];
-
-    //如果是群組命令
-    if(group == SET_GROUP_CMD)
-    {
-        cmd = INFYPWR_GROUP_CMD | INFYPWR_GET_PRESENT_INPUT_VOLTAGE_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-    }
-    //如果是模組命令則找出模組對應到 (英飛源的ID)
-    else
-    {
-        cmd = INFYPWR_MODULE_CMD | INFYPWR_GET_PRESENT_INPUT_VOLTAGE_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-    };
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void GetPresentOutput(byte group, byte address)
-{
-	//printf("PSU_C_DLL : GetPresentOutput. group = %x, address = %x \n", group, address);
-	int cmd;
-	byte data[8];
-
-    //如果是群組命令
-    if(group == SET_GROUP_CMD)
-    {
-        cmd = INFYPWR_GROUP_CMD | INFYPWR_GET_PRESENT_OUTPUT_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-    }
-    //如果是模組命令則找出模組對應到 (英飛源的ID)
-    else
-    {
-        cmd = INFYPWR_MODULE_CMD | INFYPWR_GET_PRESENT_OUTPUT_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-    }
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void SetPresentOutput(byte group, byte address, float vol, float cur, float AvailableCur)
-{
-    uint cmd;
-    byte data[8];
-    //bool isSearch = false;
-
-    //if (cur >= AvailableCur)
-	//cur = AvailableCur;
-
-	//if(vol == 0 && cur == 0)printf("output v=0 a =0 \n");
-    printf("group = %d, address = %d, vol = %f, cur = %f \n", group, address, vol, cur);
-    //英飛源使用 0.001 精度
-    uint vol2 =  vol * 100;
-    uint cur2 =  cur * 100;
-
-    printf("vol = %f, cur = %f, vol2 = %d, cur2 = %d \n", vol, cur, vol2, cur2);
-
- 	// 電壓
-	data[0] = (vol2 >> 24) & 0xff;
-	data[1] = (vol2 >> 16) & 0xff;
-	data[2] = (vol2 >> 8) & 0xff;
-	data[3] = vol2 & 0xff;
-
- 	// 電壓
-	data[4] = (cur2 >> 24) & 0xff;
-	data[5] = (cur2 >> 16) & 0xff;
-	data[6] = (cur2 >> 8) & 0xff;
-	data[7] = cur2 & 0xff;
-
-    //如果是群組命令
-    if(group == SET_GROUP_CMD)
-    {
-        cmd = INFYPWR_GROUP_CMD | INFYPWR_SET_GROUP_PERSENT_OUTPUT_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-        //printf("setout(G) :%08x /n",cmd);
-    }
-    //如果是模組命令則找出模組對應到 (英飛源的ID)
-    else
-    {
-
-    	//search group
-    	/*
-        for (byte groupIndex = 0; groupIndex < ShmPsuData->GroupCount; groupIndex++)
-        {
-        	for (byte index = 0; index < ShmPsuData->PsuGroup[groupIndex].GroupPresentPsuQuantity; index++)
-        	{
-        	    //search id
-        		if (ShmPsuData->PsuGroup[groupIndex].PsuModule[index].Address == address)
-        		{
-        		    //修改英飛為 id
-                    address = ShmPsuData->PsuGroup[groupIndex].PsuModule[index].PhysicalID;
-        			isSearch = true;
-        			break;
-        		}
-        	}
-        	if(isSearch) break;
-        }
-        */
-        cmd = INFYPWR_MODULE_CMD | INFYPWR_SET_MODULE_PERSENT_OUTPUT_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-        //printf("setout(M) :%08x /n",cmd);
-    }
-
-	printf("typecmd = %02x, addr = %02x ,vol = %d, tot_Amp = %f, need_cur = %d, \n", group, address, vol2, AvailableCur, cur2);
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void EnableGreenLedFlash(byte group, byte address, byte value)
-{
-	int cmd;
-	byte data[8];
-
-	if(value){
-	    //pwr off
-	    data[0] = 0x01;
-	}else{
-	    //pwr on
-	    data[0] = 0x00;
-	}
-
-    //如果是群組命令
-    if(group == SET_GROUP_CMD)
-    {
-        cmd = INFYPWR_GROUP_CMD | INFYPWR_SET_GREEN_KED_FLASH_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-        //printf("Green Led Flash(g) :%08x - %d - %d \n",cmd, data[0],address);
-    }
-    //如果是模組命令則找出模組對應到 (英飛源的ID)
-    else
-    {
-        cmd = INFYPWR_MODULE_CMD | INFYPWR_SET_GREEN_KED_FLASH_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-        //printf("Green Led Flash(M) :%08x - %d - %d \n",cmd, data[0],address);
-    }
-
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void EnableWalkInMode(byte group, byte address, byte value)
-{
-	int cmd;
-	byte data[8];
-
-	if(value){
-	    //pwr off
-	    data[0] = 0x01;
-	}else{
-	    //pwr on
-	    data[0] = 0x00;
-	}
-
-    //如果是群組命令
-    if(group == SET_GROUP_CMD)
-    {
-        cmd = INFYPWR_GROUP_CMD | INFYPWR_SET_WALKIN_MODE_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-        //printf("WalkIn(g) :%08x - %d - %d \n",cmd, data[0],address);
-    }
-    //如果是模組命令則找出模組對應到 (英飛源的ID)
-    else
-    {
-        cmd = INFYPWR_MODULE_CMD | INFYPWR_SET_WALKIN_MODE_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-        // printf("WalkIn(M) :%08x - %d - %d \n",cmd, data[0],address);
-    }
-
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void EnableSleepMode(byte group, byte address, byte value)
-{
-	int cmd;
-	byte data[8];
-
-	if(value){
-	    //pwr off
-	    data[0] = 0x01;
-	}else{
-	    //pwr on
-	    data[0] = 0x00;
-	}
-
-    //如果是群組命令
-    if(group == SET_GROUP_CMD)
-    {
-        cmd = INFYPWR_GROUP_CMD | INFYPWR_SET_SLEEP_MODE_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-        //printf("SleepMode(g) :%08x - %d - %d \n",cmd, data[0],address);
-    }
-    //如果是模組命令則找出模組對應到 (英飛源的ID)
-    else
-    {
-        cmd = INFYPWR_MODULE_CMD | INFYPWR_SET_SLEEP_MODE_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-         //printf("SleepMode(M) :%08x - %d - %d \n",cmd, data[0],address);
-    }
-
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void EnableDipAddrMode(byte group, byte address, byte value)
-{
-	int cmd;
-	byte data[8];
-
-	if(value){
-	    //pwr off
-	    data[0] = 0x01;
-	}else{
-	    //pwr on
-	    data[0] = 0x00;
-	}
-
-    //如果是群組命令
-    if(group == SET_GROUP_CMD)
-    {
-        cmd = INFYPWR_GROUP_CMD | INFYPWR_SET_ADDRESS_MODE_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-        //printf("DipAddrMode(g) :%08x - %d - %d \n",cmd, data[0],address);
-    }
-    //如果是模組命令則找出模組對應到 (英飛源的ID)
-    else
-    {
-        cmd = INFYPWR_MODULE_CMD | INFYPWR_SET_ADDRESS_MODE_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-        // printf("DipAddrMode(M) :%08x - %d - %d \n",cmd, data[0],address);
-    }
-
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void EnableOutputPower(byte group, byte address, byte value)
-{
-	int cmd;
-	byte data[8];
-
-	//printf("cmd = %x \n", cmd);
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-
-	if(value == 0){
-	    //pwr off
-	    data[0] = 0x01;
-	}else{
-	    //pwr on
-	    data[0] = 0x00;
-	}
-
-    //如果是群組命令
-    if(group == SET_GROUP_CMD)
-    {
-        cmd = INFYPWR_GROUP_CMD | INFYPWR_SET_POWER_SWITCH_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-        //printf("Module-onoff(g) :%08x - %d - %d \n",cmd, data[0],address);
-    }
-    //如果是模組命令則找出模組對應到 (英飛源的ID)
-    else
-    {
-        cmd = INFYPWR_MODULE_CMD | INFYPWR_SET_POWER_SWITCH_MSG | (address << 8) | INFYPWR_MASTER_TXID;
-        // printf("Modele-onoff(M) :%08x - %d - %d \n",cmd, data[0],address);
-    }
-
-	SendCmdToPsu(cmd, data, sizeof(data));
-}

+ 0 - 190
EVSE/Projects/DW30/Apps/Infypwr_PsuCommObj.h

@@ -1,190 +0,0 @@
-/*
- * Infypwr_PsuCommObj.h
- *
- *  Created on: 2019年11月26日
- *      Author: 7564
- */
-
-#ifndef INFYPWR_PSUCOMMOBJ_H_
-#define INFYPWR_PSUCOMMOBJ_H_
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <stdbool.h>
-#include <signal.h>
-#include <string.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <sys/socket.h>
-#include <sys/ioctl.h>
-#include <linux/wireless.h>
-#include <linux/can.h>
-#include <sys/ipc.h>
-#include <sys/shm.h>
-#include <sys/time.h>
-
-#include 	<stdbool.h>
-#include 	<unistd.h>
-#include 	<stdarg.h>
-#include    <stdio.h>      /*標準輸入輸出定義*/
-#include    <stdlib.h>     /*標準函數庫定義*/
-#include    <unistd.h>     /*Unix 標準函數定義*/
-#include    <fcntl.h>      /*檔控制定義*/
-#include    <termios.h>    /*PPSIX 終端控制定義*/
-#include    <errno.h>      /*錯誤號定義*/
-#include 	<errno.h>
-#include 	<string.h>
-#include	<time.h>
-#include	<ctype.h>
-#include 	<ifaddrs.h>
-#include 	<math.h>
-
-
-typedef unsigned char 		byte;
-typedef unsigned short 	word;
-typedef unsigned int 		unit;
-
-#define INFYPWR_MODULE_CMD				0x02800000  //
-#define INFYPWR_GROUP_CMD				0x02C00000  //
-#define INFYPWR_MASTER_TXID				0xF0  //
-#define INFYPWR_BROADCAST_ID			0x3F  //
-
-#define SET_MODULE_CMD              0
-#define SET_GROUP_CMD              1
-
-
-extern struct Current_cmd_Proc
-{
-	int none;							// 0
-	int _address_assignment;			// 0x02000200
-	int _get_status;					// 0x01000300
-	int _get_fw_ver;					// 0x01000400
-	int _get_fan_speed;					// 0x01000500
-	int _get_temperature;				// 0x01000600
-	int _get_present_input_vol;			// 0x01000700
-	int _get_present_output;			// 0x01000800
-	int _get_available_cap;				// 0x01000900
-	int _switch_output_pow;				// 0x02000A00
-
-	int _set_present_output;			// 0x02000B00
-	int _set_fan_speed;					// 0x01000C00
-	int _upgrade_req;					// 0x02000F00
-	int _start_block_trans;				// 0x02001000
-	int _img_trans;						// 0x02001100
-	int _upgrade_finish;				// 0x02001200
-
-	int _get_serial_number;				// 0x01001300
-	int _set_cooling_water_temp;		// 0x02001400
-	int _get_presnet_input_cur;			// 0x01001500
-	int _get_hw_verstion;				// 0x01001600
-	int _switch_pfc_output;				// 0x02001700
-
-	int _get_log_size;					// 0x01001800
-	int _get_log_block_checksum;		// 0x01001900
-	int _get_log_block_data;			// 0x01001A00
-
-	int _switch_custom_info;			// 0x02001B00
-	int _custom_info_transfer;			// 0x0E001C00
-}Psu_cmd;
-
-enum Receieve_PSU_msg
-{
-    ADDRESS_REQ = 	                    					0x08000100,
-	ACK_ADDRESS_ASSINGMENT = 								0x0B000200,
-    ACK_STATUS =                        					0x0B000300,
-    ACK_FIRMWARE_VERSION =              					0x0B000400,
-    ACK_FAN_SPEED =                     					0x0B000500,
-    ACK_TEMPERATURE =                  						0x0B000600,
-    ACK_PRESENT_INPUT_VOLTAGE =         					0x0B000700,
-    ACK_GET_PRESENT_OUTPUT =            					0x0B000800,
-    ACK_AVAILABLE_CAP = 	            					0x0B000900,
-    ACK_OUTPUT_POWER_SWITCH =           					0x0B000A00,
-    ACK_SET_PRESENT_OUTPUT =            					0x0B000B00,
-	ACK_SET_FAN_SPEED = 									0x0B000C00,
-    ACK_UPGRADE_REQ = 	                					0x0B000F00,
-    ACK_START_BLOCK_TRANS = 	        					0x0B001000,
-    ACK_UPGRADE_FINISH = 	            					0x0B001200,
-    ACK_GET_SERIAL_NUMBER =                 				0x0B001300,
-    ACK_COOLING_WATER_TEMP =            					0x0B001400,
-    ACK_PRESENT_INPUT_CURRENT =         					0x0B001500,
-    ACK_HARDWARE_VERSION =              					0x0B001600,
-    ACK_PFC_OUTPUT_SWITCH =             					0x0B001700,
-    ACK_LOG_SIZE =                      					0x0B001800,
-    ACK_LOG_BLOCK_CHECKSUM =            					0x0B001900,
-    ACK_LOG_BLOCK_DATA =                					0x0B001A00,
-    ACK_CUSTOM_INFO_TRANSFER_SWITCH =   					0x0B001B00,
-    CUSTOM_LOG_INFO =                   					0x0E001C00,
-    ALARM_NOTIFICATION =                					0x0C000D00,
-    FAULT_NOTIFICATION =                					0X0D001D00,
-    STATUS_NOTIFICATION =               					0x0E000E00,
-};
-
-enum Receieve_INFYPWR_msg
-{
-	INFYPWR_GET_TOTAL_MOULE_MSG  = 			                    0x00020000,
-	INFYPWR_GET_STATUS_MSG       = 			                    0x00040000,
-    INFYPWR_GET_PRESENT_INPUT_VOLTAGE_MSG =              		0x00060000,
-    INFYPWR_GET_PRESENT_OUTPUT_MSG =            				0x00090000,
-    INFYPWR_GET_AVAILABLE_CAP_MSG = 	            			0x000A0000,
-    INFYPWR_SET_WALKIN_MODE_MSG = 	            			    0x00130000,
-    INFYPWR_SET_GREEN_KED_FLASH_MSG = 	            			0x00140000,
-    INFYPWR_SET_GROUP_ASSINGMENT_MSG = 	            			0x00160000,
-    INFYPWR_SET_SLEEP_MODE_MSG = 	            			    0x00190000,
-    INFYPWR_SET_POWER_SWITCH_MSG = 	            			    0x001A0000,
-	INFYPWR_SET_GROUP_PERSENT_OUTPUT_MSG =                   	0x001B0000,
-	INFYPWR_SET_MODULE_PERSENT_OUTPUT_MSG =               		0x001C0000,
-    INFYPWR_SET_ADDRESS_MODE_MSG = 	            			    0x001F0000,
-};
-
-#define 	ARRAY_SIZE(A)		(sizeof(A) / sizeof(A[0]))
-
-int 						CanFd;
-pid_t 						recFork;
-
-/* API Function */
-bool InitialCommunication();
-//void PsuAddressAssignment(byte phy_addr, char *serial_number, byte real_addr, byte group);
-void PsuAddressAssignment(byte phy_addr, byte group);
-void GetStatus(byte group, byte address);
-void GetFwVersion(byte group, byte address, byte type);
-void GetSerialNumber(byte group, byte address);
-void GetFanSpeed(byte group, byte address);
-void GetTemperature(byte group, byte address);
-void GetPresentInputVol(byte group, byte address);
-void GetPresentOutput(byte group, byte address);
-void GetPresentInputCurrent(byte group, byte address);
-void GetAvailableCap(byte group, byte address, short _outputVol);
-
-void SetPresentOutput(byte group, byte address, float vol, float cur, float AvailableCur);
-
-void EnableOutputPower(byte group, byte address, byte value);
-
-void EnableGreenLedFlash(byte group, byte address, byte value);
-void EnableSleepMode(byte group, byte address, byte value);
-void EnableDipAddrMode(byte group, byte address, byte value);
-void EnableWalkInMode(byte group, byte address, byte value);
-void RequestModuleTotalMumbert(void);
-/* API Function end */
-
-/* Callback Function */
-void GetPsuAddressReq(void *func);
-void (*get_psu_addr_req)(byte phy_id, char *serial_number);
-
-void RefreshStatus(void *func);
-void (*return_status)(byte group, byte address, int alarm, int fault);
-
-void RefreshInputVol(void *func);
-void (*return_input_vol)(byte address, unsigned short vol1, unsigned short vol2, unsigned short vol3);
-
-void RefreshGetOutput(void *func);
-void (*return_get_output)(byte address, unsigned short out_vol, unsigned short out_cur);
-
-void RefreshAvailableCap(void *func);
-void (*return_available_cap)(byte address, unsigned short maxv,unsigned short minv , unsigned short able_cur,unsigned short able_power);
-
-void RefreshOutputPowerSwitch(void *func);
-void (*return_output_pow_switch)(byte address, int result);
-
-/* Callback Function end */
-
-#endif /* INFYPWR_PSUCOMMOBJ_H_ */

+ 0 - 1076
EVSE/Projects/DW30/Apps/Module_Upgrade.h

@@ -1,1076 +0,0 @@
-/*
- * Module_Upgrade.h
- *
- *  Created on: 2019
- *      Author: user75
- */
-
-#ifndef MODULE_UPGRADE_H_
-#define MODULE_UPGRADE_H_
-
-#endif /* MODULE_UPGRADE_H_ */
-
-#include 	<sys/time.h>
-#include 	<sys/timeb.h>
-#include    <sys/types.h>
-#include    <sys/stat.h>
-#include 	<sys/types.h>
-#include 	<sys/ioctl.h>
-#include 	<sys/socket.h>
-#include 	<sys/ipc.h>
-#include 	<sys/shm.h>
-#include 	<sys/shm.h>
-#include 	<sys/mman.h>
-#include 	<linux/wireless.h>
-#include 	<linux/can.h>
-#include 	<linux/can/raw.h>
-#include 	<arpa/inet.h>
-#include 	<netinet/in.h>
-
-#include 	<unistd.h>
-#include 	<stdarg.h>
-#include    <stdio.h>
-#include    <stdlib.h>
-#include    <unistd.h>
-#include    <fcntl.h>
-#include    <termios.h>
-#include    <errno.h>
-#include 	<errno.h>
-#include 	<string.h>
-#include	<time.h>
-#include	<ctype.h>
-#include 	<ifaddrs.h>
-
-#define Debug
-#define ARRAY_SIZE(A)		(sizeof(A) / sizeof(A[0]))
-#define PASS				1
-#define FAIL				-1
-
-struct SysConfigAndInfo			*ShmSysConfigAndInfo;
-struct StatusCodeData 			*ShmStatusCodeData;
-struct FanModuleData			*ShmFanModuleData;
-
-enum Image_Type
-{
-	CSU_BOOTLOADER 		           = 0x10000001,
-	CSU_KERNEL_CONFIGURATION       = 0x10000002,
-	CSU_KERNEL_IMAGE 	           = 0x10000003,
-	CSU_ROOT_FILE_SYSTEM	       = 0x10000004,
-	CSU_USER_CONFIGURATION         = 0x10000005,
-	CSU_PRIMARY_CONTROLLER 		   = 0x10000006,
-	CCS_BOARD_BOOTLOADER 		   = 0x10000007,
-	CCS_BOARD_KERNEL_CONFIGURATION = 0x10000008,
-	CCS_BOARD_KERNEL_IMAGE 		   = 0x10000009,
-	CCS_BOARD_FILE_SYSTEM		   = 0x1000000A,
-	CHAdeMO_BOARD                  = 0x1000000B,
-	GB_BOARD                       = 0x1000000C,
-	RELAY_CONTROL_BOARD            = 0x1000000D,
-	FAN_CONTROL_BOARD              = 0x1000000E,
-	LCM                            = 0x1000000F,
-	F750_PSU_PRIMARY_CONTROLLER    = 0x10000010,
-	F750_PSU_SECONDARY_CONTROLLER  = 0x10000011,
-	F950_PSU_PRIMARY_CONTROLLER    = 0x10000012,
-	F950_PSU_SECONDARY_CONTROLLER  = 0x10000013,
-	AC_CORDSET_CONTROLLER          = 0x20000001,
-	AC_WALLMOUNT_CONTROLLER        = 0x20000002,
-	CMU_IN_BMS                     = 0x30000001,
-	BMU_IN_BMS                     = 0x30000002
-};
-
-enum Flash_ImageType
-{
-	FLASH_IMAGE_TYPE_SPL						= 0x01,
-	FLASH_IMAGE_TYPE_UBOOT						= 0x02,
-	FLASH_IMAGE_TYPE_DTB						= 0x03,
-	FLASH_IMAGE_TYPE_KERNEL						= 0x04,
-	FLASH_IMAGE_TYPE_ROOTFS						= 0x05,
-	FLASH_IMAGE_TYPE_CONFIG						= 0x06
-};
-
-enum Canbus_ImageType
-{
-	CANBUS_IMAGE_TYPE_SPL						= 0x01,
-	CANBUS_IMAGE_TYPE_UBOOT						= 0x02,
-	CANBUS_IMAGE_TYPE_DTB						= 0x03,
-	CANBUS_IMAGE_TYPE_KERNEL					= 0x04,
-	CANBUS_IMAGE_TYPE_ROOTFS					= 0x05,
-	CANBUS_IMAGE_TYPE_CONFIG					= 0x06,
-	CANBUS_IMAGE_TYPE_MCU						= 0x07
-};
-
-enum Canbus_MessageId
-{
-	CANBUS_MESSAGE_ID_UPGRADE_REQUEST			= 0x00000e00,
-	CANBUS_MESSAGE_ID_UPGRADE_TRANS_BLOCK		= 0x00000f00,
-	CANBUS_MESSAGE_ID_UPGRADE_TRANS_DATA		= 0x00001000,
-	CANBUS_MESSAGE_ID_UPGRADE_FINISH			= 0x00001100
-};
-
-enum Uart_Command
-{
-	UART_CMD_UPDATE_START 		= 0xe0,
-	UART_CMD_UPDATE_ABORD 		= 0xe1,
-	UART_CMD_UPDATE_TRANSFER 	= 0xe2,
-	UART_CMD_UPDATE_FINISH 		= 0xe3
-};
-
-unsigned long GetTimeoutValue(struct timeval _sour_time);
-
-int DiffTimebByUpgrade(struct timeb ST, struct timeb ET)
-{
-	//return milli-second
-	unsigned int StartTime,StopTime;
-
-	StartTime=(unsigned int)ST.time;
-	StopTime=(unsigned int)ET.time;
-	return (StopTime-StartTime)*1000+ET.millitm-ST.millitm;
-}
-
-unsigned char *memcat(unsigned char *dest, unsigned int dest_len, unsigned char *src, unsigned int src_len)
-{
-	memcpy(dest+dest_len, src, src_len);
-	return dest;
-}
-
-//==========================================
-// Init all share memory
-//==========================================
-int InitShareMemory()
-{
-	int result = PASS;
-	int MeterSMId;
-
-	//creat ShmSysConfigAndInfo
-	if ((MeterSMId = shmget(ShmSysConfigAndInfoKey, sizeof(struct SysConfigAndInfo),  0777)) < 0)
-    {
-		#ifdef SystemLogMessage
-		printf("shmget ShmSysConfigAndInfo NG\n");
-		#endif
-		result = FAIL;
-	}
-    else if ((ShmSysConfigAndInfo = shmat(MeterSMId, NULL, 0)) == (void *) -1)
-    {
-    	#ifdef SystemLogMessage
-    	printf("shmat ShmSysConfigAndInfo NG\n");
-		#endif
-    	result = FAIL;
-   	 }
-    else
-    {}
-
-   	 //creat ShmStatusCodeData
-   	 if ((MeterSMId = shmget(ShmStatusCodeKey, sizeof(struct StatusCodeData),  0777)) < 0)
-    {
-		#ifdef SystemLogMessage
-   		printf("shmget ShmStatusCodeData NG\n");
-		#endif
-   		result = FAIL;
-	}
-    else if ((ShmStatusCodeData = shmat(MeterSMId, NULL, 0)) == (void *) -1)
-    {
-    	#ifdef SystemLogMessage
-    	printf("shmat ShmStatusCodeData NG\n");
-		#endif
-    	result = FAIL;
-   	}
-    else
-    {}
-
-    return result;
-}
-
-unsigned int crc32h(unsigned char *message) {
-   int i, crc;
-   unsigned int byte, c;
-   const unsigned int g0 = 0xEDB88320,    g1 = g0>>1,
-      g2 = g0>>2, g3 = g0>>3, g4 = g0>>4, g5 = g0>>5,
-      g6 = (g0>>6)^g0, g7 = ((g0>>6)^g0)>>1;
-
-   i = 0;
-   crc = 0xFFFFFFFF;
-   while ((byte = message[i]) != 0) {    // Get next byte.
-      crc = crc ^ byte;
-      c = ((crc<<31>>31) & g7) ^ ((crc<<30>>31) & g6) ^
-          ((crc<<29>>31) & g5) ^ ((crc<<28>>31) & g4) ^
-          ((crc<<27>>31) & g3) ^ ((crc<<26>>31) & g2) ^
-          ((crc<<25>>31) & g1) ^ ((crc<<24>>31) & g0);
-      crc = ((unsigned)crc >> 8) ^ c;
-      i = i + 1;
-   }
-   return ~crc;
-}
-
-uint32_t crc32(uint8_t *data, unsigned int length)
-{
-    uint8_t i;
-    uint32_t cnt = 0;
-    uint32_t crc = 0xffffffff;  // Initial value
-    while(length--)
-    {
-    	if(cnt>33 && cnt<48) {
-    		data++;
-    	}else {
-    		crc ^= *data++;         // crc ^= *data; data++;
-			for (i = 0; i < 8; ++i)
-			{
-				if (crc & 1)
-					crc = (crc >> 1) ^ 0xEDB88320;// 0xEDB88320= reverse 0x04C11DB7
-				else
-					crc = (crc >> 1);
-			}
-    	}
-    	cnt++;
-    }
-    return ~crc;
-}
-
-int Upgrade_Flash(unsigned int Type,char *SourcePath, struct SysConfigAndInfo *SysInfo)
-{
-	int result = FAIL;
-
-	long int MaxLen=48*1024*1024, ImageLen=0;
-	unsigned int ImageCRC=0, DataLength=0;
-	int wrd,fd;
-
-	// space max size set
-
-	switch(Type)
-	{
-		case CSU_BOOTLOADER:
-			MaxLen = 1*1024*1024;
-			printf("Image type: U-Boot\r\n");
-			break;
-		case CSU_KERNEL_CONFIGURATION:
-			MaxLen = 0.5*1024*1024;
-			printf("Image type: DTB\r\n");
-			break;
-		case CSU_KERNEL_IMAGE:
-			MaxLen = 10*1024*1024;
-			printf("Image type: Kernel\r\n");
-			break;
-		case CSU_ROOT_FILE_SYSTEM:
-			MaxLen = 48*1024*1024;
-			printf("Image type: Root fs\r\n");
-			break;
-		case CSU_USER_CONFIGURATION:
-			MaxLen = 6*1024*1024;
-			printf("Image type: Config\r\n");
-			break;
-		default:
-			break;
-	}
-
-	fd = open(SourcePath, O_RDONLY);
-	if(fd < 0)
-	{
-		printf("UpdateRootfs NG - can not open rootfs\n");
-		return result;
-	}
-
-	unsigned char *ptr = malloc(MaxLen); //-48 is take out the header
-	memset(ptr,0xFF,MaxLen);  //-48 is take out the header
-
-	//get the image length
-	ImageLen = read(fd,ptr,MaxLen);
-	close(fd);
-	//read out the header
-	int i;
-	int isModelNameOK = PASS;
-	for(i=0;i<16;i++) {
-		if(SysInfo->SysConfig.ModelName[i] != ptr[i]){
-			isModelNameOK = FAIL;
-		}
-	}
-
-	if(isModelNameOK == FAIL) {
-		printf("The model name is wrong...\n");
-		return result;
-	}else {
-		// check if the firmware type is correct
-		printf(">> Model name checked.\n");
-		if(Type == (((unsigned int)ptr[16])<<24 | ((unsigned int)ptr[17])<<16 | ((unsigned int)ptr[18])<<8 | ((unsigned int)ptr[19]))) {
-			printf(">> Image type checked.\n");
-			if((ImageLen-48) == (((unsigned int)ptr[20])<<24 | ((unsigned int)ptr[21])<<16 | ((unsigned int)ptr[22])<<8 | ((unsigned int)ptr[23]))) {
-				DataLength = ImageLen-48;
-				printf(">> Image length checked...%d\r\n",DataLength);
-
-				// get CRC in the header
-				ImageCRC = ((unsigned int)ptr[34])<<24 | ((unsigned int)ptr[35])<<16 | ((unsigned int)ptr[36])<<8 | ((unsigned int)ptr[37]);
-
-				printf("ImageCRC: 0x%x\r\n",ImageCRC);
-				printf("crc32: 0x%x\r\n",crc32(ptr,ImageLen/*34+DataLength*/));
-				// calculate the image CRC
-				printf("Calculating CRC-32...\n");
-				if(crc32(ptr,ImageLen/*34+DataLength*/) == ImageCRC) {
-					printf(">> CRC-32 checked.\n");
-
-					// Write image to target flash block
-					switch(Type)
-					{
-						/*case FLASH_IMAGE_TYPE_SPL:
-							fd = open("/dev/mtdblock0", O_RDWR);
-							if (fd < 0)
-							{
-								DEBUG_ERROR("Can not open mtdblock0\r\n");
-								result = FAIL;
-							}
-							else
-							{
-								// Write image to flash
-								DEBUG_INFO("Writing image to mtdblock0...\n");
-								wrd=write(fd, ptr, DataLength);
-								close(fd);
-								DEBUG_INFO(">> mtdblock0 Written length: 0x%x\r\n", wrd);
-								if(wrd != DataLength)
-								{
-									result = FAIL;
-								}
-								else
-								{
-									result = PASS;
-								}
-							}
-							break;*/
-						case CSU_BOOTLOADER:
-							fd = open("/dev/mtdblock1", O_RDWR);
-							if (fd < 0)
-							{
-								printf("Can not open mtdblock1\r\n");
-								result = FAIL;
-							}
-							else
-							{
-								// Write image to flash
-								printf("Writing image to mtdblock1...\n");
-								wrd=write(fd, ptr+48, DataLength);
-								close(fd);
-								printf(">> mtdblock1 written length: 0x%x\r\n", wrd);
-								if(wrd != DataLength)
-								{
-									result = FAIL;
-								}
-								else
-								{
-									// Open flash target mtdblock
-									fd = open("/dev/mtdblock3", O_RDWR);
-									if (fd < 0)
-									{
-										printf("Can not open mtdblock3\r\n");
-										result = FAIL;
-									}
-									else
-									{
-										// Write image to flash
-										printf("Writing image to mtdblock3...\n");
-										wrd=write(fd, ptr, DataLength);
-										close(fd);
-										printf(">> mtdblock3 written length: 0x%x\r\n", wrd);
-										if(wrd != DataLength)
-										{
-											result = FAIL;
-										}
-										else
-										{
-											result = PASS;
-										}
-									}
-								}
-							}
-							break;
-						case CSU_KERNEL_CONFIGURATION:
-							fd = open("/dev/mtdblock4", O_RDWR);
-							if (fd < 0)
-							{
-								printf("Can not open mtdblock4\r\n");
-								result = FAIL;
-							}
-							else
-							{
-								// Write image to flash
-								printf("Writing image to mtdblock4...\n");
-								wrd=write(fd, ptr+48, DataLength);
-								close(fd);
-								printf(">> mtdblock4 written length: 0x%x\r\n", wrd);
-								if(wrd != DataLength)
-								{
-									result = FAIL;
-								}
-								else
-								{
-									// Open flash target mtdblock
-									fd = open("/dev/mtdblock5", O_RDWR);
-									if (fd < 0)
-									{
-										printf("Can not open mtdblock5\r\n");
-										result = FAIL;
-									}
-									else
-									{
-										// Write image to flash
-										printf("Writing image to mtdblock5...\n");
-										wrd=write(fd, ptr+48, DataLength);
-										close(fd);
-										printf(">> mtdblock5 written length: 0x%x\r\n", wrd);
-										if(wrd != DataLength)
-										{
-											result = FAIL;
-										}
-										else
-										{
-											result = PASS;
-										}
-									}
-								}
-							}
-							break;
-						case CSU_KERNEL_IMAGE:
-							fd = open("/dev/mtdblock6", O_RDWR);
-							if (fd < 0)
-							{
-								printf("Can not open mtdblock6\r\n");
-								result = FAIL;
-							}
-							else
-							{
-								// Write image to flash
-								printf("Writing image to mtdblock6...\n");
-								wrd=write(fd, ptr+48, DataLength);
-								close(fd);
-								printf(">> mtdblock6 written length: 0x%x\r\n", wrd);
-								if(wrd != DataLength)
-								{
-									result = FAIL;
-								}
-								else
-								{
-									// Open flash target mtdblock
-									fd = open("/dev/mtdblock7", O_RDWR);
-									if (fd < 0)
-									{
-										printf("Can not open mtdblock7\r\n");
-										result = FAIL;
-									}
-									else
-									{
-										// Write image to flash
-										printf("Writing image to mtdblock7...\n");
-										wrd=write(fd, ptr+48, DataLength);
-										close(fd);
-										printf(">> mtdblock7 written length: 0x%x\r\n", wrd);
-										if(wrd != DataLength)
-										{
-											result = FAIL;
-										}
-										else
-										{
-											result = PASS;
-										}
-									}
-								}
-							}
-							break;
-						case CSU_ROOT_FILE_SYSTEM:
-							fd = open("/dev/mtdblock8", O_RDWR);
-							if(fd < 0)
-							{
-								printf("UpdateRootfs NG - can not open rootfs\n");
-								result = FAIL;
-							}
-							else
-							{
-								printf("Writing image to mtdblock8...\n");
-								wrd=write(fd, ptr+48, DataLength);
-								close(fd);
-								printf(">> mtdblock8 written length: 0x%x\r\n", wrd);
-								if(wrd!=DataLength)
-								{
-									result = FAIL;
-								}
-								else
-								{
-									fd = open("/dev/mtdblock9", O_RDWR);
-									if(fd < 0)
-									{
-										printf("UpdateRootfs NG - can not open rootfs\n");
-										result = FAIL;
-									}
-
-									printf("Writing image to mtdblock9...\n");
-									wrd=write(fd, ptr+48, DataLength);
-									close(fd);
-									printf(">> mtdblock9 written length: 0x%x\r\n", wrd);
-									if(wrd!=DataLength)
-									{
-										result = FAIL;
-									}
-									else
-									{
-										result = PASS;
-									}
-								}
-							}
-							break;
-						case CSU_USER_CONFIGURATION:
-							// Open flash target mtdblock
-							fd = open("/dev/mtdblock10", O_RDWR);
-							if (fd < 0)
-							{
-								printf("Can not open mtdblock10\r\n");
-								result = FAIL;
-							}
-							else
-							{
-								// Write image to flash
-								printf("Writing image to mtdblock10...\n");
-								wrd=write(fd, ptr+48, DataLength);
-								close(fd);
-								printf(">> mtdblock10 written length: 0x%x\r\n", wrd);
-								if(wrd != DataLength)
-								{
-									result = FAIL;
-								}
-								else
-								{
-									// Open flash target mtdblock
-									fd = open("/dev/mtdblock11", O_RDWR);
-									if (fd < 0)
-									{
-										printf("Can not open mtdblock11\r\n");
-										result = FAIL;
-									}
-									else
-									{
-										// Write image to flash
-										printf("Writing image to mtdblock11...\n");
-										wrd=write(fd, ptr+48, DataLength);
-										close(fd);
-										printf(">> mtdblock11 written length: 0x%x\r\n", wrd);
-										if(wrd != DataLength)
-										{
-											result = FAIL;
-										}
-										else
-										{
-											result = PASS;
-										}
-									}
-								}
-							}
-							break;
-						default:
-							break;
-					}
-				}
-			}
-		}
-	}
-
-	free(ptr);
-	if(result == PASS)
-		printf("Update image success\r\n");
-	else
-		printf("Update image fail\r\n");
-
-	return result;
-}
-
-//================================================
-// UART update function
-//================================================
-int uart_tranceive(int fd, unsigned char* cmd, unsigned char* rx, int len, unsigned char needErase)
-{
-	//sleep(2); //required to make flush work, for some reason
-	/*
-	 TODO: RS-485 direction control logic maybe need operate here
-	 * */
-	tcflush(fd,TCIOFLUSH);
-	printf("tx len = %d \n", len);
-	if(write(fd, cmd, len) >= len)
-	{
-		len = 0;
-		if (needErase == 0x01)
-			sleep(5);
-		else
-			usleep(500000);
-		len = read(fd, rx, 512);
-	}
-	else
-	{
-		#ifdef SystemLogMessage
-		printf("Serial command %s response fail.\n", cmd);
-		#endif
-	}
-
-	return len;
-}
-
-unsigned char uart_update_start(unsigned char fd, unsigned char targetAddr, unsigned int crc32)
-{
-	unsigned char result = FAIL;
-	unsigned char tx[11] = {0xaa, 0x00, targetAddr, UART_CMD_UPDATE_START, 0x04, 0x00, (crc32>>0)&0xff, (crc32>>8)&0xff, (crc32>>16)&0xff, (crc32>>24)&0xff, 0x00};
-	unsigned char rx[512];
-	unsigned char chksum = 0x00;
-
-	for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
-		chksum ^= tx[6+idx];
-	tx[10] = chksum;
-
-	if(uart_tranceive(fd, tx, rx, 11, 0x01) >0)
-	{
-		chksum = 0x00;
-		for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
-		{
-			chksum ^= rx[6+idx];
-		}
-
-		if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
-		   (rx[2] == tx[1]) &&
-		   (rx[1] == tx[2]) &&
-		   (rx[3] == tx[3]) &&
-		   (rx[6] == 0x01))
-		{
-			result = PASS;
-			printf("UART target is ready for upgrade.\n");
-		}else {
-			printf("UART target is not ready...\n");
-		}
-	}else {
-		printf("UART receiving update start ack failed...\n");
-	}
-
-	return result;
-}
-
-unsigned char uart_update_abord(unsigned char fd, unsigned char targetAddr)
-{
-	unsigned char result = FAIL;
-	unsigned char tx[7] = {0xaa, 0x00, targetAddr, UART_CMD_UPDATE_ABORD, 0x04, 0x00, 0x00};
-	unsigned char rx[512];
-	unsigned char chksum = 0x00;
-
-
-	if(uart_tranceive(fd, tx, rx, 7, 0x00) >0)
-	{
-		for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
-		{
-			chksum ^= rx[6+idx];
-		}
-
-		if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
-		   (rx[2] == tx[1]) &&
-		   (rx[1] == tx[2]) &&
-		   (rx[3] == tx[3]) &&
-		   (rx[6] == 0x01))
-		{
-			result = PASS;
-			printf("UART target abord update OK.\n");
-		}else {
-			printf("UART target abord update failed.\n");
-		}
-	}else {
-		printf("UART receiving update abord ack failed...\n");
-	}
-
-	return result;
-}
-
-unsigned char uart_update_transfer(unsigned char fd, unsigned char targetAddr, unsigned int startAddr, unsigned char *data, unsigned short int length)
-{
-	unsigned char result = FAIL;
-	unsigned char tx[11 + length];
-	unsigned char rx[512];
-	unsigned char chksum = 0x00;
-
-	tx[0] = 0xaa;
-	tx[1] = 0x00;
-	tx[2] = targetAddr;
-	tx[3] = UART_CMD_UPDATE_TRANSFER;
-	tx[4] = (4 + length) & 0xff;
-	tx[5] = ((4 + length)>>8) & 0xff;
-	tx[6] = (startAddr>>0) & 0xff;
-	tx[7] = (startAddr>>8) & 0xff;
-	tx[8] = (startAddr>>16) & 0xff;
-	tx[9] = (startAddr>>24) & 0xff;
-	memcpy(tx+10, data, length);
-
-	for(int idx=0;idx<(tx[4] | tx[5]<<8);idx++)
-		chksum ^= tx[6+idx];
-	tx[sizeof(tx)-1] = chksum;
-
-	if(uart_tranceive(fd, tx, rx, 11 + length,0x00) >0)
-	{
-		chksum = 0;
-		for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
-		{
-			chksum ^= rx[6+idx];
-		}
-
-		if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
-		   (rx[2] == tx[1]) &&
-		   (rx[1] == tx[2]) &&
-		   (rx[3] == tx[3]) &&
-		   (rx[6] == 0x01))
-		{
-			result = PASS;
-			printf("Data transfer OK.\n");
-		}else {
-			printf("Data transfer failed.\n");
-		}
-	}else {
-		printf("UART receiving update transfer ack failed...\n");
-	}
-
-	return result;
-}
-
-unsigned char uart_update_finish(unsigned char fd, unsigned char targetAddr)
-{
-	unsigned char result = FAIL;
-	unsigned char tx[7] = {0xaa, 0x00, targetAddr, UART_CMD_UPDATE_FINISH, 0x04, 0x00, 0x00};
-	unsigned char rx[512];
-	unsigned char chksum = 0x00;
-
-
-	if(uart_tranceive(fd, tx, rx, 7,0x00) >0)
-	{
-		for(int idx=0;idx<(rx[4] | rx[5]<<8);idx++)
-		{
-			chksum ^= rx[6+idx];
-		}
-
-		if((chksum == rx[6+(rx[4] | rx[5]<<8)]) &&
-		   (rx[2] == tx[1]) &&
-		   (rx[1] == tx[2]) &&
-		   (rx[3] == tx[3]) &&
-		   (rx[6] == 0x01))
-		{
-			result = PASS;
-			printf("UART update finish check OK...\n");
-		}else {
-			printf("UART update finish check failed...\n");
-		}
-	}else {
-		printf("UART receiving update finish ack failed...\n");
-	}
-
-	return result;
-}
-
-int Upgrade_UART(unsigned char uartfd,unsigned int Type,unsigned char TargetAddr,char *SourcePath,struct SysConfigAndInfo *SysInfo)
-{
-	int result = FAIL;
-
-	long int MaxLen=48*1024*1024, ImageLen=0;
-	unsigned int ImageCRC=0, DataLength=0;
-    int fd;
-
-	fd = open(SourcePath, O_RDONLY);
-	if(fd < 0)
-	{
-		printf("UpdateRootfs NG - can not open rootfs\n");
-		return result;
-	}
-
-	unsigned char *ptr = malloc(MaxLen); //-48 is take out the header
-	memset(ptr,0xFF,MaxLen);  //-48 is take out the header
-
-	//get the image length
-	ImageLen = read(fd,ptr,MaxLen);
-	close(fd);
-	//read out the header
-	int i;
-	int isModelNameOK = PASS;
-	for(i=0;i<16;i++) {
-		if(SysInfo->SysConfig.ModelName[i] != ptr[i]){
-			isModelNameOK = FAIL;
-		}
-	}
-
-	if(isModelNameOK == FAIL) {
-		printf("The model name is wrong...\n");
-		return result;
-	}else {
-		// check if the firmware type is correct
-		printf(">> Model name checked.\n");
-		if(Type == (((unsigned int)ptr[16])<<24 | ((unsigned int)ptr[17])<<16 | ((unsigned int)ptr[18])<<8 | ((unsigned int)ptr[19]))) {
-			printf(">> Image type checked.\n");
-			if((ImageLen-48) == (((unsigned int)ptr[20])<<24 | ((unsigned int)ptr[21])<<16 | ((unsigned int)ptr[22])<<8 | ((unsigned int)ptr[23]))) {
-				DataLength = ImageLen-48;
-				printf(">> Image length checked...%d\r\n",DataLength);
-
-				// get CRC in the header
-				ImageCRC = ((unsigned int)ptr[34])<<24 | ((unsigned int)ptr[35])<<16 | ((unsigned int)ptr[36])<<8 | ((unsigned int)ptr[37]);
-
-				printf("ImageCRC: 0x%x\r\n",ImageCRC);
-				printf("crc32: 0x%x\r\n",crc32(ptr,ImageLen/*34+DataLength*/));
-				// calculate the image CRC
-				printf("Calculating CRC-32...\n");
-				if(crc32(ptr,ImageLen/*34+DataLength*/) == ImageCRC) {
-					printf(">> CRC-32 checked.\n");
-
-					if(uart_update_start(uartfd, TargetAddr, crc32(ptr+48,DataLength))==PASS) {
-						printf("uart_update_start pass.\n");
-						int CNT_Fail = 0;
-						int CNT_Trans = 0;
-						do{
-							if(uart_update_transfer(uartfd, TargetAddr, 0x080A0000 + CNT_Trans*1024, ptr+48+(CNT_Trans*1024), 1024)==PASS) {
-								printf("uart_update_transfer pass.\n");
-								CNT_Fail = 0;
-								CNT_Trans++;
-							}else {
-								CNT_Fail++;
-							}
-						}while(DataLength-(CNT_Trans*1024)>0 && CNT_Fail<1);
-
-						if(CNT_Fail>=3) {
-							uart_update_abord(uartfd, TargetAddr);
-						}else if(uart_update_finish(uartfd, TargetAddr)==PASS) {
-							result = PASS;
-						}
-					}
-					else
-					{
-						printf("UART asked update failed.\n");
-					}
-				}
-			}
-		}
-	}
-	free(ptr);
-	return result;
-}
-
-int CAN_Download_REQ(int canfd,unsigned int Slave_Addr, unsigned int imageSize)
-{
-	struct can_frame frame;
-	frame.can_id = (0x00000E00 + Slave_Addr) | 0x80000000;		//extended frame : �� 31 ��n�� 1
-	frame.can_dlc = 0x07;
-
-	frame.data[0] = 0x04;  //0x01:Configuration file, 0x02:Bootloader of primary side MCU, 0x03:Firmware (main code) of primary side MCU, 0x04:Bootloader of secondary side MCU, 0x05:Firmware (main code) of secondary side MCU
-	frame.data[1] = (imageSize>>0)&0xff;  //Total 384 KBytes
-	frame.data[2] = (imageSize>>8)&0xff;  //Total 384 KBytes
-	frame.data[3] = (imageSize>>16)&0xff;  //Total 384 KBytes
-	frame.data[4] = (imageSize>>24)&0xff;  //Total 384 KBytes
-	frame.data[5] = 0x10;  //16 blocks
-	frame.data[6] = 0x18;  //24 KBytes
-
-	printf(	"File size = %x, %d \n", imageSize, imageSize);
-	write(canfd, &frame, sizeof(struct can_frame));
-	if (canfd > 0)
-	{
-		struct timeval timer;
-		gettimeofday(&timer, NULL);
-		while (GetTimeoutValue(timer) < 5000000)
-		{
-			struct can_frame frame;
-			int len;
-			len = read(canfd, &frame, sizeof(struct can_frame));
-			if (len >= 0)
-			{
-				printf(	"*****************************CAN_Download_REQ Get***************************** \n");
-				printf("data = %x \n", frame.can_id & CAN_EFF_MASK);
-				if (((int)(frame.can_id & CAN_EFF_MASK & 0xFFFFFF00) ==  0x08000E00) && frame.data[0] == 1)
-				{
-					printf("PASS \n");
-					return PASS;
-				}
-			}
-
-		}
-	}
-	return FAIL;
-}
-
-int CAN_Start_BLK_Trans(int canfd,unsigned int Slave_Addr,unsigned int Block_No,unsigned int Block_Checksum)
-{
-	struct can_frame frame;
-	frame.can_id = (0x00000F00 + Slave_Addr) | 0x80000000;		//extended frame : �� 31 ��n�� 1
-	frame.can_dlc = 0x02;
-
-	frame.data[0] = Block_No;
-	frame.data[1] = Block_Checksum;
-
-	printf("Block_No = %x, Block_Checksum = %x \n", Block_No, Block_Checksum);
-	write(canfd, &frame, sizeof(struct can_frame));
-	usleep(100000);
-
-	if (canfd > 0)
-	{
-		struct timeval timer;
-		gettimeofday(&timer, NULL);
-		while (GetTimeoutValue(timer) < 1000000)
-		{
-			struct can_frame frame;
-			int len;
-			len = read(canfd, &frame, sizeof(struct can_frame));
-			if(len >= 0)
-			{
-				printf("*****************************CAN_Start_BLK_Trans Get***************************** \n");
-				printf("data = %x \n", frame.can_id & CAN_EFF_MASK); // extended frame ����T�ݭn���z�L CAN_EFF_MASK �~�|����u������T
-				if(((int)(frame.can_id & CAN_EFF_MASK & 0xFFFFFF00) ==  0x08000F00) &&frame.data[0] == 1)
-				{
-					printf("CAN_Start_BLK_Trans PASS \n");
-					return PASS;
-				}
-			}
-		}
-
-	}
-	return FAIL;
-}
-
-void CAN_Data_Trans(int canfd,unsigned int Slave_Addr,long Data_num,unsigned char Data[])
-{
-	struct can_frame frame;
-	frame.can_id = (0x00001000 + Slave_Addr) | 0x80000000;		//extended frame : �� 31 ��n�� 1
-	frame.can_dlc = 0x08;
-
-	frame.data[0] = Data[Data_num+0];
-	frame.data[1] = Data[Data_num+1];
-	frame.data[2] = Data[Data_num+2];
-	frame.data[3] = Data[Data_num+3];
-	frame.data[4] = Data[Data_num+4];
-	frame.data[5] = Data[Data_num+5];
-	frame.data[6] = Data[Data_num+6];
-	frame.data[7] = Data[Data_num+7];
-
-//	printf("%02x %02x %02x %02x %02x %02x %02x %02x \n", frame.data[0], frame.data[1], frame.data[2], frame.data[3],
-//			frame.data[4], frame.data[5], frame.data[6], frame.data[7]);
-	write(canfd, &frame, sizeof(struct can_frame));
-	usleep(2000);
-}
-
-int CAN_Download_FIN(int canfd,unsigned int Slave_Addr)
-{
-	struct can_frame frame;
-	frame.can_id = (0x00001100 + Slave_Addr) | 0x80000000;		//extended frame
-	frame.can_dlc = 0x00;
-
-	write(canfd, &frame, sizeof(struct can_frame));
-	usleep(10000);
-	if (canfd > 0)
-	{
-		struct timeval timer;
-		gettimeofday(&timer, NULL);
-		while (GetTimeoutValue(timer) < 1000000)
-		{
-			struct can_frame frame;
-			int len;
-			len = read(canfd, &frame, sizeof(struct can_frame));
-			if(len >= 0)
-			{
-				printf("data = %x \n", frame.can_id & CAN_EFF_MASK); // extended frame
-				if(((int)(frame.can_id & CAN_EFF_MASK & 0xFFFFFF00) ==  0x08001100) && frame.data[0] == 1)
-				{
-					printf("CAN_Download_FIN PASS \n");
-					return PASS;
-				}
-			}
-		}
-	}
-	return FAIL;
-}
-
-int Checksum_Cal(unsigned int StartAdress,unsigned int length, unsigned char Data[])
-{
-	unsigned char checksum = 0x00;
-
-	for(unsigned int i = 0; i < length; i++)
-	{
-		//printf("value = %x \n", Data[StartAdress + i]);
-		checksum ^= Data[StartAdress + i];
-		//printf("checksum = %x \n", checksum);
-	}
-
-	return checksum;
-}
-
-int Upgrade_CAN(int canfd,unsigned int Type,unsigned char TargetAddr,char *SourcePath,struct SysConfigAndInfo *SysInfo)
-{
-	int result = FAIL;
-
-	long int MaxLen=48*1024*1024, ImageLen=0;
-	unsigned int ImageCRC=0, DataLength=0;
-	int fd;
-
-	fd = open(SourcePath, O_RDONLY);
-	if(fd < 0)
-	{
-		printf("UpdateRootfs NG - can not open rootfs\n");
-		return result;
-	}
-
-	unsigned char *ptr = malloc(MaxLen); //-48 is take out the header
-	memset(ptr,0xFF,MaxLen);  //-48 is take out the header
-
-	//get the image length
-	ImageLen = read(fd,ptr,MaxLen);
-	close(fd);
-	//read out the header
-	int i;
-	int isModelNameOK = PASS;
-	for(i=0;i<16;i++) {
-		if(SysInfo->SysConfig.ModelName[i] != ptr[i]){
-			isModelNameOK = FAIL;
-		}
-	}
-
-	if(isModelNameOK == FAIL) {
-		printf("The model name is wrong...\n");
-		return result;
-	}else {
-		// check if the firmware type is correct
-		printf(">> Model name checked.\n");
-		if(Type == (((unsigned int)ptr[16])<<24 | ((unsigned int)ptr[17])<<16 | ((unsigned int)ptr[18])<<8 | ((unsigned int)ptr[19]))) {
-			printf(">> Image type checked.\n");
-			if((ImageLen-48) == (((unsigned int)ptr[20])<<24 | ((unsigned int)ptr[21])<<16 | ((unsigned int)ptr[22])<<8 | ((unsigned int)ptr[23]))) {
-				DataLength = ImageLen-48;
-				printf(">> Image length checked...%d\r\n",DataLength);
-
-				// get CRC in the header
-				ImageCRC = ((unsigned int)ptr[34])<<24 | ((unsigned int)ptr[35])<<16 | ((unsigned int)ptr[36])<<8 | ((unsigned int)ptr[37]);
-
-				printf("ImageCRC: 0x%x\r\n",ImageCRC);
-				printf("crc32: 0x%x\r\n",crc32(ptr,ImageLen/*34+DataLength*/));
-				// calculate the image CRC
-				printf("Calculating CRC-32...\n");
-				if(crc32(ptr,ImageLen/*34+DataLength*/) == ImageCRC) {
-					printf(">> CRC-32 checked.\n");
-
-					unsigned int Checksum[16];
-
-					for(int i=0;i<16;i++)
-					{
-						Checksum[i] = Checksum_Cal(i * 24576, 24576, ptr + 48);
-					}
-
-					if(CAN_Download_REQ(canfd, TargetAddr, DataLength) == PASS)
-					{
-						for(int block = 1; block <= 16; block++)
-						{
-							if(CAN_Start_BLK_Trans(canfd, TargetAddr, block, Checksum[block - 1]) == PASS)
-							{
-								for(int times = 0; times < 3072; times++)
-								{
-									CAN_Data_Trans(canfd, TargetAddr, ((block - 1) * 24576 + times * 8), ptr + 48);
-								}
-								printf(" \n");
-								printf(" \n");
-							}
-							else
-							{
-								free(ptr);
-								return result;
-							}
-						}
-
-						if (CAN_Download_FIN(canfd, TargetAddr) == PASS)
-							result = true;
-					}
-				}
-			}
-		}
-	}
-	free(ptr);
-	return result;
-}

+ 0 - 525
EVSE/Projects/DW30/Apps/Phihong_PsuCommObj.c

@@ -1,525 +0,0 @@
-/*
- * Phihong_PsuCommObj.c
- *
- *  Created on: 2019年7月2日
- *      Author: 7564
- */
-
-#include "Phihong_PsuCommObj.h"
-
-struct Current_cmd_Proc Psu_cmd={
-		0,
-		0x02000200,
-		0x01000300,
-		0x01000400,
-		0x01000500,
-		0x01000600,
-		0x01000700,
-		0x01000800,
-		0x01000900,
-		0x02000A00,
-
-		0x02000B00,
-		0x01000C00,
-		0x02000F00,
-		0x02001000,
-		0x02001100,
-		0x02001200,
-
-		0x01001300,
-		0x02001400,
-		0x01001500,
-		0x01001600,
-		0x02001700,
-
-		0x01001800,
-		0x01001900,
-		0x01001A00,
-
-		0x02001B00,
-		0x0E001C00,
-};
-
-//================================================
-// Callback function
-//================================================
-void GetPsuAddressReq(void *func)
-{
-	get_psu_addr_req = func;
-}
-
-void RefreshStatus(void *func)
-{
-	return_status = func;
-}
-
-void RefreshFWVersion(void *func)
-{
-	return_fw_version = func;
-}
-
-void RefreshFanSpeed(void *func)
-{
-	return_fan_speed = func;
-}
-
-void RefreshTemp(void *func)
-{
-	return_temp = func;
-}
-
-void RefreshInputVol(void *func)
-{
-	return_input_vol = func;
-}
-
-void RefreshGetOutput(void *func)
-{
-	return_get_output = func;
-}
-
-void RefreshInputCur(void *func)
-{
-	return_input_cur = func;
-}
-
-void RefreshHWVersion(void *func)
-{
-	//return_hw_version = func;
-}
-
-void RefreshAvailableCap(void *func)
-{
-	return_available_cap = func;
-}
-
-void RefreshAlarmNotify(void *func)
-{
-	return_alarm_code = func;
-}
-
-void RefreshFaultNotify(void *func)
-{
-	return_fault_code = func;
-}
-
-void RefreshStatusNotify(void *func)
-{
-	return_status_code = func;
-}
-
-void RefreshSerialNumber(void *func)
-{
-	return_get_serial_number = func;
-}
-
-void RefreshOutputPowerSwitch(void *func)
-{
-	return_output_pow_switch = func;
-}
-//================================================
-// CANBUS initialization
-//================================================
-int InitCanBus()
-{
-	int 					s0,nbytes;
-	struct timeval			tv;
-	struct ifreq 			ifr0;
-	struct sockaddr_can		addr0;
-
-	system("/sbin/ip link set can1 down");
-	system("/sbin/ip link set can1 type can bitrate 500000 restart-ms 100");
-	system("/sbin/ip link set can1 up");
-
-	s0 = socket(PF_CAN, SOCK_RAW, CAN_RAW);
-
-	tv.tv_sec = 0;
-	tv.tv_usec = 10000;
-   	if (setsockopt(s0, SOL_SOCKET, SO_RCVTIMEO, (char *)&tv, sizeof(struct	timeval)) < 0)
-	{
-		#ifdef SystemLogMessage
-		DEBUG_ERROR("Set SO_RCVTIMEO NG");
-		#endif
-	}
-	nbytes=40960;
-	if (setsockopt(s0, SOL_SOCKET,  SO_RCVBUF, &nbytes, sizeof(int)) < 0)
-	{
-		#ifdef SystemLogMessage
-		DEBUG_ERROR("Set SO_RCVBUF NG");
-		#endif
-	}
-	nbytes=40960;
-	if (setsockopt(s0, SOL_SOCKET, SO_SNDBUF, &nbytes, sizeof(int)) < 0)
-	{
-		#ifdef SystemLogMessage
-		DEBUG_ERROR("Set SO_SNDBUF NG");
-		#endif
-	}
-
-   	strcpy(ifr0.ifr_name, "can1" );
-	ioctl(s0, SIOCGIFINDEX, &ifr0); /* ifr.ifr_ifindex gets filled with that device's index */
-	addr0.can_family = AF_CAN;
-	addr0.can_ifindex = ifr0.ifr_ifindex;
-	bind(s0, (struct sockaddr *)&addr0, sizeof(addr0));
-	return s0;
-}
-
-//================================================
-// Receive Cmd from canbus
-//================================================
-void ReceiveDataFromCanBus()
-{
-	int nbytes;
-	struct can_frame frame;
-	int intCmd;
-	byte target, group, address;
-
-	while(1)
-	{
-		memset(&frame, 0, sizeof(struct can_frame));
-		nbytes = read(CanFd, &frame, sizeof(struct can_frame));
-
-		if (nbytes > 0)
-		{
-			frame.can_id = frame.can_id & CAN_EFF_MASK;
-			intCmd = (int) (frame.can_id & 0xFFFFFF00);
-			target = (byte) (frame.can_id & 0x000000FF);
-			group = (byte) (target >> 6);
-			address = (byte) (target & 0x3F);
-
-			switch (intCmd)
-			{
-				case ADDRESS_REQ:
-				{
-					byte phy_addr;
-					char sn[7];
-
-					phy_addr = frame.data[0];
-					memcpy(sn, (char *)frame.data + 1, 7);
-					get_psu_addr_req(phy_addr, sn);
-				}
-					break;
-				case ACK_ADDRESS_ASSINGMENT:
-				{ }
-					break;
-				case ACK_STATUS:
-				{
-					return_status(group, address,
-							((int) frame.data[3] << 24) + ((int) frame.data[2] << 16) + ((int) frame.data[1] << 8) + (int) frame.data[0],
-							((int) frame.data[7] << 24) + ((int) frame.data[6] << 16) + ((int) frame.data[5] << 8) + (int) frame.data[4]);
-				}
-					break;
-				case ACK_FIRMWARE_VERSION:
-				{
-					return_fw_version(group, address, frame.data[0], frame.data[1], frame.data + 2);
-				}
-					break;
-				case ACK_FAN_SPEED:
-				{
-					return_fan_speed(group, address,
-							((short) frame.data[1] << 8) + (short) frame.data[0],
-							((short) frame.data[3] << 8) + (short) frame.data[2],
-							((short) frame.data[5] << 8) + (short) frame.data[4],
-							((short) frame.data[7] << 8) + (short) frame.data[6]);
-				}
-					break;
-				case ACK_TEMPERATURE:
-				{
-					return_temp(group, address,
-							frame.data[0],
-							frame.data[1],
-							frame.data[2],
-							frame.data[3],
-							frame.data[4],
-							frame.data[5],
-							frame.data[6]);
-				}
-					break;
-				case ACK_PRESENT_INPUT_VOLTAGE:
-				{
-					return_input_vol(group, address,
-							frame.data[0],
-							((short) frame.data[2] << 8) + (short) frame.data[1],
-							((short) frame.data[4] << 8) + (short) frame.data[3],
-							((short) frame.data[6] << 8) + (short) frame.data[5]);
-				}
-					break;
-				case ACK_GET_PRESENT_OUTPUT:
-				{
-					return_get_output(group, address,
-							(((short) frame.data[1] << 8) + (short) frame.data[0]),
-							(((short) frame.data[3] << 8) + (short) frame.data[2]));
-				}
-					break;
-				case ACK_GET_SERIAL_NUMBER:
-				{
-					return_get_serial_number(group, address, frame.data[0], frame.data + 1);
-				}
-					break;
-				case ACK_COOLING_WATER_TEMP:
-				{
-				}
-					break;
-				case ACK_PRESENT_INPUT_CURRENT:
-				{
-					return_input_cur(group, address,
-							(((short) frame.data[1] << 8) + (short) frame.data[0]),
-							(((short) frame.data[3] << 8) + (short) frame.data[2]),
-							(((short) frame.data[5] << 8) + (short) frame.data[4]));
-				}
-					break;
-				case ACK_HARDWARE_VERSION:
-				{
-				}
-					break;
-				case ACK_PFC_OUTPUT_SWITCH:
-				case ACK_LOG_SIZE:
-				case ACK_LOG_BLOCK_CHECKSUM:
-				case ACK_LOG_BLOCK_DATA:
-				case ACK_CUSTOM_INFO_TRANSFER_SWITCH:
-				case ACK_SET_FAN_SPEED:
-					break;
-				case ACK_AVAILABLE_CAP:
-				{
-					return_available_cap(group, address,
-							(((short) frame.data[1] << 8) + (short) frame.data[0]),
-							(((short) frame.data[3] << 8) + (short) frame.data[2]));
-				}
-					break;
-				case ACK_OUTPUT_POWER_SWITCH:
-				{
-					return_output_pow_switch(group, address, frame.data[0]);
-				}
-					break;
-				case ACK_SET_PRESENT_OUTPUT:
-				{
-				}
-					break;
-
-				case ACK_UPGRADE_REQ:
-				{
-				}
-					break;
-				case ACK_START_BLOCK_TRANS:
-				{
-				}
-					break;
-				case ACK_UPGRADE_FINISH:
-				{
-				}
-					break;
-				case CUSTOM_LOG_INFO:
-				{
-				}
-					break;
-				case ALARM_NOTIFICATION:
-				{
-					return_alarm_code(group, address, frame.data);
-				}
-					break;
-				case FAULT_NOTIFICATION:
-				{
-					return_fault_code(group, address,
-							((int) frame.data[3] << 24)	+ ((int) frame.data[2] << 16) + ((int) frame.data[1] << 8) + (int) frame.data[0]);
-				}
-					break;
-				case STATUS_NOTIFICATION:
-				{
-					return_status_code(group, address,
-							frame.data[0],
-							((short) frame.data[2] << 8) + (short) frame.data[1],
-							((short) frame.data[4] << 8) + (short) frame.data[3]);
-				}
-					break;
-			}
-		}
-		else
-		{
-
-		}
-
-		usleep(10000);
-	}
-}
-
-//================================================
-// Private Function
-//================================================
-int PackageIdCmd(int cmd)
-{
-	return cmd | 0x80000000;
-}
-
-void SendCmdToPsu(int cmd, byte *data, byte dataLen)
-{
-    struct can_frame frame;
-
-    frame.can_id = cmd;
-    frame.can_dlc = dataLen;
-    memcpy(frame.data, data, dataLen);
-
-    write(CanFd, &frame, sizeof(struct can_frame));
-}
-
-//================================================
-// API Function
-//================================================
-bool InitialCommunication()
-{
-	CanFd = InitCanBus();
-
-	if(CanFd < 0)
-	{
-		printf("Init can bus fail.\n");
-		return false;
-	}
-
-    recFork = fork();
-    if(recFork > 0)
-    {
-    	ReceiveDataFromCanBus();
-	}
-    else if(recFork > 0)
-    {
-    	printf("fork fail\n");
-    }
-
-    return true;
-}
-
-void PsuAddressAssignment(byte phy_addr, char *serial_number, byte real_addr, byte group)
-{
-	int cmd = PackageIdCmd(Psu_cmd._address_assignment);
-
-	byte data[8];
-
-	data[0] =  (group << 6) + real_addr;
-	memcpy(data + 1, serial_number, 7);
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void GetStatus(byte group, byte address)
-{
-	//printf("PSU_C_DLL : GetStatus. group = %x, address = %x \n", group, address);
-	int cmd = PackageIdCmd(Psu_cmd._get_status + (group << 6) + address);
-	byte data[8];
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void GetFwVersion(byte group, byte address, byte type)
-{
-	//printf("PSU_C_DLL : GetFwVersion. group = %x, address = %x \n", group, address);
-	int cmd = PackageIdCmd(Psu_cmd._get_fw_ver + (group << 6) + address);
-	byte data[8];
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	data[0] = type;
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void GetSerialNumber(byte group, byte address)
-{
-	//printf("PSU_C_DLL : GetSerialNumber. group = %x, address = %x \n", group, address);
-	int cmd = PackageIdCmd(Psu_cmd._get_serial_number + (group << 6) + address);
-	byte data[8];
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void GetFanSpeed(byte group, byte address)
-{
-	//printf("PSU_C_DLL : GetFanSpeed. group = %x, address = %x \n", group, address);
-	int cmd = PackageIdCmd(Psu_cmd._get_fan_speed + (group << 6) + address);
-	byte data[8];
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void GetTemperature(byte group, byte address)
-{
-	//printf("PSU_C_DLL : GetTemperature. group = %x, address = %x \n", group, address);
-	int cmd = PackageIdCmd(Psu_cmd._get_temperature + (group << 6) + address);
-	byte data[8];
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void GetPresentInputVol(byte group, byte address)
-{
-	//printf("PSU_C_DLL : GetPresentInputVol. group = %x, address = %x \n", group, address);
-	int cmd = PackageIdCmd(Psu_cmd._get_present_input_vol + (group << 6) + address);
-	byte data[8];
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void GetPresentOutput(byte group, byte address)
-{
-	//printf("PSU_C_DLL : GetPresentOutput. group = %x, address = %x \n", group, address);
-	int cmd = PackageIdCmd(Psu_cmd._get_present_output + (group << 6) + address);
-	byte data[8];
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void GetPresentInputCurrent(byte group, byte address)
-{
-	//printf("PSU_C_DLL : GetPresentInputCurrent. group = %x, address = %x \n", group, address);
-	int cmd = PackageIdCmd(Psu_cmd._get_presnet_input_cur + (group << 6) + address);
-	byte data[8];
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void GetAvailableCap(byte group, byte address, short _outputVol)
-{
-	//printf("PSU_C_DLL : GetAvailableCap. group = %x, address = %x \n", group, address);
-	int cmd = PackageIdCmd(Psu_cmd._get_available_cap + (group << 6) + address);
-	byte data[8];
-
-	memset(data, 0x00, ARRAY_SIZE(data));
-	data[0] = _outputVol & 0xff;
-	data[1] = (_outputVol >> 8) & 0xff;
-
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void SetPresentOutput(byte group, byte address, short vol, short cur, unsigned short AvailableCur, byte derating)
-{
-	//printf("PSU_C_DLL : SetPresentOutput. group = %x, address = %x \n", group, address);
-	int cmd = PackageIdCmd(Psu_cmd._set_present_output + (group << 6) + address);
-	byte data[8];
-
-	// 電壓
-	data[0] = vol & 0xff;
-	data[1] = (vol >> 8) & 0xff;
-	// 電流 (%) : 先算出總能夠輸出的電流當 100 %, 在與現在的希望輸出的電流比對,比出來的值為希望模塊輸出電流的比率
-	if (cur >= AvailableCur)
-		cur = AvailableCur;
-
-	short percent = ((float) cur / AvailableCur) * 10000;
-	data[2] = percent & 0xff;
-	data[3] = (percent >> 8) & 0xff;
-	data[4] = derating;
-
-	printf("vol = %d, tot_Amp = %d, need_cur = %d, percent = %d \n", vol, AvailableCur, cur, percent);
-	SendCmdToPsu(cmd, data, sizeof(data));
-}
-
-void EnableOutputPower(byte group, byte address, byte value)
-{
-	int cmd = PackageIdCmd(Psu_cmd._switch_output_pow + (group << 6) + address);
-	byte data[8];
-
-	//printf("cmd = %x \n", cmd);
-	data[0] = value;
-	SendCmdToPsu(cmd, data, sizeof(data));
-}

+ 0 - 163
EVSE/Projects/DW30/Apps/Phihong_PsuCommObj.h

@@ -1,163 +0,0 @@
-/*
- * Phihong_PsuCommObj.h
- *
- *  Created on: 2019¦~7¤ë2¤é
- *      Author: 7564
- */
-
-#ifndef PHIHONG_PSUCOMMOBJ_H_
-#define PHIHONG_PSUCOMMOBJ_H_
-
-#include <stdio.h>
-#include <stdlib.h>
-#include <stdbool.h>
-#include <signal.h>
-#include <string.h>
-#include <fcntl.h>
-#include <unistd.h>
-#include <sys/socket.h>
-#include <sys/ioctl.h>
-#include <linux/wireless.h>
-#include <linux/can.h>
-#include <sys/ipc.h>
-#include <sys/shm.h>
-#include <sys/time.h>
-#include 	<stdbool.h>
-
-typedef unsigned char byte;
-
-extern struct Current_cmd_Proc
-{
-	int none;							// 0
-	int _address_assignment;			// 0x02000200
-	int _get_status;					// 0x01000300
-	int _get_fw_ver;					// 0x01000400
-	int _get_fan_speed;					// 0x01000500
-	int _get_temperature;				// 0x01000600
-	int _get_present_input_vol;			// 0x01000700
-	int _get_present_output;			// 0x01000800
-	int _get_available_cap;				// 0x01000900
-	int _switch_output_pow;				// 0x02000A00
-
-	int _set_present_output;			// 0x02000B00
-	int _set_fan_speed;					// 0x01000C00
-	int _upgrade_req;					// 0x02000F00
-	int _start_block_trans;				// 0x02001000
-	int _img_trans;						// 0x02001100
-	int _upgrade_finish;				// 0x02001200
-
-	int _get_serial_number;				// 0x01001300
-	int _set_cooling_water_temp;		// 0x02001400
-	int _get_presnet_input_cur;			// 0x01001500
-	int _get_hw_verstion;				// 0x01001600
-	int _switch_pfc_output;				// 0x02001700
-
-	int _get_log_size;					// 0x01001800
-	int _get_log_block_checksum;		// 0x01001900
-	int _get_log_block_data;			// 0x01001A00
-
-	int _switch_custom_info;			// 0x02001B00
-	int _custom_info_transfer;			// 0x0E001C00
-}Psu_cmd;
-
-enum Receieve_PSU_msg
-{
-    ADDRESS_REQ = 	                    					0x08000100,
-	ACK_ADDRESS_ASSINGMENT = 								0x0B000200,
-    ACK_STATUS =                        					0x0B000300,
-    ACK_FIRMWARE_VERSION =              					0x0B000400,
-    ACK_FAN_SPEED =                     					0x0B000500,
-    ACK_TEMPERATURE =                  						0x0B000600,
-    ACK_PRESENT_INPUT_VOLTAGE =         					0x0B000700,
-    ACK_GET_PRESENT_OUTPUT =            					0x0B000800,
-    ACK_AVAILABLE_CAP = 	            					0x0B000900,
-    ACK_OUTPUT_POWER_SWITCH =           					0x0B000A00,
-    ACK_SET_PRESENT_OUTPUT =            					0x0B000B00,
-	ACK_SET_FAN_SPEED = 									0x0B000C00,
-    ACK_UPGRADE_REQ = 	                					0x0B000F00,
-    ACK_START_BLOCK_TRANS = 	        					0x0B001000,
-    ACK_UPGRADE_FINISH = 	            					0x0B001200,
-    ACK_GET_SERIAL_NUMBER =                 				0x0B001300,
-    ACK_COOLING_WATER_TEMP =            					0x0B001400,
-    ACK_PRESENT_INPUT_CURRENT =         					0x0B001500,
-    ACK_HARDWARE_VERSION =              					0x0B001600,
-    ACK_PFC_OUTPUT_SWITCH =             					0x0B001700,
-    ACK_LOG_SIZE =                      					0x0B001800,
-    ACK_LOG_BLOCK_CHECKSUM =            					0x0B001900,
-    ACK_LOG_BLOCK_DATA =                					0x0B001A00,
-    ACK_CUSTOM_INFO_TRANSFER_SWITCH =   					0x0B001B00,
-    CUSTOM_LOG_INFO =                   					0x0E001C00,
-    ALARM_NOTIFICATION =                					0x0C000D00,
-    FAULT_NOTIFICATION =                					0X0D001D00,
-    STATUS_NOTIFICATION =               					0x0E000E00,
-};
-
-#define 	ARRAY_SIZE(A)		(sizeof(A) / sizeof(A[0]))
-
-int 						CanFd;
-pid_t 						recFork;
-
-/* API Function */
-bool InitialCommunication();
-void PsuAddressAssignment(byte phy_addr, char *serial_number, byte real_addr, byte group);
-void GetStatus(byte group, byte address);
-void GetFwVersion(byte group, byte address, byte type);
-void GetSerialNumber(byte group, byte address);
-void GetFanSpeed(byte group, byte address);
-void GetTemperature(byte group, byte address);
-void GetPresentInputVol(byte group, byte address);
-void GetPresentOutput(byte group, byte address);
-void GetPresentInputCurrent(byte group, byte address);
-void GetAvailableCap(byte group, byte address, short _outputVol);
-
-void SetPresentOutput(byte group, byte address, short vol, short cur, unsigned short AvailableCur, byte derating);
-
-void EnableOutputPower(byte group, byte address, byte value);
-/* API Function end */
-
-/* Callback Function */
-void GetPsuAddressReq(void *func);
-void (*get_psu_addr_req)(byte phy_id, char *serial_number);
-
-void RefreshStatus(void *func);
-void (*return_status)(byte group, byte address, int alarm, int fault);
-
-void RefreshFanSpeed(void *func);
-void (*return_fan_speed)(byte group, byte address, unsigned short fan1, unsigned short fan2, unsigned short fan3, unsigned short fan4);
-
-void RefreshTemp(void *func);
-void (*return_temp)(byte group, byte address, char cri_temp1, char cri_temp2, char cri_temp3, char ex_temp, char in_temp1, char in_temp2, char out_temp);
-
-void RefreshInputVol(void *func);
-void (*return_input_vol)(byte group, byte address, byte vol_type, unsigned short vol1, unsigned short vol2, unsigned short vol3);
-
-void RefreshGetOutput(void *func);
-void (*return_get_output)(byte group, byte address, unsigned short out_vol, unsigned short out_cur);
-
-void RefreshInputCur(void *func);
-void (*return_input_cur)(byte group, byte address, unsigned short in_cur1, unsigned short in_cur2, unsigned short in_cur3);
-
-void RefreshAvailableCap(void *func);
-void (*return_available_cap)(byte group, byte address, unsigned short able_power, unsigned short able_cur);
-
-void RefreshAlarmNotify(void *func);
-void (*return_alarm_code)(byte group, byte address, unsigned char *alarm);
-
-void RefreshFaultNotify(void *func);
-void (*return_fault_code)(byte group, byte address, int fault);
-
-void RefreshStatusNotify(void *func);
-void (*return_status_code)(byte group, byte address, byte st_machine, unsigned short out_vol, unsigned short out_cur);
-
-void RefreshSerialNumber(void *func);
-void (*return_get_serial_number)(byte group, byte address, unsigned char packageIndex, unsigned char *data);
-
-void RefreshOutputPowerSwitch(void *func);
-void (*return_output_pow_switch)(byte group, byte address, int result);
-
-void RefreshFWVersion(void *func);
-void (*return_fw_version)(byte group, byte address, unsigned char packageIndex, unsigned char type, unsigned char *data);
-
-/* Callback Function end */
-
-#endif /* PHIHONG_PSUCOMMOBJ_H_ */

+ 0 - 3016
EVSE/Projects/DW30/Apps/define.h

@@ -1,3016 +0,0 @@
-#ifndef	DEFINE_H_
-#define	DEFINE_H_
-
-/**************************************************************************************/
-/*********************************NAND Flash mapping *****************************/
-/**************************************************************************************/
-/*
-  sector size	512 KiB
-  Page size       4096 b
-  OOB size        224 b
-  Erase size    	524288 b
--------------------------------------------------------------------------------------------------------------------------------
-Segment 					Physical address 			Size
--------------------------------------------------------------------------------------------------------------------------------
-MLO								0x00000000-0x0007FFFF		512 KB
-Primary u-boot 					0x00080000-0x0017FFFF		1 MB
-Environment 					0x00180000-0x001FFFFF		512 KB
-Secondary u-boot	 			0x00200000-0x002FFFFF		1 MB
-Primary dtb						0x00300000-0x0037FFFF		512 KB
-Secondary dtb					0x00380000-0x003FFFFF		512 KB
-Primary kernel					0x00400000-0x00DFFFFF		10 MB
-Secondary Kernel 				0x00E00000-0x017FFFFF		10 MB
-Primary root file system		0x03000000-0x05FFFFFF		48 MB
-Secondary root file system		0x06000000-0x08FFFFFF		48 MB
-Primary user configuration 		0x09000000-0x095FFFFF		6 MB
-Secondary user configuration	0x09600000-0x09BFFFFF		6 MB
-Factory default configuration	0x09C00000-0x0A1FFFFF		6 MB
-Storage							0x0A200000-0x7FFFFFFF		1886 MB
-*/
-
-/**************************************************************************************/
-/*********************************System Limitation**********************************/
-/**************************************************************************************/
-/*Rating outout power and current*/
-#define RATED_POWER			25		//kW
-#define RATED_CURRENT		350		//Amp, it depend on the capacity of charging connector
-
-/*relevant to Quantity */
-#define MAX_PSU_QUANTITY	62
-#define CHAdeMO_QUANTITY	0
-#define CCS_QUANTITY		1
-#define GB_QUANTITY			0
-#define AC_QUANTITY			0
-#define PSU_QUANTITY		2
-#define ONE_CONNECTOR_USE	0
-
-/*SystemLog message*/
-#define SystemLogMessage			//for engineer to do analysis
-
-/**************************************************************************************/
-/*****************************share memory key information*****************************/
-/**************************************************************************************/
-#define ShmSysConfigAndInfoKey	1001
-#define ShmPsuKey				1002
-#define ShmCHAdeMOCommKey		1003
-#define ShmCcsCommKey			1004
-#define ShmStatusCodeKey		1005
-#define ShmPrimaryMcuKey		1006
-#define ShmFanBdKey				1007
-#define ShmRelayBdKey			1008
-#define ShmOcppModuleKey		1009
-
-/**************************************************************************************/
-/****structure SysConfigData => shall store the data to NAND flash****************/
-/****structure SysInfoData => shall NOT store the data to NAND flash***************/
-/****according to System Configuration and Information Table.xlsx Rev.0.2 *******/
-/**************************************************************************************/
-struct NoneUse
-{
-	unsigned char		unknown;					// None use struct
-};
-
-struct EthConfigData
-{
-	unsigned char		EthDhcpClient;				//0: enable,1: disable
-	unsigned char		EthMacAddress[18];			//default: Null
-	unsigned char		EthIpAddress[16];			//Eth0 default:192.168.0.10	,Eth1 default:192.168.1.10
-	unsigned char		EthSubmaskAddress[16];		//Eth0 default:255.255.255.0	,Eth1 default:255.255.255.0
-	unsigned char		EthGatewayAddress[16];		//Eth0 default:192.168.0.254	,Eth1 default:192.168.1.254
-};
-
-struct WifiConfigData
-{
-	unsigned char		WifiMode;					//0: disable, 1: Infrastructure client, 2: Infrastructure server, 3: Ad-Hoc
-	unsigned char		WifiSsid[256];				//default: Null
-	unsigned char		WifiPassword[256];			//default: Null
-	int					WifiRssi;					//dbm
-	unsigned char		WifiDhcpServer;				//0: enable, 1: disable
-	unsigned char		WifiDhcpClient;				//0: enable, 1: disable
-	unsigned char		WifiMacAddress[18];			//default: Null
-	unsigned char		WifiIpAddress[16];			//default:192.168.2.10
-	unsigned char		WifiSubmaskAddress[16];		//default:255.255.255.0
-	unsigned char		WifiGatewayAddress[16];		//default:192.168.2.254
-	unsigned char		WifiNetworkConn;			//0: disconnected, 1: connected
-};
-
-struct TeleConfigData
-{
-	unsigned char		TelcomModelName[64];		//default: Null
-	unsigned char		TelcomSoftwareVer[64];		//default: Null
-	unsigned char		TelcomApn[256];				//default: Null
-	int					TelcomRssi;					//dbm
-	unsigned char		TelcomChapPapId[256];		//default: Null
-	unsigned char		TelcomChapPapPwd[256];		//default: Null
-	unsigned char		TelcomModemImei[16];		//default: Null
-	unsigned char		TelcomSimImsi[16];			//default: Null
-	unsigned char		TelcomSimIccid[20];			//default: Null
-	unsigned char		TelcomSimStatus;			//0: no SIM card is found, 1: valid SIM card, 2: invalid SIM card
-	unsigned char		TelcomModemMode;			//0: No services, 1: CDMA, 2: GSM/GPRS, 3: WCDMA, 4: GSM/WCDMA, 5: TD_SCDMA mode, 6: Unknow
-	unsigned char		TelcomIpAddress[16];		//default: Null
-	unsigned char		TelcomNetworkConn;			//0: disconnected, 1: connected
-};
-
-struct BtConfigData
-{
-	unsigned char		LoginCentralID[64];			//default: Null
-	unsigned char		isLogin;					//0: Central device non-login	1: Central device login
-	unsigned char		isRequestStart;				//0: no action	1: request start charging
-	unsigned char		isRequestStop;				//0: no action	1: request stop charging
-};
-
-struct SysConfigData
-{
-	/**************System***************/
-	unsigned char			ModelName[64];				//charger model name
-	unsigned char			SerialNumber[64];			//charger system serial number
-	unsigned char			SystemId[128];				//charger system ID
-	unsigned char			SystemDateTime[32];			//charger system date and time
-	unsigned char			AcPhaseCount;				//AC EVSE power phase quantity,  1: One phase	3: Three phase
-	unsigned char			AuthorisationMode;			//0: Phihong RFID tag,  1: OCPP backend,  2: Phihong backend,  3: free mode
-	unsigned char	   		DefaultLanguage;			//
-	unsigned char   		RfidCardNumEndian;			//0: little endian,  1: big endian
-	unsigned short			AcPlugInTimes;				//0~65535
-	unsigned short			GbPlugInTimes;				//0~65535
-	unsigned short			Ccs1PlugInTime;				//0~65535
-	unsigned short			Ccs2PlugInTimes;			//0~65535
-	unsigned short			ChademoPlugInTimes;			//0~65535
-	unsigned char			chargePointVendor[32];	//the Vendor of the ChargePoint
-	/**************Charging***************/
-	unsigned short	   		MaxChargingEnergy;			//0: no limit,	1 ~ 65535	kWh
-	unsigned short	   		MaxChargingPower;			//0: rating value, 1 ~ RATING_POWER	kW"
-	unsigned short	   		MaxChargingCurrent;			//0: rating value, 1 ~ RATING_CURRENT	amp"
-	unsigned short	   		MaxChargingDuration;		//0: no limit,	1 ~ 65535	minutes
-	unsigned char   		PhaseLossPolicy;			//0: charging,  1: stop charging
-	unsigned char   		LocalWhiteCard[10][32];		//Max. card quantity is 10
-	unsigned char 			UserId[32];					//the user use this ID to trigger charging event, it can be RFID card number, OCPP IdTag, etc.
-	/**************Network***************/
-	unsigned char 			FtpServer[32];				//the ftp server for Phihong server to do data transimission
-	struct EthConfigData	Eth0Interface;
-	struct EthConfigData	Eth1Interface;
-	struct WifiConfigData 		AthInterface;
-	struct TeleConfigData		TelecomInterface;
-	struct BtConfigData		Bluetooth;
-	/**************Backend***************/
-	unsigned int 			BackendConnTimeout;			//default : 300s
-	unsigned char   		OfflinePolicy;				//0: local list, 1: Phihong RFID tag, 2: free charging, 3: no charging
-	unsigned short	   		OfflineMaxChargeEnergy;		//0: same as MaxChargingEnergy, 1 ~ 65535 kWh
-	unsigned short	   		OfflineMaxChargeDuration;	//0: same as MaxChargeDuration, 1 ~ 65535 minutes
-	unsigned char 			OcppServerURL[512];			//http: non-secure OCPP 1.5-S, https: secure OCPP 1.5-S, ws: non-secure OCPP 1.6-J, wss: secure OCPP 1.6-J"
-	unsigned char 			ChargeBoxId[128];
-	unsigned int 			Checksum;					//4 bytes checksum
-};
-
-struct ChargingInfoData
-{
-	unsigned char 		Index;
-	unsigned char 		slotsIndex;
-	unsigned char 		Type;					// 0 : Chademo, 1 : CCS, 2: GB
-	unsigned char 		type_index;
-	unsigned char 		Evboard_id;				// for EV board
-	unsigned char 		StopChargeFlag;			// for EV board
-	unsigned char		SystemStatus;				//0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
-	unsigned char		PreviousSystemStatus;		// 0: Booting, 1: idle, 2: authorizing, 3: preparing, 4: charging, 5: terminating, 6: alarm, 7: fault
-	int 			ReservationId;
-	unsigned char 		CardNumber[32];
-	float MaximumChargingVoltage;	//0~6553.5 volt
-	float AvailableChargingCurrent;	//0~6553.5 amp
-	float AvailableChargingPower;	//0~6553.5 kW
-	float DeratingChargingCurrent;  //0~6553.5 amp
-	float DeratingChargingPower;	//0~6553.5 kW
-	float FuseChargingVoltage;		//0~6553.5 volt
-	float FireChargingVoltage;		//0~6553.5 volt
-	float PresentChargingVoltage;	//0~6553.5 volt
-	float PresentChargingCurrent;		//0~6553.5 amp
-	float PresentChargingPower;		//0~6553.5 kW
-	float PresentChargedEnergy;		//0~6553.5 kWh
-	int PresentChargedDuration;	// second
-	int RemainChargingDuration;	// second
-	float EvBatteryMaxVoltage;		// 0~6553.5 volt
-	float EvBatterytargetVoltage;		// 0~6553.5 volt
-	float EvBatterytargetCurrent; 	//102.3				0~200(A) (unit:1A)
-	int EvBatterySoc;				// 0~100%
-	unsigned char ConnectorPlugIn;			//0: unplug, 1: Plug-in
-	unsigned char GunLocked;				//0: unlocked 1: locked
-	float PilotVoltage;
-	unsigned char PilotState;//1:state A, 2:State B1, 3:State B2, 4:State C, 5:State D, 6:State E, 7:State F, 8: Pilot error
-	unsigned char PilotDuty;					// 0~100%
-	unsigned char			StartUserId[32];			// This ID is trigger start charging event user by RFID、back-end、BLE.
-	unsigned char			StartDateTime[32];			// Charging cycle start date time
-	unsigned char			StoptDateTime[32];			// Charging cycle stop date time
-	unsigned char			StartMethod;
-	// Connector Temp
-	unsigned char 		ConnectorTemp;			//0x00: -60¢XC  ~  0xFE: 194
-	// Charging Status
-	unsigned char 		GroundFaultStatus;		// for GFD result => 0x00 : None, 0x01 : Can Start Charging, 0x02 : Stop Charging
-	unsigned char 		PrechargeStatus;		// for ccs precharge => 0x00 : None defined, 0x01 : Accepted
-	float 				OutputEnergy;			// output energy by per charging
-	unsigned char		RelayK1K2Status;		// 0x00 : open, 0x01 : close
-	unsigned char		RelayKPK2Status;		// 0x00 : open, 0x01 : close
-	unsigned char 	 	TimeoutFlag;			// 0 : none,
-	struct timeval		TimeoutTimer;
-	unsigned char 		MaxChargeEnable;
-	unsigned char		IsReadyToCharging;
-};
-
-struct SysInfoData
-{
-	/**************System***************/
-	unsigned char BootingStatus;			// 0 : booting, 1 : Initializing Complete.
-	unsigned char FactoryConfiguration;	//0: normal, 1: trigger, charger will return the configuration to factory default if trigger
-	float InputVoltageR;			//0~655.35 volt
-	float InputVoltageS;				//0~655.35 volt
-	float InputVoltageT;				//0~655.35 volt
-	unsigned int SystemFanRotaSpeed;		//0 ~ 65535 RPM
-	unsigned int PsuFanRotaSpeed;			//0 ~ 65535 RPM
-	unsigned char AuxPower5V;				//0 ~ 255 volt
-	unsigned char AuxPower12V;				//0 ~ 255 volt
-	unsigned char AuxPower24V;				//0 ~ 255 volt
-	unsigned char AuxPower48V;				//0 ~ 255 volt
-	unsigned char CsuHwRev[32];			//CSU board hardware version
-	unsigned char CsuBootLoadFwRev[32];	//CSU board bootloader firmware version
-	unsigned char CsuKernelFwRev[32];//CSU board OS kernel firmware version
-	unsigned char CsuRootFsFwRev[32];//CSU board root file system firmware version
-	unsigned char CsuPrimFwRev[32];	//CSU board root file system firmware version
-	unsigned char LcmHwRev[32];	//LCM module hardware version
-	unsigned char LcmFwRev[32];	//LCM module firmware version
-	unsigned char PsuHwRev[32];		//PSU hardware version
-	unsigned char PsuPrimFwRev[32];		//PSU primary firmware version
-	unsigned char PsuSecFwRev[32];			//PSU secondary firmware version
-	unsigned char AuxPwrHwRev[32];		//Aux. power module hardware version
-	unsigned char AuxPwrFwRev[32];		//Aux. power module firmware version
-	unsigned char FanModuleHwRev[32];		//Fan  module hardware version
-	unsigned char FanModuleFwRev[32];		//Fan  module firmware version
-	unsigned char RelayModuleHwRev[32];	//Relay control  module hardware version
-	unsigned char RelayModuleFwRev[32];	//Relay control  module firmware version
-	unsigned char TelcomModemFwRev[32];	//the 3G/4G modem firmware version
-	int SystemAmbientTemp;		// -40 ~ 215 degree C
-	int SystemCriticalTemp;		// -40 ~ 215 degree C
-	int CcsConnectorTemp;		// -40 ~ 215 degree C
-	int PsuAmbientTemp;			// -40 ~ 215 degree C
-	/**************Charging***************/
-	struct ChargingInfoData 	ChademoChargingData[CHAdeMO_QUANTITY];
-	struct ChargingInfoData 	CcsChargingData[CCS_QUANTITY];
-	struct ChargingInfoData 	GbChargingData[GB_QUANTITY];
-	struct ChargingInfoData 	AcChargingData[AC_QUANTITY];
-	unsigned char CurGunSelected;
-	/**************Network***************/
-	unsigned char 		InternetConn;					//0: disconnected, 1: connected
-	/**************Backend***************/
-	unsigned char 		OcppConnStatus;					//0: disconnected, 1: connected
-	/**************Alston***************/
-	unsigned char 		WaitForPlugit;					//0: none scan, 1: scanning
-	unsigned char 		PageIndex;						//0 : Initialize
-														//1 : idle
-														//4 : Authorizing
-														//5 : Authorizing complete
-														//6 : Authorizing fail
-														//7 : Wait for Plug
-														//8 : Pre-charge
-														//9 : Charging
-	unsigned char 		SelfTestSeq;					//
-	unsigned char 		ReAssignedFlag;					// 0 : none, other : gun number.
-	unsigned char 		BridgeRelayStatus;
-	unsigned char 		FirmwareUpdate;					// 0 : none, 1 : update.
-	unsigned char 		AcContactorStatus;				// 0: disconnected, 1: connected
-	unsigned char 	 	SystemTimeoutFlag;				// 0 : none, 1 : self test
-	struct timeval		SystemTimeoutTimer;
-	unsigned char 		SystemPage;
-	unsigned char 		ConnectorPage;
-};
-
-struct WARNING_CODE_INFO
-{
-	unsigned char WarningCount;
-	unsigned char PageIndex;
-	unsigned char WarningCode[10][7];
-};
-
-struct STOP_CHARGING_ALARM_CODE
-{
-	unsigned char Level;
-	unsigned char StopCode[4][7];
-};
-
-struct SysConfigAndInfo
-{
-	struct SysConfigData				SysConfig;
-	struct SysInfoData					SysInfo;
-	struct WARNING_CODE_INFO			SysWarningInfo;
-	struct STOP_CHARGING_ALARM_CODE		SysStopChargingAlarmCode;
-};
-
-/**************************************************************************************/
-/**************************Alarm Share memory**************************************/
-/***************************************************************************************
-	Status Code	A				B					C											D	E	F
-				0: Issue		1: From EVSE 		1: Fault (unrecoverable)					001 ~ 999 serial number
-			    										e.g., hardware broken, system latch
-				1: Recovered	2: From EV			2: Alarm (recoverable)
-			   											e.g., OTP, OVP
-								3: From Backend		3: Information
-			  											e.g., swipe card to stop charging
-
-according to XXX.Revxx
-***************************************************************************************/
-/**************************************************************************************/
-char FaultStatusCode[32][6]=
-{
-	"011001",	//CHAdeMO output fuse blew
-	"011002",	//CCS output fuse blew
-	"011003",	//GB output fuse blew
-	"011004",	//RCD/CCID self-test fail
-	"011005",	//AC input contactor 1 welding
-	"011006",	//AC input contactor 1 driving fault
-	"011007",	//AC input contactor 2 welding
-	"011008",	//AC input contactor 2 driving fault
-	"011009",	//AC output relay welding
-	"011010",	//AC output relay  driving fault
-	"011011",	//CHAdeMO output relay welding
-	"011012",	//CHAdeMO output relay driving fault
-	"011013",	//CCS output relay welding
-	"011014",	//CCS output relay driving fault
-	"011015",	//GB output relay welding
-	"011016",	//GB output relay driving fault
-	"011017",	//AC connector temperature sensor broken
-	"011018",	//CHAdeMO connector temperature sensor broken
-	"011019",	//CCS connector temperature sensor broken
-	"011020",	//GB connector temperature sensor broken
-	"011021",	//WiFi module broken
-	"011022",	//3G/4G module broken
-	"011023",	//Aux. power module broken
-	"011024",	//Relay control module /smart box broken
-	"011025",	//CHAdeMO connector lock fail
-	"011026",	//GB connector lock fail
-	"011027",	//AC connector lock fail
-	"011028",	//CHAdeMO module broken
-	"011029",	//CCS module broken
-	"011030",	//GBT module broken
-	"011031",	//PSU module broken
-	"011032"	//Reserved
-};
-
-struct FaultCodeData
-{
-	unsigned char PreviousFaultVal[4];
-	union
-	{
-		unsigned char FaultVal[4];
-		struct
-		{
-			//FaultVal[0]
-		    	unsigned char ChademoOutputFuseBlew:1;				//bit 0
-			unsigned char CcsOutputFuseBlew:1;					//bit 1
-			unsigned char GbOutputFuseBlew:1;   					//bit 2
-			unsigned char RcdSelfTestFail:1;						//bit 3
-			unsigned char AcInputContactor1Welding:1;			//bit 4
-			unsigned char AcInputContactor1DrivingFault:1;			//bit 5
-			unsigned char AcInputContactor2Welding:1;			//bit 6
-			unsigned char AcInputContactor2DrivingFault:1;			//bit 7
-			//FaultVal[1]
-			unsigned char AcOutputRelayWelding:1;				//bit 0
-			unsigned char AcOutputRelayDrivingFault:1;				//bit 1
-			unsigned char ChademoOutputRelayWelding:1;			//bit 2
-			unsigned char ChademoOutputRelayDrivingFault	:1;		//bit 3
-			unsigned char CcsOutputRelayWelding:1;				//bit 4
-			unsigned char CcsOutputRelayDrivingFault:1;			//bit 5
-			unsigned char GbOutputRelayWelding:1;				//bit 6
-			unsigned char GbOutputRelayDrivingFault:1;				//bit 7
-			//FaultVal[2]
-			unsigned char AcConnectorTempSensorBroken:1;			//bit 0
-			unsigned char ChademoConnectorTempSensorBroken:1;	//bit 1
-			unsigned char CcsConnectorTempSensorBroken:1;		//bit 2
-			unsigned char GbConnectorTempSensorBroken:1;			//bit 3
-			unsigned char WiFiModuleBroken:1;					//bit 4
-			unsigned char Telecom4GModuleBroken:1;				//bit 5
-			unsigned char AuxPowerModuleBroken:1;				//bit 6
-			unsigned char RelayControlModuleBroken :1;			//bit 7
-	             	 //FaultVal[3]
-			unsigned char ChademoConnectorLockFail:1;			//bit 0
-			unsigned char GbConnectorLockFail:1;					//bit 1
-			unsigned char AcConnectorLockFail:1;					//bit 2
-			unsigned char ChademoModuleBroken:1;				//bit 3
-			unsigned char CcsModuleBroken:1;					//bit 4
-			unsigned char GbModuleBroken:1;						//bit 5
-			unsigned char PsuModuleBroken:1;						//bit 6
-			unsigned char :1;									//bit 7		reserved
-		}bits;
-	}FaultEvents;
-};
-
-char AlarmStatusCode[128][6]=
-{
-	"012200",	//System L1 input OVP
-	"012201",	//System L2 input OVP
-	"012202",	//System L3 input OVP
-	"012203",	//System L1 input UVP
-	"012204",	//System L2 input UVP
-	"012205",	//System L3 input UVP
-	"012206",	//PSU L1 input OVP
-	"012207",	//PSU L2 input OVP
-	"012208",	//PSU L3 input OVP
-	"012209",	//PSU L1 input UVP
-	"012210",	//PSU L2 input UVP
-	"012211",	//PSU L3 input UVP
-	"012212",	//System L1 input drop
-	"012213",	//System L2 input drop
-	"012214",	//System L3 input drop
-	"012215",	//System AC output OVP
-	"012216",	//System AC output OCP
-	"012217",	//System CHAdeMO output OVP
-	"012218",	//System CHAdeMO output OCP
-	"012219",	//System CCS output OVP
-	"012220",	//System CCS output OCP
-	"012221",	//System GB output OVP
-	"012222",	//System GB output OCP
-	"012223",	//System ambient/inlet OTP
-	"012224",	//System critical point OTP
-	"012225",	//PSU ambient/inlet OTP
-	"012226",	//PSU critical point OTP
-	"012227",	//Aux. power module OTP
-	"012228",	//Relay board/smart box OTP
-	"012229",	//CHAdeMO connector OTP
-	"012230",	//CCS connector OTP
-	"012231",	//GB connector OTP
-	"012232",	//AC connector OTP
-	"012233",	//RCD/CCID trip
-	"012234",	//CHAdeMO GFD trip
-	"012235",	//CCS GFD trip
-	"012236",	//GB GFD trip
-	"012237",	//SPD trip
-	"012238",	//Main power breaker trip
-	"012239",	//Aux. power breaker trip
-	"012240",	//PSU communication fail
-	"012241",	//WiFi module communication fail
-	"012242",	//3G/4G module communication fail
-	"012243",	//RFID module communication fail
-	"012244",	//Bluetooth module communication fail
-	"012245",	//LCM module communication fail
-	"012246",	//Aux. power module communication fail
-	"012247",	//Relay control boaed/smart box communication fail
-	"012248",	//CCS module communication fail
-	"012249",	//CHAdeMO module communication fail
-	"012250",	//GBT module communication fail
-	"012251",	//Emergency stop
-	"012252",	//Door open
-	"012253",	//System fan decay
-	"012254",	//Fail to create share memory
-	"012255",	//CSU initialization failed
-	"012256",	//AC Ground Fault
-	"012257",	//MCU self-test Fault
-	"012258",	//Relay self-test Fault
-	"012259",	//CHAdeMO groundfault detection timeout (GFD)
-	"012260",	//CCS groundfault detection timeout (GFD)
-	"012261",	//GB groundfault detection timeout (GFD)
-	"012262",	//Circuit Short
-	"012263",	//Reserved
-	"012264", 	// PSU Output Short Circuit
-	"012265", 	// PSU Discharge Abnormal
-	"012266", 	// PSU Dc Side ShutDown
-	"012267", 	// PSU Failure Alarm
-	"012268", 	// PSU Protection Alarm
-	"012269", 	// PSU FanFailure Alarm
-	"012270", 	//Reserved
-	"012271",	//Reserved
-	"012272", 	// PSU WalkIn State
-	"012273", 	// PSU Power Limited State
-	"012274", 	// PSU Id Repeat
-	"012275", 	// PSU Severe Uneven Current
-	"012276", 	// PSU Three Phase Input Inadequate
-	"012277", 	// PSU Three Phase Onput Imbalance
-	"012278", 	// PSU Ffc Side ShutDown
-};
-struct AlarmCodeData
-{
-	unsigned char PreviousAlarmVal[10];
-	union
-	{
-		unsigned char AlarmVal[10];
-		struct
-		{
-			//AlarmVal[0]
-		    unsigned char SystemL1InputOVP:1;					//bit 0
-			unsigned char SystemL2InputOVP:1;					//bit 1
-			unsigned char SystemL3InputOVP:1;   					//bit 2
-			unsigned char SystemL1InputUVP:1;					//bit 3
-			unsigned char SystemL2InputUVP:1;					//bit 4
-			unsigned char SystemL3InputUVP:1;					//bit 5
-			unsigned char PsuL1InputOVP:1;						//bit 6
-			unsigned char PsuL2InputOVP:1;						//bit 7
-			//AlarmVal[1]
-			unsigned char PsuL3InputOVP:1;						//bit 0
-			unsigned char PsuL1InputUVP:1;						//bit 1
-			unsigned char PsuL2InputUVP:1;						//bit 2
-			unsigned char PsuL3InputUVP	:1;						//bit 3
-			unsigned char SystemL1InputDrop:1;					//bit 4
-			unsigned char SystemL2InputDrop:1;					//bit 5
-			unsigned char SystemL3InputDrop:1;					//bit 6
-			unsigned char SystemAcOutputOVP:1;					//bit 7
-			//AlarmVal[2]
-			unsigned char SystemAcOutputOCP:1;					//bit 0
-			unsigned char SystemChademoOutputOVP:1;			//bit 1
-			unsigned char SystemChademoOutputOCP:1;			//bit 2
-			unsigned char SystemCcsOutputOVP:1;					//bit 3
-			unsigned char SystemCcsOutputOCP:1;					//bit 4
-			unsigned char SystemGbOutputOVP:1;					//bit 5
-			unsigned char SystemGbOutputOCP:1;					//bit 6
-			unsigned char SystemAmbientOTP :1;					//bit 7
-	             	 //AlarmVal[3]
-			unsigned char SystemCriticalPointOTP:1;				//bit 0
-			unsigned char PsuAmbientOTP:1;						//bit 1
-			unsigned char PsuCriticalPointOTP:1;					//bit 2
-			unsigned char AuxPowerModuleOTP:1;					//bit 3
-			unsigned char RelayBoardOTP:1;						//bit 4
-			unsigned char ChademoConnectorOTP:1;				//bit 5
-			unsigned char CcsConnectorOTP:1;					//bit 6
-			unsigned char GbConnectorOTP:1;					//bit 7
-			 //AlarmVal[4]
-			unsigned char AcConnectorOTP:1;						//bit 0
-			unsigned char RcdTrip:1;								//bit 1
-			unsigned char ChademoGfdTrip:1;						//bit 2
-			unsigned char CcsGfdTrip:1;							//bit 3
-			unsigned char GbGfdTrip:1;							//bit 4
-			unsigned char SpdTrip:1;								//bit 5
-			unsigned char MainPowerBreakerTrip:1;					//bit 6
-			unsigned char AuxPowerBreakerTrip:1;					//bit 7
-			//AlarmVal[5]
-			unsigned char PsuCommunicationFail:1;				//bit 0
-			unsigned char WiFiModuleCommFail:1;					//bit 1
-			unsigned char Telecom4GModuleCommFail:1;			//bit 2
-			unsigned char RfidModuleCommFail:1;					//bit 3
-			unsigned char BluetoothModuleCommFail:1;				//bit 4
-			unsigned char LcmModuleCommFail:1;					//bit 5
-			unsigned char AuxPowerModuleCommFail:1;			//bit 6
-			unsigned char RelayBoardCommFail:1;					//bit 7
-			//AlarmVal[6]
-			unsigned char CcsModuleCommFail:1;					//bit 0
-			unsigned char ChademoModuleCommFail:1;			//bit 1
-			unsigned char GbModuleCommFail:1;					//bit 2
-			unsigned char EmergencyStopTrip:1;					//bit 3
-			unsigned char DoorOpen:1;							//bit 4
-			unsigned char SystemFanDecay:1;						//bit 5
-			unsigned char FailToCreateShareMemory:1;				//bit 6
-			unsigned char CsuInitFailed:1;							//bit 7
-			//AlarmVal[7]
-			unsigned char AcGroundfaultFail:1;					//bit 0
-			unsigned char McuSelftestFail:1;					//bit 1
-			unsigned char RelaySelftestFail:1;					//bit 2
-			unsigned char ChademoGroundfaultTimeout:1;			//bit 3
-			unsigned char CcsGroundfaultTimeout:1;				//bit 4
-			unsigned char GbGroundfaultTimeout:1;				//bit 5
-			unsigned char CircuitShort:1;						//bit 6
-			unsigned char :1;									//bit 7
-			//AlarmVal[8]
-			unsigned char PsuOutputShortCircuit :1;			//bit 0
-			unsigned char PsuDischargeAbnormal :1;					//bit 1
-			unsigned char PsuDcSideShutDown :1;					//bit 2
-			unsigned char PsuFailureAlarm :1;			//bit 3
-			unsigned char PsuProtectionAlarm :1;				//bit 4
-			unsigned char PsuFanFailureAlarm :1;				//bit 5
-			unsigned char :1;						//bit 6
-			unsigned char :1;									//bit 7
-			//AlarmVal[9]
-			unsigned char PsuWalkInState :1;					//bit 0
-			unsigned char PsuPowerLimitedState :1;					//bit 1
-			unsigned char PsuIdRepeat :1;					//bit 2
-			unsigned char PsuSevereUnevenCurrent :1;			//bit 3
-			unsigned char PsuThreePhaseInputInadequate :1;				//bit 4
-			unsigned char PsuThreePhaseOnputImbalance :1;				//bit 5
-			unsigned char PsuFfcSideShutDown :1;						//bit 6
-			unsigned char :1;									//bit 7
-		}bits;
-	}AlarmEvents;
-};
-
-char InfoStatusCode[128][6]=
-{
-	//Information comes from EVSE
-	"013600",	//Normal stop charging by user
-	"013601",	//Charging Time's up
-	"013602",	//Replace system air filter
-	"013603",	//Reach to CHAdeMO max. plugging times.
-	"013604",	//Reach to CCS max. plugging times.
-	"013605",	//Reach to GB max. plugging times.
-	"013606",	//Reach to AC max. plugging times.
-	"013607",	//CSU fimrware update fail
-	"013608",	//CHAdeMO Module fimrware update fail
-	"013609",	//CCS Module fimrware update fail
-	"013610",	//GB Module fimrware update fail
-	"013611",	//Aux. power module fimrware update fail
-	"013612",	//Relay control module fimrware update fail
-	"013613",	//LCM module fimrware update fail
-	"013614",	//Bluetooth module fimrware update fail
-	"013615",	//WiFi module fimrware update fail
-	"013616",	//3G/4G module fimrware update fail
-	"013617",	//SMR fimrware update fail
-	"013618",	//RFID module fimrware update fail
-	"013619",	//configured by USB flash drive
-	"013620",	//configured by backend
-	"013621",	//configured by webpage
-	"013622",	//disconnected from Internet through Ethernet
-	"013623",	//disconnected from Internet through WiFi
-	"013624",	//disconnected from Internet through 3G/4G
-	"013625",	//disconnected from AP through WiFi
-	"013626",	//disconnected from APN through 3G/4G
-	"013627",	//Reserved
-	"013628",	//Reserved
-	"013629",	//Reserved
-	"013630",	//Reserved
-	"013631",	//Reserved
-	//Information comes from EV
-	"023700",	//CHAdeMO EV communication Fail
-	"023701",	//CCS EV communication Fail
-	"023702",	//GB EV communication Fail
-	"023703",	//AC: pilot fault
-	"023704",	//CHAdeMO:  battery malfunction
-	"023705",	//CHAdeMO:  no charging permission
-	"023706",	//CHAdeMO:  battery incompatibility
-	"023707",	//CHAdeMO:  battery OVP
-	"023708",	//CHAdeMO:  battery UVP
-	"023709",	//CHAdeMO:  battery OTP
-	"023710",	//CHAdeMO:  battery current difference
-	"023711",	//CHAdeMO:  battery voltage difference
-	"023712",	//CHAdeMO:  shift position
-	"023713",	//CHAdeMO:  battery other fault
-	"023714",	//CHAdeMO:  charging system error
-	"023715",	//CHAdeMO:  EV normal stop
-	"023716",	//CHAdeMO:  connector temperature sensor broken
-	"023717",	//CHAdeMO:  connector lock fail
-	"023718",	//CHAdeMO:	D1 ON No Receive
-	"023719",	//CHAdeMO:	BMS K to J Timeout
-	"023720",	//CHAdeMO:	BMS Charge Allow Timeout
-	"023721",	//CHAdeMO:	Wait GroundFault Timeout
-	"023722",	//CHAdeMO:	BMS EV Relay Timeout
-	"023723",	//CHAdeMO:	BMS Request Current Timeout
-	"023724",	//CHAdeMO:	BMS K to J OFF Timeout
-	"023725",	//CHAdeMO:	BMS EV Relay OFF Timeout
-	"023726",	//CHAdeMO:	ADC More Than 10V
-	"023727",	//CHAdeMO:	ADC More Than 20V
-	"023728",	//CHAdeMO:	BMS Charge Before Stop
-	"023729",	//CHAdeMO:	Charger Get Normal Stop
-	"023730",	//CHAdeMO:	Charger Get Emergency Stop
-	"023731",	//CHAdeMO:  Isolation Result Fail
-	"023732",	//CHAdeMO: 	Miss Link With MotherBoard
-	"023733",	//CHAdeMO:	Output Voltage More Than Limit
-	"023734",	//CHAdeMO:	Request Current More Than Limit
-	"023735",	//CHAdeMO: 	Re Cap BMS Eqr Current Exceed
-	"023736",	//CHAdeMO:	Charge Remain Count Down
-	 //Information comes from Backend
-	"033900",	//disconnected from backend through Ethernet
-	"033901",	//disconnected from backend through WiFi
-	"033902",	//disconnected from backend through 3G/4G
-	"033903",	//Remote start charging by backend
-	"033904",	//Remote stop charging by backend
-	"033905",	//Remote reset by backend
-	"033906",	//Reserved
-	"033907",	//Reserved
-};
-struct InfoCodeData
-{
-	unsigned char PreviousInfoVal[10];
-	union
-	{
-		unsigned char InfoVal[10];
-		struct
-		{
-			//InfoVal[0]
-		    	unsigned char NormalStopChargingByUser:1;				//bit 0
-			unsigned char ChargingTimesUp:1;						//bit 1
-			unsigned char ReplaceSystemAirFilter:1; 					//bit 2
-			unsigned char ReachChademoMaxPluggingTimes:1;		//bit 3
-			unsigned char ReachCcsMaxPluggingTimes:1;			//bit 4
-			unsigned char ReachGbMaxPluggingTimes:1;			//bit 5
-			unsigned char ReachAcMaxPluggingTimes:1;				//bit 6
-			unsigned char CsuFimrwareUpdateFail:1;				//bit 7
-			//InfoVal[1]
-			unsigned char ChademoModuleFimrwareUpdateFail:1;	//bit 0
-			unsigned char CcsModuleFimrwareUpdateFail:1;			//bit 1
-			unsigned char GbModuleFimrwareUpdateFail:1;			//bit 2
-			unsigned char AuxPowerModuleFimrwareUpdateFail:1;		//bit 3
-			unsigned char RelayBoardFimrwareUpdateFail:1;			//bit 4
-			unsigned char LcmModuleFimrwareUpdateFail:1;			//bit 5
-			unsigned char BluetoothModuleFimrwareUpdateFail:1;		//bit 6
-			unsigned char WiFiModuleFimrwareUpdateFail:1;			//bit 7
-			//InfoVal[2]
-			unsigned char Telocom4GModuleFimrwareUpdateFail:1;	//bit 0
-			unsigned char PsuFimrwareUpdateFail:1;				//bit 1
-			unsigned char RfidModuleFimrwareUpdateFail:1;			//bit 2
-			unsigned char ConfiguredByUsbFlashDrive:1;				//bit 3
-			unsigned char ConfiguredByBackend:1;					//bit 4
-			unsigned char ConfiguredByWebpage:1;				//bit 5
-			unsigned char InternetDisconnectViaEthernet:1;			//bit 6
-			unsigned char InternetDisconnectViaWiFi :1;				//bit 7
-	        //InfoVal[3]
-			unsigned char InternetDisconnectVia4Gi:1;				//bit 0
-			unsigned char ApDisconnectViaWiFi:1;					//bit 1
-			unsigned char ApnDisconnectVia4Gi:1;					//bit 2
-			unsigned char :5;									//bit 3~7 reserved
-			 //InfoVal[4]
-			unsigned char ChademoEvCommFail:1;				//bit 0
-			unsigned char CcsEvCommFail:1;						//bit 1
-			unsigned char GbEvCommFail:1;						//bit 2
-			unsigned char PilotFault:1;							//bit 3
-			unsigned char ChademoBatteryMalfun:1;				//bit 4
-			unsigned char ChademoNoPermission:1;				//bit 5
-			unsigned char ChademoBatteryIncompatibility:1;			//bit 6
-			unsigned char ChademoBatteryOVP:1;					//bit 7
-			//InfoVal[5]
-			unsigned char ChademoBatteryUVP:1;					//bit 0
-			unsigned char ChademoBatteryOTP:1;					//bit 1
-			unsigned char ChademoBatteryCurrentDiff:1;			//bit 2
-			unsigned char ChademoBatteryVoltageDiff:1;			//bit 3
-			unsigned char ChademoShiftPosition:1;					//bit 4
-			unsigned char ChademoBatteryOtherFault:1;			//bit 5
-			unsigned char ChademoChargingSystemError:1;			//bit 6
-			unsigned char ChademoEvNormalStop:1;				//bit 7
-			//InfoVal[6]
-			unsigned char ChademoTempSensorBroken:1;			//bit 0
-			unsigned char ChademoConnectorLockFail:1;			//bit 1
-			unsigned char ChademoD1OnNoReceive:1;				//bit 2
-			unsigned char ChademoBmsKtoJTimeout:1;				//bit 3
-			unsigned char ChademoBmsChargeAllowTimeout:1;		//bit 4
-			unsigned char ChademoWaitGfdTimeout:1;				//bit 5
-			unsigned char ChademoBmsEvRelayTimeout:1;			//bit 6
-			unsigned char ChademoBmsReqCurrentTimeout:1;		//bit 7
-			//InfoVal[7]
-			unsigned char ChademoBmsKtoJOffTimeout :1;			//bit 0
-			unsigned char ChademoBmsEvRelayOffTimeout :1;		//bit 1
-			unsigned char ChademoAdcMoreThan10V :1;				//bit 2
-			unsigned char ChademoAdcMoreThan20V :1;				//bit 3
-			unsigned char ChademoBmsChargeBeforeStop :1;		//bit 4
-			unsigned char ChademoChargerGetNormalStop :1;				//bit 5
-			unsigned char ChademoChargerGetEmergencyStop :1;			//bit 6
-			unsigned char ChademoIsolationResultFail :1;		//bit 7
-			//InfoVal[8]
-			unsigned char ChademoMissLinkWithMotherBoard :1;	//bit 0
-			unsigned char ChademoOutputVolMoreThanLimit :1;			//bit 1
-			unsigned char ChademoReqCurrentMoreThanLimit :1;				//bit 2
-			unsigned char ChademoReCapBmsEqrCurrentExceed :1;				//bit 3
-			unsigned char ChademoChargeRemainCountDown :1;		//bit 4
-			unsigned char :3;				//bit 5 ~ 7 reserved
-			//InfoVal[9]
-			unsigned char BackendDisconnectedViaEthernet:1;		//bit 0
-			unsigned char BackendDisconnectViaWiFi:1;				//bit 1
-			unsigned char BackendDisconnectVia4G:1;				//bit 2
-			unsigned char BackendRemoteStart:1;					//bit 3
-			unsigned char BackendRemoteStop:1;					//bit 4
-			unsigned char BackendRemoteReset:1;					//bit 5
-			unsigned char :2;									//bit 6~7 reserved
-		}bits;
-	}InfoEvents;
-};
-
-struct StatusCodeData
-{
-	struct FaultCodeData	FaultCode;
-	struct AlarmCodeData	AlarmCode;
-	struct InfoCodeData		InfoCode;
-};
-/**************************************************************************************/
-/**************************PSU Share memory***************************************/
-/**************************************************************************************/
-
-/*Following are the information for each PSU module*/
-struct PsuModuleData
-{
-	unsigned char 		AssignID;
-	unsigned char 		PhysicalID;
-	unsigned char 		GroupID;
-	unsigned char 		Address;
-	unsigned char 		FireWireIndex;
-	unsigned char 		FwVersion[16];
-	unsigned char 		SerialNumber[32];
-	unsigned char 		StateMachine;			//0: Identification,  1:Operation,  2: Alarm,  3: Failure,  s4:Upgrade
-	unsigned char 		OutputPowerSwitch;	//0: D.D normal OFF,  1: D.D emergency OFF,  2: D.D ON
-	unsigned short 	FanSpeed_1;			//RPM
-	unsigned short 	FanSpeed_2;			//RPM
-	unsigned short 	FanSpeed_3;			//RPM
-	unsigned short 	FanSpeed_4;			//RPM
-	unsigned short 	InputVoltage_Type;	//0x00 = Line to Line Vol, 0x01 = Line to Neutral Vol
-	unsigned short 	InputVoltageL1;		//abcd=abc.d volt
-	unsigned short 	InputVoltageL2;		//abcd=abc.d volt
-	unsigned short 	InputVoltageL3;		//abcd=abc.d volt
-	unsigned short 	InputCurrentL1;		//abcd=abc.d amp
-	unsigned short 	InputCurrentL2;		//abcd=abc.d amp
-	unsigned short 	InputCurrentL3;		//abcd=abc.d amp
-	unsigned short 	PresentOutputVoltage;	//abcd=abc.d volt
-	unsigned short 	PresentOutputCurrent;	//abcd=abc.d amp
-	unsigned short 	AvailableCurrent;		//abcd=abc.d amp
-	unsigned int 		AvailablePower;		//Watt
-	char 				CriticalTemp1;			//0x00: -60¢XC  ~  0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
-	char 				CriticalTemp2;			//0x00: -60¢XC  ~  0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
-	char 				CriticalTemp3;			//0x00: -60¢XC  ~  0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
-	char 				ExletTemp;			//0x00: -60¢XC  ~  0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
-	char 				InletTemp_1;			//0x00: -60¢XC  ~  0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
-	char 				InletTemp_2;			//0x00: -60¢XC  ~  0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
-	char 				InletTemp;			//0x00: -60¢XC  ~  0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
-	char 				OutletTemp;			//0x00: -60¢XC  ~  0xFE: 194¢XC, resolution: 1¢XC, offset: -60¢XC, 0xFF: invalid
-	unsigned int 		AlarmCode;
-	unsigned int 		FaultCode;			//
-};
-
-/*Following are the information for each PSU Group*/
-struct PsuGroupData
-{
-	unsigned char 			GroupPresentPsuQuantity;
-	unsigned char 			GroupOutputPowerSwitch;		//0: D.D normal OFF,  1: D.D emergency OFF,  2: D.D ON
-	unsigned short 		GroupTargetOutputVoltage;		//abcd=abc.d volt
-	unsigned short 		GroupTargetOutputCurrent;		//abcd=abc.d amp
-	unsigned short 		GroupAvailableCurrent;			//abcd=abc.d amp
-	unsigned int 			GroupAvailablePower;			//Watt
-	unsigned short 		GroupPresentOutputVoltage; 	//abcd=abc.d volt
-	unsigned short 		GroupPresentOutputCurrent;		//abcd=abc.d Amps
-	struct PsuModuleData 	PsuModule[MAX_PSU_QUANTITY];
-};
-
-/*Following is the information for system all PSU*/
-struct PsuData
-{
-	unsigned char 			SystemPresentPsuQuantity;
-	struct PsuGroupData 	PsuGroup[4];
-	unsigned char 			GroupCount;
-	unsigned char 			Work_Step;
-	unsigned char 			NeedBackTest;
-};
-
-/************************************************************************************/
-/**************************CHAdeMO protocol Share memory*********************/
-/**************************************************************************************/
-struct CHAdeMOEvData
-{
-	unsigned char  SupportDynamicControl;	//110.0
-										//					bit0=1:supported
-	unsigned char  SupportHighCurrent;		//110.0
-										//					bit1=1:supported
-	unsigned char  MiniChargeCurrent;		//100.0				0~200(A) (unit:1A)
-										//					0x00: request for current equivalent to 1.5kW
-										//					0x01: no request
-										//					0x02: request of 1A and following are the same rule
-	unsigned short MaxiBatteryVoltage;		//100.5,100.4 			0~600(V) (unit:1V)
-	unsigned short MaxiChargingTime;			//101.2,101.1			10(sec.)~255(min.)	(Unit:sec)
-										//					Set 0xFF to 101.1 (Unit: 10sec) in case 101.2 (Unit: 1min) is used
-	unsigned char  EstimatChargingTime;		//101.3				0~254(min.)	(Unit:sec)
-										//					Display Only
-	unsigned short TotalBatteryCapacity;		//101.6,101.5 			0.1~6553.5(kWh)	(unit:0.1 kWh)
-	unsigned char  ProtocolVersion;			//102.0				0~255
-										//					0x02: CHAdeMO specification ver.1.2
-	unsigned short TargetBatteryVoltage;		//102.2,102.1 			0~600(V) (unit:1V)
-	unsigned short ChargingCurrentRequest;	//102.3				0~200(A) (unit:1A)
-										//110.2,110.1 			0~1023(A) (unit:1A)
-	unsigned char  BatteryAlarm;				//102.4				>0:alarm
-										//					bit0=1:Battery overvoltage
-										//					bit1=1:Battery undervoltage
-										//					bit2=1:Battery current deviation error
-										//					bit3=1:High battery temperature
-										//					bit4=1:Battery voltage deviation error
-	unsigned char  EvDetection;				//102.5
-										//					bit0=0:Vehicle charging disabled,	(stop charging)
-										//					bit0=1:Vehicle charging enabled,
-										//					bit1=0:¡§Parking¡¨ position
-										//					bit1=1:other position				(stop charging)
-										//					bit2=0:Charging system normal
-										//					bit2=1:Charging system error		(stop charging)
-										//					bit3=0:EV contactor close or during welding detection
-										//					bit3=1:EV contactor open or termination of welding detection (stop charging)
-										//					bit4=0:No stop request before charging
-										//					bit4=1:Normal stop request before charging	(stop charging)
-	unsigned char  SOC;					//102.6				0~100(%) (unit:%)
-										//					Display Only
-	unsigned char  Communicating;			//					it is true if receive EV CAN message within every 1500ms
-	unsigned char  PresentMsgFlowStatus;	//
-};
-
-struct CHAdeMOEvseData
-{
-	unsigned char 	SelfTest_Comp;
-	unsigned char	version[16];									//Chademo firmware version
-	unsigned char  SupportDynamicControl;	//118.0
-										//					bit0=1:supported
-	unsigned char  SupportHighCurrent;		//118.0
-										//					bit1=1:supported
-	unsigned short  AvailableOutputVoltage;	//108.2,108.1 			0~600(V) (unit:1V)
-	unsigned short  AvailableOutputCurrent;	//108.3				0~255(A) (unit:1A)
-										//118.2,118.1 			0~1023(A) (unit:1A)
-	unsigned short  ThresholdVoltage;			//108.5,108.4 			0~600(V) (unit:1V)
-	unsigned char   ConnectorTemperatureP;	//108.6				-40~215(degC) (unit:degC) //value 0=-40	[NISSAN customized]
-	unsigned char   ConnectorTemperatureN;	//108.7				-40~215(degC) (unit:degC) //value 0=-40	[NISSAN customized]
-	unsigned char   ProtocolVersion;			//109.0				0~255
-										//					0x00: CHAdeMO specification 0.9 and earlier
-										//					0x01: CHAdeMO specification 0.9 and 0.9.1
-										//					0x02: CHAdeMO specification 1.0.0, 1.0.1, 1.1 and 1.2
-	unsigned short  PresentOutputVoltage;		//109.2,109.1	 		0~600(V) (unit:1V)
-	unsigned short   PresentOutputCurrent;		//109.3				0~255(A) (unit:1A)
-										//118.4,118.3			0~1023(A) (unit:1A)
-	unsigned char   EvseDetection;			//109.5
-										//					bit0=0:not charging state now
-										//					bit0=1:charging state now
-										//					bit1=0:EVSE normal
-										//					bit1=1:EVSE error
-										//					bit2=0:Not Energizing state
-										//					bit2=1:Energizing state
-										//					bit3=0:No Battery incompatibility
-										//					bit3=1:Battery incompatibility
-										//					bit4=0:No Charging system error
-										//					bit4=1:Charging system error
-										//					bit5=0:No Charging stop control
-										//					bit5=1:Charging stop control
-	unsigned short RemainChargingTime;		//109.7,109.6			10(sec.)~255(min.)	(Unit:sec)
-										//					Set 0xFF to 109.6 (Unit: 10sec) in case 109.7 (Unit: 1min) is used
-	unsigned char  HighPowerCondition;		//118.5
-										//					bit0=0:Present charging current H¡¦118.3,H¡¦118.4¡¨ is less than or equal to rated current of a charging cable
-										//					bit0=1:Present charging current H¡¦118.3,H¡¦118.4¡¨ is exceeds to rated current of a charging cable
-										//					bit1=1:charging cable Cooling function Operating Installed
-										//					bit2=1:charging cable Current limiting function
-										//					bit3=1:charging connector Cooling function Operating
-										//					bit4=1:charging connector Current limiting function Installed
-										//					bit5=1:charging connector Over-temperature protection Installed
-										//					bit6=1:Functional safety Applied
-	unsigned int 	MaxiGroupPower;			//					XXXXXXXX (Unit:Watt)depend on which group to be used
-	unsigned int 	MaxiGroupCurrent;			//					XXXXXXXX (unit:1A)depend on which group to be used
-	unsigned short  ApplyOutputVoltage;		// 					0~600(V) (unit:1V)
-	unsigned short  ElapseChargingTime;		//					(Unit:sec)
-	unsigned short  ElapseEnergy;				//					(Unit:10xkWh)
-	unsigned char	EvboardStatus;			// 	0 : init
-};
-
-struct CHAdeMOData
-{
-	struct CHAdeMOEvData 		ev[CHAdeMO_QUANTITY];
-	struct CHAdeMOEvseData 	evse[CHAdeMO_QUANTITY];
-};
-
-
-/************************************************************************************/
-/**************************CCS protocol Share memory***************************/
-/**************************DIN70121: 201412***************************************/
-/**************************ISO15118_2014: 2014************************************/
-/**************************ISO15118_2018: 2018************************************/
-/************************************************************************************/
-typedef enum boolean { FALSE, TRUE } BOOL;
-enum ResponseCodeType_DIN70121		{ OK_DIN70121 = 0, OK_NewSessionEstablished_DIN70121 = 1, OK_OldSessionJoined_DIN70121 = 2, OK_CertificateExpiresSoon_DIN70121 = 3,
-									   FAILED_DIN70121 = 4, FAILED_SequenceError_DIN70121 = 5, FAILED_ServiceIDInvalid_DIN70121 = 6, FAILED_UnknownSession_DIN70121 = 7,
-									   FAILED_ServiceSelectionInvalid_DIN70121 = 8, FAILED_PaymentSelectionInvalid_DIN70121 = 9, FAILED_CertificateExpired_DIN70121 = 10,
-									   FAILED_SignatureError_DIN70121 = 11, FAILED_NoCertificateAvailable_DIN70121 = 12, FAILED_CertChainError_DIN70121 = 13, FAILED_ChallengeInvalid_DIN70121 = 14,
-									   FAILED_ContractCanceled_DIN70121 = 15, FAILED_WrongChargeParameter_DIN70121 = 16, FAILED_PowerDeliveryNotApplied_DIN70121 = 17,
-									   FAILED_TariffSelectionInvalid_DIN70121 = 18, FAILED_ChargingProfileInvalid_DIN70121 = 19, FAILED_EVSEPresentVoltageToLow_DIN70121 = 20,
-									   FAILED_MeteringSignatureNotValid_DIN70121 = 21, FAILED_WrongEnergyTransferType_DIN70121 = 22};
-enum ResponseCodeType_ISO15118_2014	{ OK_ISO15118_2014 = 0, OK_NewSessionEstablished_ISO15118_2014 = 1, OK_OldSessionJoined_ISO15118_2014 = 2, OK_CertificateExpiresSoon_ISO15118_2014 = 3,
-									   FAILED_ISO15118_2014 = 4, FAILED_SequenceError_ISO15118_2014 = 5, FAILED_ServiceIDInvalid_ISO15118_2014 = 6, FAILED_UnknownSession_ISO15118_2014 = 7,
-									   FAILED_ServiceSelectionInvalid_ISO15118_2014 = 8, FAILED_PaymentSelectionInvalid_ISO15118_2014 = 9, FAILED_CertificateExpired_ISO15118_2014 = 10,
-									   FAILED_SignatureError_ISO15118_2014 = 11, FAILED_NoCertificateAvailable_ISO15118_2014 = 12, FAILED_CertChainError_ISO15118_2014 = 13, FAILED_ChallengeInvalid_ISO15118_2014 = 14,
-									   FAILED_ContractCanceled_ISO15118_2014 = 15, FAILED_WrongChargeParameter_ISO15118_2014 = 16, FAILED_PowerDeliveryNotApplied_ISO15118_2014 = 17,
-									   FAILED_TariffSelectionInvalid_ISO15118_2014 = 18, FAILED_ChargingProfileInvalid_ISO15118_2014 = 19, FAILED_MeteringSignatureNotValid_ISO15118_2014 = 20,
-									   FAILED_NoChargeServiceSelected_ISO15118_2014 = 21, FAILED_WrongEnergyTransferMode_ISO15118_2014 = 22, FAILED_ContactorError_ISO15118_2014 = 23,
-									   FAILED_CertificateNotAllowedAtThisEVSE_ISO15118_2014 = 24, FAILED_CertificateRevoked_ISO15118_2014 = 25  };
-enum ResponseCodeType_ISO15118_2018	{ OK_ISO15118_2018 = 0, OK_NewSessionEstablished_ISO15118_2018 = 1, OK_OldSessionJoined_ISO15118_2018 = 2, OK_CertificateExpiresSoon_ISO15118_2018 = 3,
-									   OK_IsolationValid_ISO15118_2018 = 4, OK_IsolationWarning_ISO15118_2018 = 5, WARNING_CertificateExpired_ISO15118_2018 = 6, WARNING_NoCertificateAvailable_ISO15118_2018 = 7,
-									   WARNING_CertValidationError_ISO15118_2018 = 8, WARNING_CertVerificationError_ISO15118_2018 = 9, WARNING_ContractCanceled_ISO15118_2018 = 10,
-									   FAILED_ISO15118_2018 = 11, FAILED_SequenceError_ISO15118_2018 = 12, FAILED_ServiceIDInvalid_ISO15118_2018 = 13, FAILED_UnknownSession_ISO15118_2018 = 14,
-									   FAILED_ServiceSelectionInvalid_ISO15118_2018 = 15, FAILED_SignatureError_ISO15118_2018 = 16, FAILED_IdentificationSelectionInvalid_ISO15118_2018 = 17,
-									   FAILED_ChallengeInvalid_ISO15118_2018 = 18, FAILED_WrongChargeParameter_ISO15118_2018 = 19, FAILED_IsolationFault_ISO15118_2018 = 20,
-									   FAILED_PowerDeliveryNotApplied_ISO15118_2018 = 21, FAILED_TariffSelectionInvalid_ISO15118_2018 = 22, FAILED_ChargingProfileInvalid_ISO15118_2018 = 23,
-									   FAILED_MeteringSignatureNotValid_ISO15118_2018 = 24, FAILED_NoChargeServiceSelected_ISO15118_2018 = 25, FAILED_WrongEnergyTransferMode_ISO15118_2018 = 26,
-									   FAILED_ContactorError_ISO15118_2018 = 27, FAILED_CertificateRevoked_ISO15118_2018 = 28, FAILED_CertificateNotYetValid_ISO15118_2018 = 29 };
-enum EVSENotificationType		 		{ None = 0, StopCharging = 1, ReNegotiation = 2};
-enum ServiceCategoryType 				{ EVCharging = 0, Internet = 1, ContractCertificate = 2, OtherCustom = 3};
-enum PaymentOptionType 		      		{ Contract = 0, ExternalPayment = 1};
-/*enum EVSESupportedEnergyTransferType 	{ AC_single_phase_core = 0, AC_three_phase_core = 1, DC_core = 2, DC_extended = 3,
-									  DC_combo_core = 4, DC_dual = 5, AC_core1p_DC_extended = 6, AC_single_DC_core = 7,
-									  AC_single_phase_three_phase_core_DC_extended = 8, AC_core3p_DC_extended = 9};*/
-enum EnergyTransferModeType			{ AC_single_phase_core = 0, AC_three_phase_core = 1, DC_core = 2, DC_extended = 3,
-									  DC_combo_core = 4, DC_unique = 5};
-//enum identificationOptionType 			{ Contract = 0, ExternalIdentification = 1};
-enum unitSymbolType_DIN70121			{ h_DIN70121 = 0, m_DIN70121 = 1, s_DIN70121 = 2, A_DIN70121 = 3, Ah_DIN70121 = 4, V_DIN70121 = 5, VA_DIN70121 = 6, W_DIN70121 = 7, Ws_DIN70121 = 8, Wh_DIN70121 = 9};
-enum unitSymbolType_ISO15118_2014		{ h_ISO15118_2014 = 0, m_ISO15118_2014 = 1, s_ISO15118_2014 = 2, A_ISO15118_2014 = 3, V_ISO15118_2014 = 4, W_ISO15118_2014 = 5, Wh_ISO15118_2014 = 6};
-enum ProcessingType					{ Finished = 0, Ongoing = 1, Ongoing_WaitingForCustomerInteraction = 2};
-enum EVSEProcessingType_DIN70121		{ Finished_DIN70121 = 0, Ongoing_DIN70121 = 1};
-enum EVSEProcessingType_ISO15118_2014	{ Finished_ISO15118_2014 = 0, Ongoing_ISO15118_2014 = 1, Ongoing_WaitingForCustomerInteraction_ISO15118_2014=2 };
-enum DC_EVErrorCodeType 		  		{ NO_ERROR = 0, FAILED_RESSTemperatureInhibit = 1, FAILED_EVShiftPosition = 2, FAILED_ChargerConnectorLockFault = 3,
-									  FAILED_EVRESSMalfunction = 4, FAILED_ChargingCurrentdifferential = 5, FAILED_ChargingVoltageOutOfRange = 6,
-									  Reserved_A = 7, Reserved_B = 8, Reserved_C = 9, FAILED_ChargingSystemIncompatibility = 10, NoData = 11};
-enum IsolationLevelType_DIN70121 		{ Invalid_DIN70121 = 0, Valid_DIN70121 = 1, Warning_DIN70121 = 2, Fault_DIN70121 = 3};
-enum IsolationLevelType_ISO15118_2014		{ Invalid_ISO15118_2014 = 0, Valid_ISO15118_2014 = 1, Warning_ISO15118_2014 = 2, Fault_ISO15118_2014 = 3, No_IMD_ISO15118_2014	 = 4};
-enum DC_EVSEStatusCodeType			{ EVSE_NotReady = 0, EVSE_Ready = 1, EVSE_Shutdown = 2, EVSE_UtilityInterruptEvent = 3,
-						 			  EVSE_IsolationMonitoringActive = 4, EVSE_EmergencyShutdown = 5, EVSE_Malfunction = 6,
-						 			  Reserved_8 = 7, Reserved_9 = 8};
-enum ScheduleOriginType				{ EV = 0, SA = 1};
-enum ChargeProgressType_ISO15118_2014	{start_ISO15118_2014 = 0, Stop_ISO15118_2014 = 1, Renegotiate_ISO15118_2014 = 2};
-enum ChargeProgressType_ISO15118_2018	{start_ISO15118_2018 = 0, Renegotiate_ISO15118_2018 = 1, Standby_ISO15118_2018 = 2, Stop_ISO15118_2018 = 3};
-enum evOperationType					{Charge = 0, Discharge = 1, Standby = 2};
-enum mechanicalChargingDeviceStatusType {Home = 0, Moving = 1, EndPosition = 2};
-enum EV_CP_StatusType					{A = 0, B = 1, C = 2, D = 3, E = 4, F = 5};
-enum EV_Error_Status_CodeType			{ No_EV_Error = 0, EV_FAILED_EmergencyEvent = 1, EV_FAILED_Breaker = 2, EV_FAILED_RESSTemperatureInhibit = 3,
-						 			  EV_FAILED_RESS = 4, EV_FAILED_ChargingCurrentDifferential = 5, EV_FAILED_ChargingVoltageOutOfRange = 6,
-						 			  Reserved_by_ISO_1 = 7,  Reserved_by_ISO_2 = 8, Reserved_by_ISO_3 = 9, OEM1 = 10,
-						 			  OEM2 = 11,  OEM3 = 12, OEM4 = 13};
-enum IsolationStatusType				{ Invalid = 0, Safe = 1, Warning = 2, Fault = 3};
-enum ChargingSessionType				{ Terminate = 0, Pause = 1};
-enum CostKindType						{ relativePricePercentage = 0, RenewableGenerationPercentage = 1, CarbonDioxideEmission = 2};
-
-
-
-struct PhysicalValueType_DIN70121 				//The final physical value is determined by: Value * 10 ^ Multiplier [Unit]
-{
-	int									Multiplier;			//range: -3..+3
-	enum unitSymbolType_DIN70121			Unit;
-	short 								Value;
-};
-struct PhysicalValueType_ISO15118_2014			//The final physical value is determined by: Value * 10 ^ Multiplier [Unit]
-{
-	int									Multiplier;			//range: -3..+3
-	enum unitSymbolType_ISO15118_2014		Unit;
-	short 								Value;
-};
-struct PhysicalValueType_ISO15118_2018			//The final physical value is determined by: Value * 10 ^ Exponent [Unit]
-{
-	int									Exponent;		//range: -3..+3
-	short 								Value;
-};
-struct AppProtocolType
-{
-	unsigned char	ProtocolNamespace[100];
-	unsigned int	VersionNumberMajor;
-	unsigned int	VersionNumberMinor;
-	unsigned char	SchemaID;
-	unsigned char	Priority;					//range 1..20
-};
-struct ACD_SSEnergyTransferModeType
-{
-	unsigned char	EVID[20];
-};
-struct EVSEStatusType
-{
-	unsigned short				NotificationMaxDelay;	//in seconds
-	enum EVSENotificationType	EVSENotification;
-};
-struct ServiceIDListType
-{
-	unsigned short	ServiceID[10];	//refer to chapter 8.6.2.1 Table 192
-};
-struct PaymentOptionListType
-{
-	enum PaymentOptionType	PaymentOption[2];
-};
-struct ServiceTagType
-{
-	unsigned short				ServiceID;
-	unsigned char				ServiceName[32];//Optional Element
-	enum ServiceCategoryType	ServiceCategory;
-	unsigned char				ServiceScope[32];//Optional Element
-};
-struct ServiceType_DIN70121
-{
-	struct ServiceTagType		ServiceTag;
-	BOOL					FreeService;
-};
-struct ServiceType_ISO15118_2014
-{
-	unsigned short				ServiceID;
-	unsigned char				ServiceName[32];	//Optional
-	enum ServiceCategoryType	ServiceCategory;
-	unsigned char				ServiceScope[64];	//Optional
-	BOOL					FreeService;
-};
-/*struct ServiceType_ISO15118_2018
-{
-	unsigned short				ServiceID;
-	BOOL					FreeService;
-}; */
-struct SupportedEnergyTransferModeType
-{
-	enum EnergyTransferModeType	EnergyTransferMode[6];
-};
-struct ServiceChargeType
-{
-	struct ServiceType_DIN70121				Services;
-	//enum EVSESupportedEnergyTransferType		EnergyTransferType;
-	enum EnergyTransferModeType			EnergyTransferType;
-};
-
-struct ChargeServiceType
-{
-	struct ServiceType_ISO15118_2014			Services;
-	struct SupportedEnergyTransferModeType	SupportedEnergyTransferMode;
-};
-struct ServiceListType
-{
-	struct ServiceType_ISO15118_2014			Service[8];
-};
-struct IdentificationOptionListType
-{
-	enum PaymentOptionType				IdentificationOption[2];
-};
-struct ParameterType
-{
-	unsigned char							Name[32];
-	struct PhysicalValueType_ISO15118_2014		PhysicalValue_ISO15118_2014;
-	struct PhysicalValueType_ISO15118_2018		PhysicalValue_ISO15118_2018;
-};
-struct ParameterSetType
-{
-	short 				ParameterSetID;
-	struct ParameterType	Parameter[16];
-};
-struct ServiceParameterListType
-{
-	struct ParameterSetType		ParameterSet[255];
-};
-struct WPT_SDlEnergyTransferModeType
-{
-	struct ServiceParameterListType	ServiceParameterList;
-};
-struct SelectedServiceType
-{
-	unsigned short			ServiceID;
-	short					ParameterSetID;
-};
-struct SelectedServiceListType
-{
-	struct SelectedServiceType	SelectedService[16];
-};
-
-struct CertificateChainType
-{
-	unsigned char 				Id[32];				//Optional
-	unsigned char 				Certificate[800];		//check size again
-	unsigned char				SubCertificates[4][800];	//Optional, 	check size again
-};
-struct PNC_AReqIdentificationModeType
-{
-	unsigned char 			GenChallenge[16];					//DIN70121=> None,	ISO15118_2014=>None,	ISO15118_2018=>Optional
-	unsigned char 			Id[32];							//DIN70121=> None,	ISO15118_2014=>None,	ISO15118_2018=>Optional
-};
-struct AC_EVChargeParameterType
-{
-	unsigned int 								DepartureTime;		//Optional
-	struct PhysicalValueType_ISO15118_2014			EAmount;
-	struct PhysicalValueType_ISO15118_2014			EVMaxVoltage;
-	struct PhysicalValueType_ISO15118_2014			EVMaxCurrent;
-	struct PhysicalValueType_ISO15118_2014			EVMinCurrent;
-};
-struct DC_EVStatusType_DIN70121
-{
-	BOOL						EVReady;
-	BOOL						EVCabinConditioning;
-	BOOL						EVRESSConiditioning;
-	enum DC_EVErrorCodeType		EVErrorCode;
-	unsigned char 					EVRESSSOC;		/*0-100 percentage*/
-};
-struct DC_EVChargeParameterType_DIN70121
-{
-	struct DC_EVStatusType_DIN70121			DC_EVStatus;
-	struct PhysicalValueType_DIN70121		EVMaximumCurrentLimit;
-	struct PhysicalValueType_DIN70121		EVMaximumPowerLimit;			//Optional
-	struct PhysicalValueType_DIN70121		EVMaximumVoltageLimit;
-	struct PhysicalValueType_DIN70121		EVEnergyCapacity;				//Optional
-	struct PhysicalValueType_DIN70121		EVEnergyRequest;				//Optional
-	unsigned char							FullSOC;/*0-100 percentage*/	//Optional
-	unsigned char							BulkSOC;/*0-100 percentage*/	//Optional
-};
-struct DC_EVStatusType_ISO15118_2014
-{
-	BOOL						EVReady;
-	enum DC_EVErrorCodeType		EVErrorCode;
-	unsigned char 					EVRESSSOC;		/*0-100 percentage*/
-};
-struct DC_EVChargeParameterType_ISO15118_2014
-{
-	unsigned int 								DepartureTime;				//Optional
-	struct DC_EVStatusType_ISO15118_2014			DC_EVStatus;
-	struct PhysicalValueType_ISO15118_2014 			EVMaximumCurrentLimit;
-	struct PhysicalValueType_ISO15118_2014			EVMaximumPowerLimit;			//Optional
-	struct PhysicalValueType_ISO15118_2014			EVMaximumVoltageLimit;
-	struct PhysicalValueType_ISO15118_2014			EVEnergyCapacity;				//Optional
-	struct PhysicalValueType_ISO15118_2014			EVEnergyRequest;				//Optional
-	unsigned char								FullSOC;/*0-100 percentage*/		//Optional
-	unsigned char								BulkSOC;/*0-100 percentage*/	//Optional
-};
-struct Dynamic_CPDReqControlModeType
-{
-	unsigned int 								DepartureTime;
-};
-struct RelativeTimeIntervalType
-{
-	unsigned int 	duration;			//Optional
-	unsigned int	start;
-};
-struct PMaxScheduleEntryType
-{
-	struct RelativeTimeIntervalType	RelativeTimeInterval;
-	unsigned short					PMax;
-};
-struct PMaxScheduleType
-{
-	unsigned short					PMaxScheduleID;			//no this itme in ISO15118_2014
-	struct PMaxScheduleEntryType		PMaxScheduleEntry[1024];
-};
-struct CostType
-{
-	unsigned int 					amount;
-	enum CostKindType				costKind;
-	int 							amountMultiplier;		//Optional , range: -3..+3
-};
-struct ConsumptionCostType
-{
-	struct CostType						Cost[3];
-	struct PhysicalValueType_ISO15118_2014		startValue;
-};
-struct SalesTariffEntryType
-{
-	struct RelativeTimeIntervalType	RelativeTimeInterval;
-	unsigned char 					EPriceLevel;			//Optional
-	struct ConsumptionCostType		ConsumptionCost[3];	//Optional
-};
-struct SalesTariffType
-{
-	unsigned char 					Id[32];					//Optional
-	short 						SalesTariffID;
-	unsigned char 					SalesTariffDescription[32];	//Optional
-	unsigned char 					NumEPriceLevels;			//Optional
-	struct SalesTariffEntryType			SalesTariffEntry[1024];
-};
-struct SAScheduleTupleType
-{
-	short 						SAScheduleTupleID;
-	struct PMaxScheduleType			PMaxSchedule;
-	struct SalesTariffType				SalesTariff;				//Optional
-};
-struct ScheduleListType
-{
-	enum ScheduleOriginType					ScheduleOrigin;
-	struct SAScheduleTupleType					ScheduleTuple[3];
-};
-struct Scheduled_CPDReqControlModeType
-{
-	enum ProcessingType						EVProcessing;
-	unsigned int 								DepartureTime;		//Optional
-	unsigned short 							MaxSupportingPoints;
-	struct ScheduleListType						ScheduleList;			//Optional
-};
-struct AC_CPDReqEnergyTransferModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVTargetEnergyRequest;			//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMaximumEnergyRequest;		//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMinimumEnergyRequest;		//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMaximumChargePower;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumChargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVMinimumChargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumVoltage;
-};
-struct DC_CPDReqEnergyTransferModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVMaximumChargePower;			//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMinimumChargePower;			//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMaximumChargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVMinimumChargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumVoltage;
-	struct PhysicalValueType_ISO15118_2018			EVTargetEnergyRequest;				//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMaximumEnergyRequest;			//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMinimumEnergyRequest;			//Optional
-	unsigned char								TargetSOC;						//Optional
-	unsigned char								BulkSOC;							//Optional
-};
-struct BPT_AC_CPDReqEnergyTransferModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVMaximumChargePower;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumDischargePower;
-	struct PhysicalValueType_ISO15118_2018			EVMinimumDischargePower;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumChargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumDischargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVMinimumChargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVMinimumDischargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVTargetEnergyRequest;				//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMinimumEnergyRequest;			//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMaximumEnergyRequest;			//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMaximumVoltage;
-};
-struct BPT_DC_CPDReqEnergyTransferModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVMaximumChargePower;
-	struct PhysicalValueType_ISO15118_2018			EVMinimumChargePower;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumDischargePower;
-	struct PhysicalValueType_ISO15118_2018			EVMinimumDischargePower;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumChargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVMinimumChargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumDischargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVMinimumDischargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumVoltage;
-	struct PhysicalValueType_ISO15118_2018			EVMinimumVoltage;
-	struct PhysicalValueType_ISO15118_2018			EVTargetEnergyRequest;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumEnergyRequest;
-	struct PhysicalValueType_ISO15118_2018			EVMinimumEnergyRequest;
-	unsigned char								TargetSOC;					//Optional
-	unsigned char								BulkSOC;						//Optional
-};
-struct WPT_CPDReqEnergyTransferModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVMaximumPower;				//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMinimumPower;				//Optional
-	struct PhysicalValueType_ISO15118_2018			EVTargetEnergyRequest;			//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMaximumEnergyRequest;		//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMinimumEnergyRequest;		//Optional
-};
-struct ACD_CPDReqEnergyTransferModeType
-{
-	//cannot be found in standard
-};
-struct SAScheduleListType
-{
-	struct SAScheduleTupleType		SAScheduleTuple[3];
-};
-struct DC_EVSEStatusType_DIN70121
-{
-	enum IsolationLevelType_DIN70121			EVSEIsolationStatus;			//Optional
-	enum DC_EVSEStatusCodeType			EVSEStatusCode;
-	unsigned int							NotificationMaxDelay;
-	enum EVSENotificationType				EVSENotification;
-};
-struct DC_EVSEChargeParameterType_DIN70121
-{
-	struct DC_EVSEStatusType_DIN70121		DC_EVSEStatus;
-	struct PhysicalValueType_DIN70121			EVSEMaximumCurrentLimit;
-	struct PhysicalValueType_DIN70121			EVSEMaximumPowerLimit;			//Optional
-	struct PhysicalValueType_DIN70121			EVSEMaximumVoltageLimit;
-	struct PhysicalValueType_DIN70121			EVSEMinimumCurrentLimit;
-	struct PhysicalValueType_DIN70121			EVSEMinimumVoltageLimit;
-	struct PhysicalValueType_DIN70121			EVSECurrentRegulationTolerance;		//Optional
-	struct PhysicalValueType_DIN70121			EVSEPeakCurrentRipple;
-	struct PhysicalValueType_DIN70121			EVSEEnergyToBeDelivered;			//Optional
-};
-struct AC_EVSEStatusType
-{
-	BOOL							  		RCD;
-	unsigned short 							NotificationMaxDelay;
-	enum EVSENotificationType					EVSENotification;		//need to be confirmed
-};
-struct AC_EVSEChargeParameterType
-{
-	struct AC_EVSEStatusType					AC_EVSEStatus;
-	struct PhysicalValueType_ISO15118_2014			EVSENominalVoltage;
-	struct PhysicalValueType_ISO15118_2014			EVSEMaxCurrent;
-};
-struct DC_EVSEStatusType_ISO15118_2014
-{
-	unsigned short								NotificationMaxDelay;
-	enum EVSENotificationType					EVSENotification;
-	enum IsolationLevelType_ISO15118_2014			EVSEIsolationStatus;					//Optional
-	enum DC_EVSEStatusCodeType				DC_EVSEStatusCode;
-};
-struct DC_EVSEChargeParameterType_ISO15118_2014
-{
-	struct DC_EVSEStatusType_ISO15118_2014		DC_EVSEStatus;
-	struct PhysicalValueType_ISO15118_2014			EVSEMaximumCurrentLimit;
-	struct PhysicalValueType_ISO15118_2014			EVSEMaximumPowerLimit;
-	struct PhysicalValueType_ISO15118_2014			EVSEMaximumVoltageLimit;
-	struct PhysicalValueType_ISO15118_2014			EVSEMinimumCurrentLimit;
-	struct PhysicalValueType_ISO15118_2014			EVSEMinimumVoltageLimit;
-	struct PhysicalValueType_ISO15118_2014			EVSECurrentRegulationTolerance;		//Optional
-	struct PhysicalValueType_ISO15118_2014			EVSEPeakCurrentRipple;
-	struct PhysicalValueType_ISO15118_2014			EVSEEnergyToBeDelivered;			//Optional
-};
-struct Scheduled_CPDResControlModeType
-{
-	struct ScheduleListType						ScheduleList;
-};
-struct AC_CPDResEnergyTransferModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumChargeCurrent[3];
-	struct PhysicalValueType_ISO15118_2018			EVSENominalVoltage;
-	struct PhysicalValueType_ISO15118_2018			EVSENominalFrequency;
-};
-struct DC_CPDResEnergyTransferModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumChargePower;
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumChargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVSEMinimumChargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumVoltage;
-	struct PhysicalValueType_ISO15118_2018			EVSEMinimumVoltage;
-};
-struct BPT_AC_CPDResEnergyTransferModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumChargeCurrent[3];
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumDischargeCurrent[3];
-	struct PhysicalValueType_ISO15118_2018			EVSENominalVoltage;
-	struct PhysicalValueType_ISO15118_2018			EVSENominalFrequency;
-};
-struct BPT_DC_CPDResEnergyTransferModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumChargePower;
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumDischargePower;
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumChargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumDischargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVSEMinimumChargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVSEMinimumDischargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumVoltage;
-	struct PhysicalValueType_ISO15118_2018			EVSEMinimumVoltage;
-};
-struct WPT_CPDResEnergyTransferModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumPower;
-	struct PhysicalValueType_ISO15118_2018			EVSEMinimumPower;
-};
-struct ACD_CPDResEnergyTransferModeType
-{
-	//not found in ISO15118_2018
-};
-struct ProfileEntryType_DIN70121
-{
-	unsigned int 				ChargingProfileEntryStart;
-	short						ChargingProfileEntryMaxPower;
-};
-struct ChargingProfileType_DIN70121
-{
-	short 							SAScheduleTupleID;
-	struct ProfileEntryType_DIN70121		ProfileEntry[24];
-};
-struct DC_EVPowerDeliveryParameterType_DIN70121
-{
-	struct DC_EVStatusType_DIN70121			DC_EVStatus;
-	BOOL								BulkChargingComplete;		//Optional
-	BOOL								ChargingComplete;
-};
-struct ProfileEntryType_ISO15118_2014
-{
-	unsigned int 								ChargingProfileEntryStart;
-	struct PhysicalValueType_ISO15118_2018			ChargingProfileEntryMaxPower;
-	unsigned char 								ChargingProfileEntryMaxNumberOfPhasesInUse;	//Optional
-};
-struct ChargingProfileType_ISO15118_2014
-{
-	struct ProfileEntryType_ISO15118_2014			ProfileEntry[24];
-};
-struct DC_EVPowerDeliveryParameterType_ISO15118_2014
-{
-	struct DC_EVStatusType_ISO15118_2014 			DC_EVStatus;
-	BOOL									BulkChargingComplete;		//Optional
-	BOOL									ChargingComplete;
-};
-struct TimeInterval
-{
-	unsigned int 								start;
-	unsigned int 								duration;				//Optional
-};
-struct PowerScheduleEntryType
-{
-	struct TimeInterval							TimeInterval;
-	struct PhysicalValueType_ISO15118_2018			Power[3];
-};
-struct EVPowerProfileType
-{
-	struct PowerScheduleEntryType				EVPowerProfileEntry[2048];
-};
-struct Scheduled_PDReqControlModeType
-{
-	unsigned char 								ScheduleTupleID;
-	struct EVPowerProfileType					EVPowerProfile;
-};
-struct BPT_Scheduled_PDReqControlModeType
-{
-	unsigned char 								ScheduleTupleID;
-	struct EVPowerProfileType					EVPowerProfile;			//Optional
-	enum evOperationType						EVOperation;
-};
-struct ListOfRootCertificateIDsType
-{
-	unsigned char 								RootCertificateID[20][40];
-};
-struct ContractSignatureEncryptedPrivateKeyType
-{
-	unsigned char 								Id[32];
-};
-struct DiffieHellmanPublickeyType
-{
-	unsigned char 								Id[32];
-};
-struct ContractCertificateEncryptedPrivateKeyType
-{
-	unsigned char 								Id[32];
-};
-struct EVTechnicalStatusType
-{
-	BOOL									EV_Status_ReadyToCharge;
-	BOOL									EV_Status_ImmobilizationRequest;		//Optional
-	BOOL									EV_Status_Immobilized;
-	struct PhysicalValueType_ISO15118_2018			EV_Status_WLAN_Strength;
-	enum EV_CP_StatusType						EV_CP_Status;
-	unsigned char								EV_Status_RESSSOC;					//0~100%
-	enum EV_Error_Status_CodeType				EV_Error_Status_Code;
-	BOOL									EVSE_Timeout;
-};
-struct MeterInfoType_ISO15118_2014
-{
-	unsigned char								MeterID[32];
-	unsigned long 								MeterReading;						//Optional
-	unsigned char								SigMeterReading[64];				//Optional
-	short 									MeterStatus;						//Optional
-	short 									TMeter;							//Optional
-};
-struct Scheduled_MRReqControlModeType
-{
-	unsigned char 								ScheduleTupleID;
-};
-struct MeterInfoType_ISO15118_2018
-{
-	unsigned char								MeterID[32];
-	unsigned long 								MeterReadingWhCharged;			//Optional
-	unsigned long 								MeterReadingWhDischarged;			//Optional
-	unsigned long 								MeterReadingVARhLeading;			//Optional
-	unsigned long 								MeterReadingVARhLagging;			//Optional
-	unsigned char								SignatureMeterReading[64];			//Optional
-	short 									MeterStatus;						//Optional
-	short 									TimeStampMeter;					//Optional
-	BOOL									ReceiptRequired;					//Optional
-};
-struct PnC_CLReqIdentificationModeType
-{
-	BOOL									MeteringReceiptRequested;
-};
-struct Dynamic_CSReqControlModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVTargetEnergyRequest;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumEnergyRequest;
-	struct PhysicalValueType_ISO15118_2018			EVMinimumEnergyRequest;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumChargePower;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumChargeCurrent;
-	struct PhysicalValueType_ISO15118_2018			EVMinimumChargeCurrent;
-};
-struct Scheduled_CSReqControlModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVTargetEnergyRequest;				//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMaximumEnergyRequest;			//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMinimumEnergyRequest;			//Optional
-	BOOL									Standby;
-	struct PhysicalValueType_ISO15118_2018			EVMaximumChargePower;			//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMaximumChargeCurrent;			//Optional
-	struct PhysicalValueType_ISO15118_2018			EVMinimumChargeCurrent;			//Optional
-};
-struct DisplayParametersType
-{
-	unsigned short 							CurrentRange;
-	unsigned char	 							CurrentSOC;						//0~100%
-	unsigned char	 							MinimumSOC;						//0~100%
-	struct PhysicalValueType_ISO15118_2018			RemainingTimeToMaximumSOC;
-	struct PhysicalValueType_ISO15118_2018			RemainingTimeToTargetSOC;
-	struct PhysicalValueType_ISO15118_2018			RemainingTimeToBulkSOC;
-	struct PhysicalValueType_ISO15118_2018			RemainingTimeToMinimumSOC;
-	BOOL									ChargingComplete;
-	BOOL									BulkChargingComplete;
-	BOOL									InletHot;
-};
-struct PnC_CLResIdentificationModeType
-{
-	struct MeterInfoType_ISO15118_2018			MeterInfo;
-};
-struct Dynamic_CSResControlModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVSETargetActivePower;
-};
-struct Scheduled_CDResControlModeType
-{
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumChargePower;		//Optional
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumChargeCurrent;	//Optional
-	struct PhysicalValueType_ISO15118_2018			EVSEMaximumVoltage;			//Optional
-};
-struct LFA_EVFinePositioningSetupParametersType
-{
-	unsigned char 								NumberOfSensors;
-	//NOT complete yet,  to be continue.....
-};
-
-/****SupportedAppProtocolRequest****/
-struct SupportedAppProtocolRequest_DIN70121
-{
-	struct AppProtocolType	AppProtocol[20];
-};
-struct SupportedAppProtocolRequest_ISO15118_2014
-{
-	struct AppProtocolType	AppProtocol[20];
-};
-struct SupportedAppProtocolRequest_ISO15118_2018
-{
-	struct AppProtocolType	AppProtocol[20];
-};
-/****SupportedAppProtocolResponse****/
-struct SupportedAppProtocolResponse_DIN70121
-{
-	enum ResponseCodeType_DIN70121		ResponseCode;
-	unsigned char							SchemaID;				//Optional
-};
-struct SupportedAppProtocolResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014	ResponseCode;
-	unsigned char							SchemaID;				//Optional
-};
-struct SupportedAppProtocolResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018	ResponseCode;
-	unsigned char							SchemaID;					//Optional
-};
-/****SessionSetupRequest****/
-struct SessionSetupRequest_DIN70121
-{
-	unsigned char						EVCCID[8];						//the MAC address of the EVCC in Hex
-};
-struct SessionSetupRequest_ISO15118_2014
-{
-	unsigned char						EVCCID[8];						//the MAC address of the EVCC in Hex
-};
-struct SessionSetupRequest_ISO15118_2018
-{
-	unsigned char						EVCCID[8];						//the MAC address of the EVCC in Hex
-	struct ACD_SSEnergyTransferModeType	ACD_SSEnergyTransferMode;			//For ACD mandatory, optional for rest
-};
-/****SessionSetupResponse****/
-struct SessionSetupResponse_DIN70121
-{
-	enum ResponseCodeType_DIN70121		ResponseCode;
-	unsigned char							EVSEID[40];					//DIN70121=>Max length:32,	ISO15118=>min length:7, max length:37
-	unsigned int							EVSETimeStamp;				//EPOCH format, Optional
-};
-struct SessionSetupResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014	ResponseCode;
-	unsigned char							EVSEID[40];					//DIN70121=>Max length:32,	ISO15118=>min length:7, max length:37
-	unsigned int							EVSETimeStamp;				//EPOCH format, Optional
-};
-struct SessionSetupResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018	ResponseCode;
-	unsigned char							EVSEID[40];					//DIN70121=>Max length:32,	ISO15118=>min length:7, max length:37
-	struct EVSEStatusType					EVSEStatus;					//Optional
-};
-/****ServiceDiscoveryRequest****/
-struct ServiceDiscoveryRequest_DIN70121
-{
-	unsigned char				ServiceScope[32];		//Optional
-	enum ServiceCategoryType	ServiceCategory;		//Optional
-};
-struct ServiceDiscoveryRequest_ISO15118_2014
-{
-	unsigned char				ServiceScope[32];		//Optional
-	enum ServiceCategoryType	ServiceCategory;		//Optional
-};
-struct ServiceDiscoveryRequest_ISO15118_2018
-{
-	struct ServiceIDListType		SupportedServiceIDs;	//Optional
-};
-/****ServiceDiscoveryResponse****/
-struct ServiceDiscoveryResponse_DIN70121
-{
-	enum ResponseCodeType_DIN70121		ResponseCode;
-	struct PaymentOptionListType				PaymentOptions;
-	struct ServiceChargeType				ChargeService_DIN70121;
-};
-struct ServiceDiscoveryResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014	ResponseCode;
-	struct PaymentOptionListType				PaymentOptions;
-	struct ChargeServiceType				ChargeService;
-	struct ServiceListType					ServiceList;					//Optional
-};
-struct ServiceDiscoveryResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018	ResponseCode;
-	struct EVSEStatusType					EVSEStatus;					//Optional
-	struct IdentificationOptionListType			IdentificationOptionList;
-	struct ServiceListType					EnergyTransferServiceList;
-	struct ServiceListType					VASList;						//Optional
-};
-/****ServiceDetailRequest****/
-//Only in ISO15118_2014 and ISO15118_2018
-struct ServiceDetailRequest_ISO15118_2014
-{
-	unsigned short						ServiceID;
-};
-struct ServiceDetailRequest_ISO15118_2018
-{
-	unsigned short						ServiceID;
-	struct WPT_SDlEnergyTransferModeType	WPT_SDlEnergyTransferMode;
-};
-/****ServiceDetailResponse****/
-struct ServiceDetailResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014	ResponseCode;
-	unsigned short							ServiceID;
-	struct ServiceParameterListType 			ServiceParameterList;
-};
-struct ServiceDetailResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018	ResponseCode;
-	unsigned short							ServiceID;
-	struct ServiceParameterListType 			ServiceParameterList;
-	struct EVSEStatusType					EVSEStatus;					//Optional
-};
-/****ServiceAndPaymentSelectionRequest / ServiceSelectionRequest****/
-struct ServiceAndPaymentSelectionRequest_DIN70121
-{
-	enum PaymentOptionType		SelectedPaymentOption;
-	struct SelectedServiceListType		SelectedServiceList;
-};
-struct ServiceAndPaymentSelectionRequest_ISO15118_2014
-{
-	enum PaymentOptionType		SelectedPaymentOption;
-	struct SelectedServiceListType		SelectedServiceList;
-};
-struct ServiceSelectionRequest_ISO15118_2018
-{
-	enum PaymentOptionType			SelectedPaymentOption;
-	struct SelectedServiceType			SelectedEnergyTransferService;
-	struct SelectedServiceListType			SelectedVASList;
-	enum ProcessingType				EVProcessing;
-};
-/****ServiceAndPaymentSelectionResponse / ServiceSelectionResponse****/
-struct ServiceAndPaymentSelectionResponse_DIN70121
-{
-	enum ResponseCodeType_DIN70121		ResponseCode;
-};
-struct ServiceAndPaymentSelectionResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014	ResponseCode;
-};
-struct ServiceSelectionResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018	ResponseCode;
-	struct EVSEStatusType					EVSEStatus;					//Optional
-};
-/****PaymentDetailsRequest / IdentificationDetailsRequest****/
-struct PaymentDetailsRequest_ISO15118_2014
-{
-	unsigned char 					eMAID[16];
-	struct CertificateChainType		ContractSignatureCertChain;
-};
-struct IdentificationDetailsRequest_ISO15118_2018
-{
-	struct CertificateChainType		ContractSignatureCertChain;
-};
-/****PaymentDetailsResponse  / IdentificationDetailsResponse ****/
-struct PaymentDetailsResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014	ResponseCode;
-	unsigned char 							GenChallenge[16];
-	long 								EVSETimeStamp;
-};
-struct IdentificationDetailsResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018	ResponseCode;
-	struct EVSEStatusType					EVSEStatus;						//Optional
-	unsigned char 							GenChallenge[16];
-	enum ProcessingType					EVSEProcessing;
-};
-/****ContractAuthenticationRequest / AuthorizationRequest****/
-struct ContractAuthenticationRequest_DIN70121
-{
-	//None
-};
-struct AuthorizationRequest_ISO15118_2014
-{
-	unsigned char 			GenChallenge[16];					//Optional
-	unsigned char 			Id[32];							//Optional
-};
-struct AuthorizationRequest_ISO15118_2018
-{
-	struct PNC_AReqIdentificationModeType		PNC_AReqIdentificationMode;	//Optional
-};
-/****ContractAuthenticationResponse  / AuthorizationResponse****/
-struct ContractAuthenticationResponse_DIN70121
-{
-	enum ResponseCodeType_DIN70121		ResponseCode;
-	enum EVSEProcessingType_DIN70121		EVSEProcessing;
-};
-struct AuthorizationResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014	ResponseCode;
-	enum EVSEProcessingType_ISO15118_2014	EVSEProcessing;
-};
-struct AuthorizationResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018	ResponseCode;
-	enum ProcessingType					EVSEProcessing;
-	struct EVSEStatusType					EVSEStatus;						//Optional
-};
-/****ChargeParameterDiscoveryRequest****/
-struct ChargeParameterDiscoveryRequest_DIN70121
-{
-	enum EnergyTransferModeType					EVRequestedEnergyTransferType;
-	struct DC_EVChargeParameterType_DIN70121		DC_EVChargeParameter;
-};
-struct ChargeParameterDiscoveryRequest_ISO15118_2014
-{
-	unsigned short										MaxEntriesSAScheduleTuple;			//Optional
-	enum EnergyTransferModeType						RequestedEnergyTransferMode;
-	struct AC_EVChargeParameterType					AC_EVChargeParameter;
-	struct DC_EVChargeParameterType_ISO15118_2014		DC_EVChargeParameter;
-};
-struct ChargeParameterDiscoveryRequest_ISO15118_2018
-{
-	struct Dynamic_CPDReqControlModeType			Dynamic_CPDReqControlMode;
-	struct Scheduled_CPDReqControlModeType			Scheduled_CPDReqControlMode;
-	struct AC_CPDReqEnergyTransferModeType			AC_CPDReqEnergyTransferMode;
-	struct DC_CPDReqEnergyTransferModeType			DC_CPDReqEnergyTransferMode;
-	struct BPT_AC_CPDReqEnergyTransferModeType		BPT_AC_CPDReqEnergyTransferMode;
-	struct BPT_DC_CPDReqEnergyTransferModeType		BPT_DC_CPDReqEnergyTransferMode;
-	struct WPT_CPDReqEnergyTransferModeType			WPT_CPDReqEnergyTransferMode;
-	struct ACD_CPDReqEnergyTransferModeType			ACD_CPDReqEnergyTransferMode;
-};
-/****ChargeParameterDiscoveryResponse****/
-struct ChargeParameterDiscoveryResponse_DIN70121
-{
-	enum ResponseCodeType_DIN70121					ResponseCode;
-	enum EVSEProcessingType_DIN70121					EVSEProcessing;
-	struct SAScheduleListType 							SAScheduleList;
-	struct DC_EVSEChargeParameterType_DIN70121			DC_EVSEChargeParameter;
-};
-struct ChargeParameterDiscoveryResponse_ISO15118_2014
-{
-	enum EVSEProcessingType_ISO15118_2014				EVSEProcessing;
-	enum ResponseCodeType_ISO15118_2014				ResponseCode;
-	struct SAScheduleListType 							SAScheduleList;
-	struct AC_EVSEChargeParameterType					AC_EVSEChargeParameter;
-	struct DC_EVSEChargeParameterType_ISO15118_2014		DC_EVSEChargeParameter;
-};
-struct ChargeParameterDiscoveryResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018				ResponseCode;
-	struct EVSEStatusType								EVSEStatus;					//Optional
-	enum ProcessingType								EVSEProcessing;
-	struct Scheduled_CPDResControlModeType				Scheduled_CPDResControlMode;	//Optional
-	struct AC_CPDResEnergyTransferModeType				AC_CPDResEnergyTransferMode;
-	struct DC_CPDResEnergyTransferModeType				DC_CPDResEnergyTransferMode;
-	struct BPT_AC_CPDResEnergyTransferModeType			BPT_AC_CPDResEnergyTransferMode;
-	struct BPT_DC_CPDResEnergyTransferModeType			BPT_DC_CPDResEnergyTransferMode;
-	struct WPT_CPDResEnergyTransferModeType				WPT_CPDResEnergyTransferMode;
-	struct ACD_CPDResEnergyTransferModeType				ACD_CPDResEnergyTransferMode;
-};
-/****PowerDeliveryRequest****/
-struct PowerDeliveryRequest_DIN70121
-{
-	BOOL											ReadyToChargeState;
-	struct ChargingProfileType_DIN70121					ChargingProfile;
-	struct DC_EVPowerDeliveryParameterType_DIN70121		DC_EVPowerDeliveryParameter;
-};
-struct PowerDeliveryRequest_ISO15118_2014
-{
-	enum ChargeProgressType_ISO15118_2014				ChargeProgress;
-	short 											SAScheduleTupleID;
-	struct ChargingProfileType_ISO15118_2014 				ChargingProfile;
-	struct DC_EVPowerDeliveryParameterType_ISO15118_2014	DC_EVPowerDeliveryParameter;
-};
-struct PowerDeliveryRequest_ISO15118_2018
-{
-	enum ChargeProgressType_ISO15118_2018				ChargeProgress;
-	struct Scheduled_PDReqControlModeType				Scheduled_PDReqControlMode;
-	struct BPT_Scheduled_PDReqControlModeType			BPT_Scheduled_PDReqControlMode;
-};
-/****PowerDeliveryResponse****/
-struct PowerDeliveryResponse_DIN70121
-{
-	enum ResponseCodeType_DIN70121				ResponseCode;
-	struct DC_EVSEStatusType_DIN70121				DC_EVSEStatus;
-};
-struct PowerDeliveryResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014				ResponseCode;
-	struct AC_EVSEStatusType							AC_EVSEStatus;
-	struct DC_EVSEStatusType_ISO15118_2014				DC_EVSEStatus;
-};
-struct PowerDeliveryResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018				ResponseCode;
-	struct EVSEStatusType								EVSEStatus;			//Optional
-};
-/****CertificateUpdateRequest****/
-struct CertificateUpdateRequest_ISO15118_2014
-{
-	unsigned char 										Id[32];
-	struct CertificateChainType							ContractSignatureCertChain;
-	unsigned char 										eMAID[16];
-	struct ListOfRootCertificateIDsType						ListOfRootCertificateIDs;
-};
-/****CertificateUpdateResponse****/
-struct CertificateUpdateResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014				ResponseCode;
-	struct CertificateChainType							SAProvisioningCertificateChain;
-	struct CertificateChainType							ContractSignatureCertChain;
-	struct ContractSignatureEncryptedPrivateKeyType			ContractSignatureEncryptedPrivateKey;
-	struct DiffieHellmanPublickeyType						DHpublickey;
-	unsigned char 										eMAID[16];
-	short 											RetryCounter;							//Optional
-};
-/****CertificateInstallationRequest****/
-struct CertificateInstallationRequest_ISO15118_2014
-{
-	unsigned char 										Id[32];
-	unsigned char 										OEMProvisioningCert[800];
-	struct ListOfRootCertificateIDsType						ListOfRootCertificateIDs;
-};
-struct CertificateInstallationRequest_ISO15118_2018
-{
-	unsigned char 										Id[32];
-	struct CertificateChainType							OEMProvisioningCertChain;
-	struct ListOfRootCertificateIDsType						ListOfRootCertificateIDs;
-	unsigned short										MaxSupportedCerts;
-};
-/****CertificateInstallationResponse****/
-struct CertificateInstallationResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014				ResponseCode;
-	struct CertificateChainType							SAProvisioningCertificateChain;
-	struct CertificateChainType							ContractSignatureCertChain;
-	struct ContractSignatureEncryptedPrivateKeyType			ContractSignatureEncryptedPrivateKey;
-	struct DiffieHellmanPublickeyType						DHpublickey;
-	unsigned char 										eMAID[16];
-};
-struct CertificateInstallationResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018				ResponseCode;
-	struct EVSEStatusType								EVSEStatus;					//Optional
-	struct CertificateChainType							SAProvisioningCertificateChain;
-	struct CertificateChainType							ContractCertificateChain;
-	struct ContractCertificateEncryptedPrivateKeyType		ContractEncryptedPrivateKey;
-	struct DiffieHellmanPublickeyType						DHpublickey;
-	enum ProcessingType								EVSEProcessing;
-	unsigned short 									RemainingContractCertificateChains;
-};
-/****SystemStatusRequest****/
-struct SystemStatusRequest_ISO15118_2018
-{
-	enum mechanicalChargingDeviceStatusType			EVMechanicalChargingDeviceStatus;
-	struct EVTechnicalStatusType							EVTechnicalStatus;
-	unsigned char 										EV_OEMStatus[800];					//Optional
-};
-/****SystemStatusResponse****/
-struct SystemStatusResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018				ResponseCode;
-	enum mechanicalChargingDeviceStatusType			EVSEMechanicalChargingDeviceStatus;
-	BOOL											EVSE_ReadyToCharge;
-	enum IsolationStatusType							EVSE_IsolationStatus;
-	BOOL											EVSE_Disabled;
-	BOOL											EVSE_UtilityInterruptEvent;
-	BOOL											EVSE_EmergencyShutdown;
-	BOOL											EVSE_Malfunction;
-	BOOL											EV_InChargePosition;
-	BOOL											EV_AssociationStatus;
-};
-/****SessionStopRequest****/
-struct SessionStopRequest_DIN70121
-{
-	//No member in standard
-};
-struct SessionStopRequest_ISO15118_2014
-{
-	enum ChargingSessionType							ChargingSession;
-};
-struct SessionStopRequest_ISO15118_2018
-{
-	enum ChargingSessionType							ChargingSession;
-};
-/****SessionStopResponse****/
-struct SessionStopResponse_DIN70121
-{
-	enum ResponseCodeType_DIN70121					ResponseCode;
-};
-struct SessionStopResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014				ResponseCode;
-};
-struct SessionStopResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018				ResponseCode;
-	struct EVSEStatusType								EVSEStatus;					//Optional
-};
-/****MeteringReceiptRequest****/
-struct MeteringReceiptRequest_ISO15118_2014
-{
-	unsigned char 										Id[32];						//Optional
-	unsigned char 										SessionID[8];
-	short 											SAScheduleTupleID;				//Optional
-	struct MeterInfoType_ISO15118_2014					MeterInfo;
-};
-struct MeteringReceiptRequest_ISO15118_2018
-{
-	unsigned char 										Id[32];						//Optional
-	unsigned char 										SessionID[8];
-	struct Scheduled_MRReqControlModeType				Schedule_MRReqControlMode;
-	struct MeterInfoType_ISO15118_2018					MeterInfo;
-};
-/****MeteringReceiptResponse****/
-struct MeteringReceiptResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014				ResponseCode;
-	struct AC_EVSEStatusType							AC_EVSEStatus;
-	struct DC_EVSEStatusType_ISO15118_2014				DC_EVSEStatus;
-};
-struct MeteringReceiptResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018				ResponseCode;
-	struct EVSEStatusType								EVSEStatus;					//Optional
-};
-/****ChargingStatusRequest (AC Only)****/
-struct ChargingStatusRequest_ISO15118_2014
-{
-	//No member in standard
-};
-struct ChargingStatusRequest_ISO15118_2018
-{
-	struct PnC_CLReqIdentificationModeType				PnC_CLReqIdentificationMode;
-	struct Dynamic_CSReqControlModeType				Dynamic_CSReqControlMode;
-	struct Scheduled_CSReqControlModeType				Scheduled_CSReqControlMode;
-	struct DisplayParametersType							DisplayParameters;
-};
-/****ChargingStatusResponse (AC Only)****/
-struct ChargingStatusResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014				ResponseCode;
-	unsigned char										EVSEID[40];			//DIN70121=>Max length:32,	ISO15118=>min length:7, max length:37
-	short 											SAScheduleTupleID;
-	struct PhysicalValueType_ISO15118_2014					EVSEMaxCurrent;		//Optional
-	struct MeterInfoType_ISO15118_2014					MeterInfo;			//Optional
-	BOOL											ReceiptRequired;		//Optional
-	struct AC_EVSEStatusType							AC_EVSEStatus;
-};
-struct ChargingStatusResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018				ResponseCode;
-	struct EVSEStatusType								EVSEStatus;					//Optional
-	unsigned char										EVSEID[40];					//DIN70121=>Max length:32,	ISO15118=>min length:7, max length:37
-	struct PhysicalValueType_ISO15118_2018					EVSETargetFrequency;			//Optional
-	struct PnC_CLResIdentificationModeType				PnC_CLResIdentificationMode;
-	struct Dynamic_CSResControlModeType					Dynamic_CSResControlMode;
-	struct Scheduled_CSReqControlModeType				Scheduled_CSReqControlMode;
-};
-/****CableCheckRequest (DC Only)****/
-struct CableCheckRequest_DIN70121
-{
-	struct DC_EVStatusType_DIN70121						DC_EVStatus;
-};
-struct CableCheckRequest_ISO15118_2014
-{
-	struct DC_EVStatusType_ISO15118_2014 					DC_EVStatus;
-};
-struct CableCheckRequest_ISO15118_2018
-{
-	//No member in standard
-};
-/****CableCheckResponse (DC Only)****/
-struct CableCheckResponse_DIN70121
-{
-	enum ResponseCodeType_DIN70121					ResponseCode;
-	struct DC_EVSEStatusType_DIN70121					DC_EVSEStatus;
-	enum EVSEProcessingType_DIN70121					EVSEProcessing;
-};
-struct CableCheckResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014				ResponseCode;
-	struct DC_EVSEStatusType_ISO15118_2014				DC_EVSEStatus;
-	enum EVSEProcessingType_ISO15118_2014				EVSEProcessing;
-};
-struct CableCheckResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018				ResponseCode;
-	struct EVSEStatusType								EVSEStatus;					//Optional
-	enum ProcessingType								EVSEProcessing;
-};
-/****PreChargeRequest (DC Only)****/
-struct PreChargeRequest_DIN70121
-{
-	struct DC_EVStatusType_DIN70121						DC_EVStatus;
-	struct PhysicalValueType_DIN70121						EVTargetVoltage;
-	struct PhysicalValueType_DIN70121						EVTargetCurrent;
-};
-struct PreChargeRequest_ISO15118_2014
-{
-	struct DC_EVStatusType_ISO15118_2014 					DC_EVStatus;
-	struct PhysicalValueType_ISO15118_2014					EVTargetVoltage;
-	struct PhysicalValueType_ISO15118_2014					EVTargetCurrent;
-};
-struct PreChargeRequest_ISO15118_2018
-{
-	struct PhysicalValueType_ISO15118_2018					EVTargetVoltage;
-	struct PhysicalValueType_ISO15118_2018					EVTargetCurrent;
-};
-/****PreChargeResponse (DC Only)****/
-struct PreChargeResponse_DIN70121
-{
-	enum ResponseCodeType_DIN70121					ResponseCode;
-	struct DC_EVSEStatusType_DIN70121					DC_EVSEStatus;
-	struct PhysicalValueType_DIN70121						EVSEPresentVoltage;
-};
-struct PreChargeResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014				ResponseCode;
-	struct DC_EVSEStatusType_ISO15118_2014				DC_EVSEStatus;
-	struct PhysicalValueType_ISO15118_2014					EVSEPresentVoltage;
-};
-struct PreChargeResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018				ResponseCode;
-	struct EVSEStatusType								EVSEStatus;					//Optional
-	struct PhysicalValueType_ISO15118_2018					EVSEPresentVoltage;
-};
-/****CurrentDemandRequest (DC Only)****/
-struct CurrentDemandRequest_DIN70121
-{
-	struct DC_EVStatusType_DIN70121						DC_EVStatus;
-	struct PhysicalValueType_DIN70121						EVTargetCurrent;
-	struct PhysicalValueType_DIN70121						EVMaximumVoltageLimit;		//Optional
-	struct PhysicalValueType_DIN70121						EVMaximumCurrentLimit;		//Optional
-	struct PhysicalValueType_DIN70121						EVMaximumPowerLimit;			//Optional
-	BOOL											BulkChargingComplete;			//Optional
-	BOOL											ChargingComplete;
-	struct PhysicalValueType_DIN70121						RemainingTimeToFullSoC;		//Optional
-	struct PhysicalValueType_DIN70121						RemainingTimeToBulkSoC;		//Optional
-	struct PhysicalValueType_DIN70121						EVTargetVoltage;
-};
-struct CurrentDemandRequest_ISO15118_2014
-{
-	struct DC_EVStatusType_ISO15118_2014 					DC_EVStatus;
-	struct PhysicalValueType_ISO15118_2014					EVTargetCurrent;
-	struct PhysicalValueType_ISO15118_2014					EVMaximumVoltageLimit;		//Optional
-	struct PhysicalValueType_ISO15118_2014					EVMaximumCurrentLimit;		//Optional
-	struct PhysicalValueType_ISO15118_2014					EVMaximumPowerLimit;			//Optional
-	BOOL											BulkChargingComplete;			//Optional
-	BOOL											ChargingComplete;
-	struct PhysicalValueType_ISO15118_2014					RemainingTimeToFullSoC;		//Optional
-	struct PhysicalValueType_ISO15118_2014					RemainingTimeToBulkSoC;		//Optional
-	struct PhysicalValueType_ISO15118_2014					EVTargetVoltage;
-};
-struct CurrentDemandRequest_ISO15118_2018
-{
-	struct DisplayParametersType							DisplayParameters;				//Optional
-	struct PnC_CLReqIdentificationModeType				PnC_CLReqIdentificationMode;
-	struct Dynamic_CSReqControlModeType				Dynamic_CDReqControlMode;
-	struct Scheduled_CSReqControlModeType				Scheduled_CDReqControlMode;
-};
-/****CurrentDemandResponse (DC Only)****/
-struct CurrentDemandResponse_DIN70121
-{
-	enum ResponseCodeType_DIN70121					ResponseCode;
-	struct DC_EVSEStatusType_DIN70121					DC_EVSEStatus;
-	struct PhysicalValueType_DIN70121						EVSEPresentVoltage;
-	struct PhysicalValueType_DIN70121						EVSEPresentCurrent;
-	BOOL											EVSECurrentLimitAchieved;
-	BOOL											EVSEVoltageLimitAchieved;
-	BOOL											EVSEPowerLimitAchieved;
-	struct PhysicalValueType_DIN70121						EVSEMaximumVoltageLimit;		//Optional
-	struct PhysicalValueType_DIN70121						EVSEMaximumCurrentLimit;		//Optional
-	struct PhysicalValueType_DIN70121						EVSEMaximumPowerLimit;		//Optional
-};
-struct CurrentDemandResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014				ResponseCode;
-	struct DC_EVSEStatusType_ISO15118_2014				DC_EVSEStatus;
-	struct PhysicalValueType_ISO15118_2014					EVSEPresentVoltage;
-	struct PhysicalValueType_ISO15118_2014					EVSEPresentCurrent;
-	BOOL											EVSECurrentLimitAchieved;
-	BOOL											EVSEVoltageLimitAchieved;
-	BOOL											EVSEPowerLimitAchieved;
-	struct PhysicalValueType_ISO15118_2014					EVSEMaximumVoltageLimit;		//Optional
-	struct PhysicalValueType_ISO15118_2014					EVSEMaximumCurrentLimit;		//Optional
-	struct PhysicalValueType_ISO15118_2014					EVSEMaximumPowerLimit;		//Optional
-	unsigned char										EVSEID[40];			//DIN70121=>Max length:32,	ISO15118=>min length:7, max length:37
-	short 											SAScheduleTupleID;
-	struct MeterInfoType_ISO15118_2014					MeterInfo;			//Optional
-	BOOL											ReceiptRequired;		//Optional
-};
-struct CurrentDemandResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018				ResponseCode;
-	struct EVSEStatusType								EVSEStatus;						//Optional
-	struct PhysicalValueType_ISO15118_2018					EVSEPresentVoltage;
-	struct PhysicalValueType_ISO15118_2018					EVSEPresentCurrent;
-	BOOL											EVSECurrentLimitAchieved;
-	BOOL											EVSEVoltageLimitAchieved;
-	BOOL											EVSEPowerLimitAchieved;
-	struct PhysicalValueType_ISO15118_2018					EVSEMaximumChargeVoltage;		//Optional
-	struct PhysicalValueType_ISO15118_2018					EVSEMaximumChargeCurrent;		//Optional
-	struct PhysicalValueType_ISO15118_2018					EVSEMaximumChargePower;			//Optional
-	unsigned char										EVSEID[40];						//DIN70121=>Max length:32,	ISO15118=>min length:7, max length:37
-	struct PnC_CLResIdentificationModeType				PnC_CLResIdentificationMode;
-	struct Scheduled_CDResControlModeType				Scheduled_CDResControlMode;
-};
-/****WeldingDetectionRequest (DC Only)*****/
-struct WeldingDetectionRequest_DIN70121
-{
-	struct DC_EVStatusType_DIN70121						DC_EVStatus;
-};
-struct WeldingDetectionRequest_ISO15118_2014
-{
-	struct DC_EVStatusType_ISO15118_2014 					DC_EVStatus;
-};
-struct WeldingDetectionRequest_ISO15118_2018
-{
-	//No member in Standard
-};
-/****WeldingDetectionResponse (DC Only)****/
-struct WeldingDetectionResponse_DIN70121
-{
-	enum ResponseCodeType_DIN70121					ResponseCode;
-	struct DC_EVSEStatusType_DIN70121					DC_EVSEStatus;
-	struct PhysicalValueType_DIN70121						EVSEPresentVoltage;
-};
-struct WeldingDetectionResponse_ISO15118_2014
-{
-	enum ResponseCodeType_ISO15118_2014				ResponseCode;
-	struct DC_EVSEStatusType_ISO15118_2014				DC_EVSEStatus;
-	struct PhysicalValueType_ISO15118_2014					EVSEPresentVoltage;
-};
-struct WeldingDetectionResponse_ISO15118_2018
-{
-	enum ResponseCodeType_ISO15118_2018				ResponseCode;
-	struct EVSEStatusType								EVSEStatus;						//Optional
-	struct PhysicalValueType_ISO15118_2018					EVSEPresentVoltage;
-};
-/****FinePositioningSetupRequest (WPT Only)****/
-struct FinePositioningSetupRequest_ISO15118_2018
-{
-	struct LFA_EVFinePositioningSetupParametersType			LFA_EVFinePositioningSetupParameters;	//Optional
-};
-/****FinePositioningSetupResponse (WPT Only)****/
-struct FinePositioningSetupResponse_ISO15118_2018
-{
-	//NOT complete yet,  to be continue.....
-};
-
-
-struct V2GMessageType_DIN70121
-{
-	unsigned char 	SelfTest_Comp;
-	unsigned char	version[16];
-	unsigned char											PresentMsgFlowStatus;
-														/* 0: Idle(wait B2 state), 1: CM_SLAC_PARM.REQ, 2: CM_SLAC_PARM.CNF, 3: CM_START_ATTEN_CHAR.IND
-														    4: CM_MNBC_SOUND.IND, 5: CM_ATTEN_CHAR.IND, 6: CM_ATTEN_CHAR.RSP, 7: CM_VALIDATE.REQ
-														    8: CM_VALIDATE.CNF, 9: CM_SLAC_MATCH.REQ, 10: CM_SLAC_MATCH.CNF, 11: CM_AMP_MAP.REQ
-														    12: CM_AMP_MAP.CNF, 13: SLACC/SDP/TCP connection,
-														    16: SupportedAppProtocolRequest, 17: SupportedAppProtocolResponse, 18: SessionSetupRequest
-														    19: SessionSetupResponse, 20: ServiceDiscoveryRequest, 21: ServiceDiscoveryResponse
-														    22: ServiceDetailRequest, 23: ServiceDetailResponse
-														    24: ServiceAndPaymentSelectionRequest/ServiceSelectionRequest, 25: ServiceAndPaymentSelectionResponse/ServiceSelectionResponse
-														    26: PaymentDetailsRequest/IdentificationDetailsRequest;, 27: PaymentDetailsResponse/IdentificationDetailsResponse,
-														     28: AuthorizationRequest, 29: AuthorizationResponse,
-														    30: CertificateUpdateRequest, 31: CertificateUpdateResponse, 32:CertificateInstallationRequest, 33: CertificateInstallationResponse
-														    34: ChargeParameterDiscoveryRequest, 35: ChargeParameterDiscoveryResponse
-														    36: CableCheckRequest, 37: CableCheckResponse, 38: PreChargeRequest, 39: PreChargeResponse
-														    40: PowerDeliveryRequest start, 41: PowerDeliveryResponse start, 42: ChargingStatusRequest, 43: ChargingStatusResponse
-														    44: CurrentDemandRequest, 45: CurrentDemandResponse, 46: MeteringReceiptRequest, 47: MeteringReceiptResponse
-														    48: PowerDeliveryRequest end, 49: PowerDeliveryRequest end, 50: WeldingDetectionRequest, 51: WeldingDetectionResponse,
-														    52: SessionStopRequest, 53: SessionStopResponse
-														   253: Performance Timeout, 254: Sequence Timeout, 255: Fault
-														*/
-	struct SupportedAppProtocolRequest_DIN70121 			SupportedAppProtocolRequest;
-	struct SupportedAppProtocolResponse_DIN70121 			SupportedAppProtocolResponse;
-	struct SessionSetupRequest_DIN70121  					SessionSetupRequest;
-	struct SessionSetupResponse_DIN70121   				SessionSetupResponse;
-	struct ServiceDiscoveryRequest_DIN70121    				ServiceDiscoveryRequest;
-	struct ServiceDiscoveryResponse_DIN70121    				ServiceDiscoveryResponse;
-	struct ServiceAndPaymentSelectionRequest_DIN70121		ServiceAndPaymentSelectionRequest;
-	struct ServiceAndPaymentSelectionResponse_DIN70121		ServiceAndPaymentSelectionResponse;
-	struct ContractAuthenticationRequest_DIN70121			ContractAuthenticationRequest;
-	struct ContractAuthenticationResponse_DIN70121	 		ContractAuthenticationResponse;
-	struct ChargeParameterDiscoveryRequest_DIN70121		ChargeParameterDiscoveryRequest;
-	struct ChargeParameterDiscoveryResponse_DIN70121		ChargeParameterDiscoveryResponse;
-	struct CableCheckRequest_DIN70121					CableCheckRequest;
-	struct CableCheckResponse_DIN70121					CableCheckResponse;
-	struct PreChargeRequest_DIN70121					PreChargeRequest;
-	struct PreChargeResponse_DIN70121 					PreChargeResponse;
-	struct PowerDeliveryRequest_DIN70121					PowerDeliveryRequest;
-	struct PowerDeliveryResponse_DIN70121	   				PowerDeliveryResponse;
-	struct CurrentDemandRequest_DIN70121 				CurrentDemandRequest;
-	struct CurrentDemandResponse_DIN70121				CurrentDemandResponse;
-	struct WeldingDetectionRequest_DIN70121 				WeldingDetectionRequest;
-	struct WeldingDetectionResponse_DIN70121  			WeldingDetectionResponse;
-	struct SessionStopRequest_DIN70121					SessionStopRequest;
-	struct SessionStopResponse_DIN70121	    				SessionStopResponse;
-};
-
-struct V2GMessageType_ISO15118_2014
-{
-	unsigned char											PresentMsgFlowStatus;
-														/* 0: Idle(wait B2 state), 1: CM_SLAC_PARM.REQ, 2: CM_SLAC_PARM.CNF, 3: CM_START_ATTEN_CHAR.IND
-														    4: CM_MNBC_SOUND.IND, 5: CM_ATTEN_CHAR.IND, 6: CM_ATTEN_CHAR.RSP, 7: CM_VALIDATE.REQ
-														    8: CM_VALIDATE.CNF, 9: CM_SLAC_MATCH.REQ, 10: CM_SLAC_MATCH.CNF, 11: CM_AMP_MAP.REQ
-														    12: CM_AMP_MAP.CNF, 13: SLACC/SDP/TCP connection,
-														    16: SupportedAppProtocolRequest, 17: SupportedAppProtocolResponse, 18: SessionSetupRequest
-														    19: SessionSetupResponse, 20: ServiceDiscoveryRequest, 21: ServiceDiscoveryResponse
-														    22: ServiceDetailRequest, 23: ServiceDetailResponse
-														    24: ServiceAndPaymentSelectionRequest/ServiceSelectionRequest, 25: ServiceAndPaymentSelectionResponse/ServiceSelectionResponse
-														    26: PaymentDetailsRequest/IdentificationDetailsRequest;, 27: PaymentDetailsResponse/IdentificationDetailsResponse,
-														     28: AuthorizationRequest, 29: AuthorizationResponse,
-														    30: CertificateUpdateRequest, 31: CertificateUpdateResponse, 32:CertificateInstallationRequest, 33: CertificateInstallationResponse
-														    34: ChargeParameterDiscoveryRequest, 35: ChargeParameterDiscoveryResponse
-														    36: CableCheckRequest, 37: CableCheckResponse, 38: PreChargeRequest, 39: PreChargeResponse
-														    40: PowerDeliveryRequest start, 41: PowerDeliveryResponse start, 42: ChargingStatusRequest, 43: ChargingStatusResponse
-														    44: CurrentDemandRequest, 45: CurrentDemandResponse, 46: MeteringReceiptRequest, 47: MeteringReceiptResponse
-														    48: PowerDeliveryRequest end, 49: PowerDeliveryRequest end, 50: WeldingDetectionRequest, 51: WeldingDetectionResponse,
-														    52: SessionStopRequest, 53: SessionStopResponse
-														   253: Performance Timeout, 254: Sequence Timeout, 255: Fault
-														*/
-	struct SupportedAppProtocolRequest_ISO15118_2014 			SupportedAppProtocolRequest;
-	struct SupportedAppProtocolResponse_ISO15118_2014 			SupportedAppProtocolResponse;
-	struct SessionSetupRequest_ISO15118_2014  					SessionSetupRequest;
-	struct SessionSetupResponse_ISO15118_2014   				SessionSetupResponse;
-	struct ServiceDiscoveryRequest_ISO15118_2014    				ServiceDiscoveryRequest;
-	struct ServiceDiscoveryResponse_ISO15118_2014    				ServiceDiscoveryResponse;
-	struct ServiceDetailRequest_ISO15118_2014 					ServiceDetailRequest;
-	struct ServiceDetailResponse_ISO15118_2014					ServiceDetailResponse;
-	struct ServiceAndPaymentSelectionRequest_ISO15118_2014 		ServiceAndPaymentSelectionRequest;
-	struct ServiceAndPaymentSelectionResponse_ISO15118_2014  	ServiceAndPaymentSelectionResponse;
-	struct PaymentDetailsRequest_ISO15118_2014 				PaymentDetailsRequest;
-	struct PaymentDetailsResponse_ISO15118_2014 				PaymentDetailsResponse;
-	struct AuthorizationRequest_ISO15118_2014					AuthorizationRequest;
-	struct AuthorizationResponse_ISO15118_2014					AuthorizationResponse;
-	struct CertificateUpdateRequest_ISO15118_2014				CertificateUpdateRequest;
-	struct CertificateUpdateResponse_ISO15118_2014				CertificateUpdateResponse;
-	struct CertificateInstallationRequest_ISO15118_2014			CertificateInstallationRequest;
-	struct CertificateInstallationResponse_ISO15118_2014			CertificateInstallationResponse;
-	struct ChargeParameterDiscoveryRequest_ISO15118_2014 		ChargeParameterDiscoveryRequest;
-	struct ChargeParameterDiscoveryResponse_ISO15118_2014  		ChargeParameterDiscoveryResponse;
-	struct CableCheckRequest_ISO15118_2014 					CableCheckRequest;
-	struct CableCheckResponse_ISO15118_2014  					CableCheckResponse;
-	struct PreChargeRequest_ISO15118_2014 					PreChargeRequest;
-	struct PreChargeResponse_ISO15118_2014					PreChargeResponse;
-	struct PowerDeliveryRequest_ISO15118_2014					PowerDeliveryRequest;
-	struct PowerDeliveryResponse_ISO15118_2014					PowerDeliveryResponse;
-	struct ChargingStatusRequest_ISO15118_2014	  				ChargingStatusRequest;
-	struct ChargingStatusResponse_ISO15118_2014				ChargingStatusResponse;
-	struct CurrentDemandRequest_ISO15118_2014	 			CurrentDemandRequest;
-	struct CurrentDemandResponse_ISO15118_2014				CurrentDemandResponse;
-	struct MeteringReceiptRequest_ISO15118_2014				MeteringReceiptRequest;
-	struct MeteringReceiptResponse_ISO15118_2014				MeteringReceiptResponse;
-	struct WeldingDetectionRequest_ISO15118_2014 				WeldingDetectionRequest;
-	struct WeldingDetectionResponse_ISO15118_2014  			WeldingDetectionResponse;
-	struct SessionStopRequest_ISO15118_2014 					SessionStopRequest;
-	struct SessionStopResponse_ISO15118_2014					SessionStopResponse;
-};
-struct V2GMessageType_ISO15118_2018
-{
-	unsigned char										PresentMsgFlowStatus;
-													/* 0: Idle(wait B2 state), 1: CM_SLAC_PARM.REQ, 2: CM_SLAC_PARM.CNF, 3: CM_START_ATTEN_CHAR.IND
-													    4: CM_MNBC_SOUND.IND, 5: CM_ATTEN_CHAR.IND, 6: CM_ATTEN_CHAR.RSP, 7: CM_VALIDATE.REQ
-													    8: CM_VALIDATE.CNF, 9: CM_SLAC_MATCH.REQ, 10: CM_SLAC_MATCH.CNF, 11: CM_AMP_MAP.REQ
-													    12: CM_AMP_MAP.CNF, 13: SLACC/SDP/TCP connection,
-													    16: SupportedAppProtocolRequest, 17: SupportedAppProtocolResponse, 18: SessionSetupRequest
-													    19: SessionSetupResponse, 20: ServiceDiscoveryRequest, 21: ServiceDiscoveryResponse
-													    22: ServiceDetailRequest, 23: ServiceDetailResponse
-													    24: ServiceAndPaymentSelectionRequest/ServiceSelectionRequest, 25: ServiceAndPaymentSelectionResponse/ServiceSelectionResponse
-													    26: PaymentDetailsRequest/IdentificationDetailsRequest;, 27: PaymentDetailsResponse/IdentificationDetailsResponse,
-													     28: AuthorizationRequest, 29: AuthorizationResponse,
-													    30: CertificateUpdateRequest, 31: CertificateUpdateResponse, 32:CertificateInstallationRequest, 33: CertificateInstallationResponse
-													    34: ChargeParameterDiscoveryRequest, 35: ChargeParameterDiscoveryResponse
-													    36: CableCheckRequest, 37: CableCheckResponse, 38: PreChargeRequest, 39: PreChargeResponse
-													    40: PowerDeliveryRequest start, 41: PowerDeliveryResponse start, 42: ChargingStatusRequest, 43: ChargingStatusResponse
-													    44: CurrentDemandRequest, 45: CurrentDemandResponse, 46: MeteringReceiptRequest, 47: MeteringReceiptResponse
-													    48: PowerDeliveryRequest end, 49: PowerDeliveryRequest end, 50: WeldingDetectionRequest, 51: WeldingDetectionResponse,
-													    52: SessionStopRequest, 53: SessionStopResponse
-													   253: Performance Timeout, 254: Sequence Timeout, 255: Fault
-													*/
-	struct SupportedAppProtocolRequest_ISO15118_2018			SupportedAppProtocolRequest;
-	struct SupportedAppProtocolResponse_ISO15118_2018 			SupportedAppProtocolResponse;
-	struct SessionSetupRequest_ISO15118_2018					SessionSetupRequest;
-	struct SessionSetupResponse_ISO15118_2018  					SessionSetupResponse;
-	struct ServiceDiscoveryRequest_ISO15118_2018    				ServiceDiscoveryRequest;
-	struct ServiceDiscoveryResponse_ISO15118_2018    				ServiceDiscoveryResponse;
-	struct ServiceDetailRequest_ISO15118_2018 					ServiceDetailRequest;
-	struct ServiceDetailResponse_ISO15118_2018					ServiceDetailResponse;
-	struct ServiceSelectionRequest_ISO15118_2018				ServiceSelectionRequest;
-	struct ServiceSelectionResponse_ISO15118_2018				ServiceSelectionResponse;
-	struct IdentificationDetailsRequest_ISO15118_2018  			IdentificationDetailsRequest;
-	struct IdentificationDetailsResponse_ISO15118_2018  			IdentificationDetailsResponse;
-	struct AuthorizationRequest_ISO15118_2018  					AuthorizationRequest;
-	struct AuthorizationResponse_ISO15118_2018					AuthorizationResponse;
-	struct CertificateInstallationRequest_ISO15118_2018			CertificateInstallationRequest;
-	struct CertificateInstallationResponse_ISO15118_2018			CertificateInstallationResponse;
-	struct ChargeParameterDiscoveryRequest_ISO15118_2018 		ChargeParameterDiscoveryRequest;
-	struct ChargeParameterDiscoveryResponse_ISO15118_2018  		ChargeParameterDiscoveryResponse;
-	struct CableCheckRequest_ISO15118_2018 					CableCheckRequest;
-	struct CableCheckResponse_ISO15118_2018 					CableCheckResponse;
-	struct PreChargeRequest_ISO15118_2018 					PreChargeRequest;
-	struct PreChargeResponse_ISO15118_2018					PreChargeResponse;
-	struct PowerDeliveryRequest_ISO15118_2018					PowerDeliveryRequest;
-	struct PowerDeliveryResponse_ISO15118_2018					PowerDeliveryResponse;
-	struct ChargingStatusRequest_ISO15118_2018	  				ChargingStatusRequest;
-	struct ChargingStatusResponse_ISO15118_2018				ChargingStatusResponse;
-	struct CurrentDemandRequest_ISO15118_2018	 			CurrentDemandRequest;
-	struct CurrentDemandResponse_ISO15118_2018				CurrentDemandResponse;
-	struct MeteringReceiptRequest_ISO15118_2018				MeteringReceiptRequest;
-	struct MeteringReceiptResponse_ISO15118_2018				MeteringReceiptResponse;
-	struct WeldingDetectionRequest_ISO15118_2018 				WeldingDetectionRequest;
-	struct WeldingDetectionResponse_ISO15118_2018  			WeldingDetectionResponse;
-	struct SessionStopRequest_ISO15118_2018 					SessionStopRequest;
-	struct SessionStopResponse_ISO15118_2018					SessionStopResponse;
-};
-
-struct CcsData
-{
-	unsigned char 							CommProtocol;	// 1: V2GMessage_DIN70121, 2:V2GMessage_ISO15118_2014, 3:V2GMessage_ISO15118_2018
-	struct V2GMessageType_DIN70121			V2GMessage_DIN70121[CCS_QUANTITY];
-	struct V2GMessageType_ISO15118_2014  		V2GMessage_ISO15118_2014[CCS_QUANTITY];
-	struct V2GMessageType_ISO15118_2018  		V2GMessage_ISO15118_2018[CCS_QUANTITY];
-};
-/**************************************************************************************/
-/***************STM32F407 Communication Share memory**************************/
-/**************************************************************************************/
-struct PrimaryMcuData
-{
-	unsigned char 	SelfTest_Comp;
-	unsigned char	version[16];									//STM32F407 firmware version
-	unsigned int 	InputVoltage;									//value comes from external meter
-	unsigned int 	InputCurrent;									//value comes from external meter
-	union
-	{
-		unsigned char OutputDrvValue[1];
-		struct
-		{
-			//OutputDrvValue[0]
-		    unsigned char AcContactorDrv:1;						//bit 0,	H: ON, 		L:OFF
-			unsigned char Button1LedDrv:1;						//bit 1,	H: ON, 		L:OFF
-			unsigned char Button2LedDrv:1; 						//bit 2,	H: ON, 		L:OFF
-			unsigned char SystemLed1Drv:1;						//bit 3,	H: ON, 		L:OFF
-			unsigned char SystemLed2Drv:1;						//bit 4,	H: ON, 		L:OFF
-			unsigned char SystemLed3Drv:1;						//bit 5,	H: ON, 		L:OFF
-			unsigned char SystemLed4Drv:1;						//bit 6,	H: ON, 		L:OFF
-			unsigned char:1;									//bit 7 reserved
-		}bits;
-	}OutputDrv;
-	union
-	{
-		unsigned char InputDetValue[2];
-		struct
-		{
-			//InputDetValue[0]
-		    unsigned char AcContactorDetec:1;					//bit 0,	H: ON, 		L:OFF
-			unsigned char AcMainBreakerDetec:1;					//bit 1,	H: ON, 		L:OFF
-			unsigned char SpdDetec:1; 							//bit 2,	H: ON, 		L:OFF
-			unsigned char DoorOpen:1;							//bit 3,	H: Open,		L:Close
-			unsigned char Gfd1:1;								//bit 4,	H: Trigger,		L:Normal
-			unsigned char Gfd2:1;								//bit 5,	H: Trigger,		L:Normal
-			unsigned char Button1:1;								//bit 6 ,	H: Push, 		L:Release
-			unsigned char Button2:1;								//bit 7,	H: Push, 		L:Release
-			//InputDetValue[1]
-			unsigned char EmergencyButton:1;						//bit 0,	H: Push, 		L:Release
-			unsigned char :7;									//bit 1~7,	Reserved
-		}bits;
-	}InputDet;
-};
-/**************************************************************************************/
-/*************Fan power module Communication Share memory******************/
-/**************************************************************************************/
-struct FanModuleData
-{
-	unsigned char	version[16];			//fan power module firmware version
-	unsigned short	PresentFan1Speed;		//RPM
-	unsigned short	PresentFan2Speed;		//RPM
-	unsigned short	PresentFan3Speed;		//RPM
-	unsigned short	PresentFan4Speed;		//RPM
-	unsigned short	SetFan1Speed;			//RPM
-	unsigned short	SetFan2Speed;			//RPM
-	unsigned short	SetFan3Speed;			//RPM
-	unsigned short	SetFan4Speed;			//RPM
-	unsigned char	DiffOfAirPressure;		//pa
-	unsigned char	UpdateFW;			//1:do update
-};
-
-/**************************************************************************************/
-/***********Relay control module Communication Share memory******************/
-/**************************************************************************************/
-struct RelayModuleData
-{
-	unsigned char 	SelfTest_Comp;
-	unsigned char	version[16];				//fan power module firmware version
-	unsigned short	InputL1Volt;				//XXXXX.x volt
-	unsigned short	InputL2Volt;				//XXXXX.x volt
-	unsigned short	InputL3Volt;				//XXXXX.x volt
-	unsigned short	Gun1FuseOutputVolt;		//XXXXX.x volt
-	unsigned short	Gun2FuseOutputVolt;		//XXXXX.x volt
-	unsigned short	Gun1RelayOutputVolt;		//XXXXX.x volt
-	unsigned short	Gun2RelayOutputVolt;		//XXXXX.x volt
-	unsigned short	Gun1OutputCurrent;		//XXXXX.x amp
-	unsigned short	Gun2OutputCurrent;		//XXXXX.x amp
-	unsigned char	UpdateFW;				//1:do update
-};
-
-/**************************************************************************************/
-/************************OCPP Share memory***************************************/
-/**************************************************************************************/
-struct StructIdTagInfo
-{
-	unsigned char 	ExpiryDate[28];
-	unsigned char 	ParentIdTag[20];
-	unsigned char 	Status[16];		//Accepted, Blocked, Expired, Invalid, ConcurrentTx
-};
-struct StructLocalAuthorizationList
-{
-	unsigned char 			IdTag[20];
-	struct StructIdTagInfo	IdTagInfo;
-};
-struct StructSampledValue
-{
-	unsigned char 			Value[128];
-	unsigned char 			Context[20];//Interruption.Begin, Interruption.End, Sample.Clock, Sample.Periodic, Transaction.Begin, Transaction.End, Trigger, Other
-	unsigned char 			Format[12];//Raw,SignedData
-	unsigned char 			Measurand[32];/*	"Energy.Active.Export.Register",
-										"Energy.Active.Import.Register",
-										"Energy.Reactive.Export.Register",
-										"Energy.Reactive.Import.Register",
-										"Energy.Active.Export.Interval",
-										"Energy.Active.Import.Interval",
-										"Energy.Reactive.Export.Interval",
-										"Energy.Reactive.Import.Interval",
-										"Power.Active.Export",
-										"Power.Active.Import",
-										"Power.Offered",
-										"Power.Reactive.Export",
-										"Power.Reactive.Import",
-										"Power.Factor",
-										"Current.Import",
-										"Current.Export",
-										"Current.Offered",
-										"Voltage",
-										"Frequency",
-										"Temperature",
-										"SoC",
-										"RPM"
-										*/
-
-	unsigned char 			Phase[8];	/*		"L1",
-										"L2",
-										"L3",
-										"N",
-										"L1-N",
-										"L2-N",
-										"L3-N",
-										"L1-L2",
-										"L2-L3",
-										"L3-L1"
-								*/
-
-	unsigned char 			Location[8];		//Cable,EV,Inlet,Outlet,Body
-	unsigned char 			Unit[12];	/*		"Wh",
-										"kWh",
-										"varh",
-										"kvarh",
-										"W",
-										"kW",
-										"VA",
-										"kVA",
-										"var",
-										"kvar",
-										"A",
-										"V",
-										"K",
-										"Celcius",
-										"Fahrenheit",
-										"Percent"
-								*/
-};
-struct StructMeterValue
-{
-	unsigned char 				TimeStamp[28];
-	struct StructSampledValue	*SampledValue;
-};
-struct StructConfigurationKeyItems
-{
-	unsigned char 	Item[50];
-};
-struct StructConfigurationKey
-{
-	unsigned char 	Key[50];
-	unsigned char 	ReadOnly[8];	//boolean
-	unsigned char 	Value[500];
-};
-struct StructChargingSchedulePeriod
-{
-	int		StartPeriod;
-	float 	Limit;//0.1;
-	int		NumberPhases;
-};
-struct StructChargingSchedule
-{
-	int											Duration;
-	unsigned char 								StartSchedule[28];
-	unsigned char 								ChargingRateUnit[4];		//A, W
-	struct StructChargingSchedulePeriod			*ChargingSchedulePeriod;
-	float 										MinChargingRate;			//0.1;
-};
-struct StructChargingProfile
-{
-	int								ChargingProfileId;
-	int								TransactionId;
-	int								StackLevel;
-	unsigned char 					ChargingProfilePurpose[24];	//ChargePointMaxProfile, TxDefaultProfile, TxProfile
-	unsigned char 					ChargingProfileKind[12];		//Absolute, Recurring, Relative
-	unsigned char 					RecurrencyKind[8];			//Daily, Weekly
-	unsigned char 					ValidFrom[28];
-	unsigned char 					ValidTo[28];
-	struct StructChargingSchedule	ChargingSchedule;
-};
-
-struct StructBootNotification
-{
-	unsigned char CpVendor[20];				//chargePointVendor				//mandatory
-	unsigned char CpModel[20];				//chargePointModel				//mandatory
-	unsigned char CpSN[25];					//chargePointSerialNumber
-	unsigned char CbSN[25];					//chargeBoxSerialNumber
-	unsigned char CpFwVersion[50];			//firmwareVersion
-	unsigned char CpIccid[20];				//iccid
-	unsigned char CpImsi[20];				//imsi
-	unsigned char CpMeterType[25];			//meterType
-	unsigned char CpMeterSerialNumber[25];	//meterSerialNumber
-	unsigned char ResponseStatus[16];			//Accepted, Pending, Rejected
-	unsigned char ResponseCurrentTime[28];	//currentTime					//mandatory
-	int 			ResponseHeartbeatInterval;	//interval						//mandatory
-
-};
-struct StructHeartbeat
-{
-	unsigned char 				ResponseCurrentTime[28];
-};
-struct StructAuthorize
-{
-	unsigned char 				IdTag[20];
-	struct StructIdTagInfo		ResponseIdTagInfo;
-};
-struct StructStartTransaction
-{
-	int 						ConnectorId;
-	unsigned char 				IdTag[20];
-	int 						MeterStart;
-	int 						ReservationId;
-	unsigned char 				Timestamp[28];
-	struct StructIdTagInfo		ResponseIdTagInfo;
-	int 						ResponseTransactionId;
-};
-struct StructStopTransaction
-{
-	unsigned char 				IdTag[20];
-	int 						MeterStop;
-	unsigned char 				Timestamp[28];
-	int 						TransactionId;
-	unsigned char 				StopReason[20];				/*	"EmergencyStop",
-															"EVDisconnected",
-															"HardReset",
-															"Local",
-															"Other",
-															"PowerLoss",
-															"Reboot",
-															"Remote",
-															"SoftReset",
-															"UnlockCommand",
-															"DeAuthorized"
-														*/
-	struct StructMeterValue		*TransactionData;
-	struct StructIdTagInfo		ResponseIdTagInfo;
-};
-
-struct StructStatusNotification
-{
-	int 			ConnectorId;
-	unsigned char 	ErrorCode[25];				/*	"ConnectorLockFailure",
-								                "EVCommunicationError",
-								                "GroundFailure",
-								                "HighTemperature",
-								                "InternalError",
-								                "LocalListConflict",
-								                "NoError",
-								                "OtherError",
-								                "OverCurrentFailure",
-								                "PowerMeterFailure",
-								                "PowerSwitchFailure",
-								                "ReaderFailure",
-								                "ResetFailure",
-								                "UnderVoltage",
-								                "OverVoltage",
-								                "WeakSignal"
-								            */
-
-	unsigned char 	Info[50];
-	unsigned char 	Status[20];					/*	"Available",
-								                "Preparing",
-								                "Charging",
-								                "SuspendedEVSE",
-								                "SuspendedEV",
-								                "Finishing",
-								                "Reserved",
-								                "Unavailable",
-								                "Faulted"
-								            */
-
-	unsigned char 	Timestamp[28];
-	unsigned char 	VendorId[256];
-	unsigned char 	VendorErrorCode[50];
-};
-
-
-struct StructCancelReservation
-{
-	int 				ReservationId;
-	unsigned char 		ResponseStatus[16];		//Accepted, Rejected
-	unsigned char 		guid[37];
-};
-struct StructChangeAvailability
-{
-	int 				ConnectorId;
-	unsigned char 		Type[16];					//Inoperative, Operative
-	unsigned char 		ResponseStatus[16];		//Accepted, Rejected, Scheduled
-	unsigned char 		guid[37];
-};
-struct StructChangeConfiguration
-{
-	unsigned char Key[50];
-	unsigned char Value[500];
-	unsigned char ResponseStatus[16];		//Accepted, Rejected, RebootRequired, NotSupported
-};
-struct StructClearCache
-{
-	unsigned char ResponseStatus[16];		//Accepted, Rejected
-};
-struct StructClearChargingProfile
-{
-	int			 			Id;
-	int						ConnectorId;
-	unsigned char 			ChargingProfilePurpose[24];	//ChargePointMaxProfile, TxDefaultProfile, TxProfile
-	int			 			StackLevel;
-	unsigned char 			ResponseStatus[16];			//Accepted, Unknown
-};
-struct StructDataTransfer
-{
-	unsigned char VendorId[256];
-	unsigned char MessageId[52];
-	unsigned char Data[512];
-	unsigned char ResponseStatus[18];	//Accepted, Rejected,UnknownMessageId,UnknownVendorId
-	unsigned char ResponseData[256];
-};
-struct StructDiagnosticsStatusNotification
-{
-	unsigned char Status[16];		//Idle,Uploaded,UploadFailed,Uploading
-};
-struct StructFirmwareStatusNotification
-{
-	unsigned char Status[20];			//Downloaded,DownloadFailed,Downloading,Idle,InstallationFailed,Installing,Installed
-};
-struct StructGetCompositeSchedule
-{
-	int 							ConnectorId;
-	int 							Duration;
-	unsigned char					ChargingRateUnit[4];		//A,W
-	unsigned char 					ResponseStatus[12];			//Accepted,Rejected
-	int 							ResponseConnectorId;
-	unsigned char					ResponseScheduleStart[28];
-	struct StructChargingSchedule	ResponseChargingSchedule;
-};
-struct StructGetConfiguration
-{
-	struct StructConfigurationKeyItems 			*Key;
-	struct StructConfigurationKey			 	*ResponseConfigurationKey;
-	struct StructConfigurationKeyItems 			*ResponseUnknownKey;
-
-};
-struct StructGetDiagnostics
-{
-	unsigned char 			Location[256];
-	int 					Retries;
-	int						RetryInterval;
-	unsigned char 			StartTime[28];
-	unsigned char 			StopTime[28];
-	unsigned char 			ResponseFileName[256];
-};
-struct StructGetLocalListVersion
-{
-	int ResponseListVersion;
-};
-struct StructMeterValues
-{
-	int					 			ConnectorId;
-	int 							TransactionId;
-	struct StructMeterValue			*MeterValue;
-};
-struct StructRemoteStartTransaction
-{
-	int								ConnectorId;
-	unsigned char 					IdTag[20];
-	struct StructChargingProfile	ChargingProfile;
-	unsigned char 					ResponseStatus[10];	//Accepted,	Rejected
-	unsigned char 					guid[37];
-};
-struct StructRemoteStopTransaction
-{
-	int 				TransactionId;
-	unsigned char 		ResponseStatus[10];	//Accepted,	Rejected
-};
-struct StructReserveNow
-{
-	int			 		ConnectorId;
-	unsigned char 		ExpiryDate[28];
-	unsigned char 		IdTag[20];
-	unsigned char 		ParentIdTag[20];
-	int					ReservationId;
-	unsigned char 		ResponseStatus[12];		//Accepted, Faulted, Occupied, Rejected, Unavailable
-	unsigned char 		guid[37];   			//OCPP Server request message uuid
-};
-struct StructReset
-{
-	unsigned char		Type[8];			//Hard,	Soft
-	unsigned char 		ResponseStatus[10];	//Accepted,	Rejected
-	unsigned char 		guid[37];   		//OCPP Server request message uuid
-};
-struct StructSendLocalList
-{
-	int										ListVersion;
-	unsigned char 							UpdateType[16];	//Differential,	Full
-	struct StructLocalAuthorizationList		*LocalAuthorizationList;
-	unsigned char 							ResponseStatus[16];	//Accepted,	Failed, NotSupported, VersionMismatch
-};
-struct StructSetChargingProfile
-{
-	int 								ConnectorId;
-	struct StructChargingProfile		ChargingProfile;
-	unsigned char				 		ResponseStatus[16];	//Accepted,	Rejected, NotSupported
-};
-struct StructTriggerMessage
-{
-	unsigned char 		RequestedMessage[32];	/*
-											"BootNotification",
-											"DiagnosticsStatusNotification",
-											"FirmwareStatusNotification",
-											"Heartbeat",
-											"MeterValues",
-											"StatusNotification"
-										*/
-	int					ConnectorId;
-	unsigned char 		ResponseStatus[16];	//Accepted,	Rejected, NotImplemented
-};
-struct StructUnlockConnector
-{
-	int					ConnectorId;
-	unsigned char 		ResponseStatus[16];	//Unlocked,	UnlockFailed, NotSupported
-	unsigned char 		guid[37];   		//OCPP Server request message uuid
-};
-struct StructUpdateFirmware
-{
-	unsigned char 		Location[256];
-	int					Retries;
-	unsigned char 		RetrieveDate[28];
-	int 				RetryInterval;
-};
-
-struct OCPP16ConfigurationItem
-{
-	unsigned char 		ItemName[64];
-	unsigned char 		ItemAccessibility;//0:RO, 1:RW
-	unsigned char 		ItemData[128];
-};
-
-struct OCPP16ConfigurationTable
-{
-	//please refer to OCPP 1.6 chapter 9
-	struct OCPP16ConfigurationItem 			CoreProfile[34];
-	struct OCPP16ConfigurationItem 			LocalAuthListManagementProfile[3];
-	struct OCPP16ConfigurationItem 			ReservationProfile[1];
-	struct OCPP16ConfigurationItem 			SmartChargingProfile[5];
-};
-
-struct OCPP16Data
-{
-		unsigned char 							OcppServerURL[512];		//http: non-secure OCPP 1.5-S, https: secure OCPP 1.5-S, ws: non-secure OCPP 1.6-J, wss: secure OCPP 1.6-J"
-		unsigned char 							ChargeBoxId[128];
-		unsigned char 							OcppConnStatus;			//0: disconnected, 1: connected
-		unsigned int 							Timeout_Secs;
-		unsigned short 							Ping_Pong_Interval;
-		union
-		{
-			//Operations Initiated by Charge Point
-			unsigned char CpMsgValue[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
-			struct
-			{
-				//CpMsgValue[0]
-				unsigned char DataTransferReq:1;	//bit 0,
-				unsigned char DataTransferConf:1;	//bit 1,
-				unsigned char StartTransactionReq:1; //bit 2,
-				unsigned char StartTransactionConf:1;	//bit 3,
-				unsigned char StopTransactionReq:1;	//bit 4,
-				unsigned char StopTransactionConf:1;	//bit 5,
-				unsigned char :2;	//bit 6,7 , reserved
-			} bits[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
-		}CpMsg;
-
-		union
-		{
-			//Operations Initiated by Sequence Point
-			unsigned char SpMsgValue[1];
-			struct
-			{
-				//SpMsgValue[0]
-				unsigned char BootNotificationReq :1;	//bit 0,
-				unsigned char BootNotificationConf :1;	//bit 1,
-				unsigned char AuthorizeReq :1; //bit 2,
-				unsigned char AuthorizeConf :1;	//bit 3,
-				unsigned char DiagnosticsStatusNotificationReq :1;	//bit 4,
-				unsigned char DiagnosticsStatusNotificationConf :1;	//bit 5,
-				unsigned char FirmwareStatusNotificationReq :1; //bit 6,
-				unsigned char FirmwareStatusNotificationConf :1; //bit 7,
-			} bits;
-		} SpMsg;
-
-		union
-		{
-			//Operations Initiated by Central System
-			unsigned char CsMsgValue[3 * (CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY)];
-			struct
-			{
-				//CsMsgValue[0]
-				unsigned char CancelReservationReq :1;	//bit 0,
-				unsigned char CancelReservationConf :1;	//bit 1,
-				unsigned char ChangeAvailabilityReq :1; //bit 2,
-				unsigned char ChangeAvailabilityConf :1;	//bit 3,
-				unsigned char ReserveNowReq :1;	//bit 4,
-				unsigned char ReserveNowConf :1;	//bit 5,
-				unsigned char SetChargingProfileReq :1;	//bit 6,
-				unsigned char SetChargingProfileConf :1;	//bit 7,
-				//CsMsgValue[1]
-				unsigned char TriggerMessageReq :1;	//bit 0,
-				unsigned char TriggerMessageConf :1;	//bit 1,
-				unsigned char UnlockConnectorReq :1; //bit 2,
-				unsigned char UnlockConnectorConf :1;	//bit 3,
-				unsigned char RemoteStartTransactionReq :1;	//bit 4,
-				unsigned char RemoteStartTransactionConf :1; //bit 5,
-				unsigned char RemoteStopTransactionReq :1;	//bit 6,
-				unsigned char RemoteStopTransactionConf :1;	//bit 7,
-				//CsMsgValue[2]
-				unsigned char ClearChargingProfileReq :1;	//bit 0,
-				unsigned char ClearChargingProfileConf :1;	//bit 1,
-				unsigned char DataTransferReq :1; //bit 2,
-				unsigned char DataTransferConf :1;	//bit 3,
-				unsigned char GetCompositeScheduleReq :1;	//bit 4,
-				unsigned char GetCompositeScheduleConf :1;	//bit 5,
-				unsigned char :2;	//bit 6,7
-			} bits[CHAdeMO_QUANTITY + CCS_QUANTITY + GB_QUANTITY];
-		}CsMsg;
-
-		union
-		{
-			//Operations Initiated by Main System
-			unsigned char MsMsgValue[2];
-			struct
-			{
-				//CsMsgValue[0]
-				unsigned char ChangeConfigurationReq :1;	//bit 0,
-				unsigned char ChangeConfigurationConf :1;	//bit 1,
-				unsigned char ClearCacheReq :1;	//bit 2,
-				unsigned char ClearCacheConf :1;	//bit 3,
-				unsigned char GetConfigurationReq :1;	//bit 4,
-				unsigned char GetConfigurationConf :1;	//bit 5,
-				unsigned char UpdateFirmwareReq :1;	//bit 6,
-				unsigned char UpdateFirmwareConf :1;	//bit 7,
-				//CsMsgValue[1]
-				unsigned char GetDiagnosticsReq :1;	//bit 0,
-				unsigned char GetDiagnosticsConf :1;	//bit 1,
-				unsigned char GetLocalListVersionReq :1; //bit 2,
-				unsigned char GetLocalListVersionConf :1;	//bit 3,
-				unsigned char ResetReq :1; //bit 4,
-				unsigned char ResetConf :1;	//bit 5,
-				unsigned char SendLocalListReq :1;	//bit 6,
-				unsigned char SendLocalListConf :1;	//bit 7,
-			} bits;
-		} MsMsg;
-
-		struct StructBootNotification 				BootNotification;
-		struct StructHeartbeat					Heartbeat;
-		struct StructAuthorize		 			Authorize;
-		struct StructStartTransaction				StartTransaction[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructStopTransaction				StopTransaction[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructStatusNotification				StatusNotification[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructCancelReservation			CancelReservation[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructChangeAvailability			ChangeAvailability[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructChangeConfiguration			ChangeConfiguration;
-		struct StructClearCache					ClearCache;
-		struct StructClearChargingProfile			ClearChargingProfile[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructDataTransfer					DataTransfer[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructDiagnosticsStatusNotification	DiagnosticsStatusNotification;
-		struct StructFirmwareStatusNotification		FirmwareStatusNotification;
-		struct StructGetCompositeSchedule		GetCompositeSchedule[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructGetConfiguration				GetConfiguration;
-		struct StructGetDiagnostics				GetDiagnostics;
-		struct StructGetLocalListVersion			GetLocalListVersion;
-		struct StructMeterValues					MeterValues[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructRemoteStartTransaction		RemoteStartTransaction[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructRemoteStopTransaction		RemoteStopTransaction[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructReserveNow					ReserveNow[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructReset						Reset;
-		struct StructSendLocalList				SendLocalList;
-		struct StructSetChargingProfile			SetChargingProfile[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructTriggerMessage				TriggerMessage[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructUnlockConnector			UnlockConnector[CHAdeMO_QUANTITY+ CCS_QUANTITY + GB_QUANTITY];
-		struct StructUpdateFirmware				UpdateFirmware;
-		struct OCPP16ConfigurationTable			ConfigurationTable;
-		struct StructChargingProfile			CHAdeMOChargingProfile[CHAdeMO_QUANTITY];
-		struct StructChargingProfile		    CcsChargingProfile[CCS_QUANTITY];
-};
-
-#endif // DEFINE_H_
-
-
-
-
-
-