Browse Source

2020.05.27 / TC Hsu

Actions: Add new struct LedModuleData for LED control using, correct the comment about the version of RelayModuleData.

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

Hardware PWB P/N : N/A
Hardware Version : N/A

Files:

	modified:   EVSE/Projects/define.h
TC_Hsu 4 years ago
parent
commit
a702544272
1 changed files with 14 additions and 1 deletions
  1. 14 1
      EVSE/Projects/define.h

+ 14 - 1
EVSE/Projects/define.h

@@ -119,6 +119,7 @@ Storage							0x0A200000-0x7FFFFFFF		1886 MB
 #define ShmRelayBdKey			1008
 #define ShmOcppModuleKey		1009
 #define ShmGBTCommKey			1010
+#define ShmLedBdKey				1011
 
 /**************************************************************************************/
 /****************** Share memory configuration value constant define ******************/
@@ -3364,7 +3365,7 @@ struct FanModuleData
 struct RelayModuleData
 {
 	unsigned char 	SelfTest_Comp;
-	unsigned char	version[16];				//fan power module firmware version
+	unsigned char	version[16];				//relay module firmware version
 	unsigned short	InputL1Volt;				//XXXXX.x volt
 	unsigned short	InputL2Volt;				//XXXXX.x volt
 	unsigned short	InputL3Volt;				//XXXXX.x volt
@@ -3377,6 +3378,18 @@ struct RelayModuleData
 	unsigned char	UpdateFW;				//1:do update
 };
 
+/**************************************************************************************/
+/***********Led control module Communication Share memory******************/
+/**************************************************************************************/
+struct LedModuleData
+{
+	unsigned char 	SelfTest_Comp;
+	unsigned char	version[16];				//led module firmware version
+	unsigned short	Connect_1_Status;			// Idle : 0, Charging : 1, Alarm : 2
+	unsigned short	Connect_2_Status;			// Idle : 0, Charging : 1, Alarm : 2
+	unsigned short	EnableFunc;					// reserved
+};
+
 /**************************************************************************************/
 /************************OCPP Share memory***************************************/
 /**************************************************************************************/