Browse Source

2019-10-08 / Jerry Wang
Actions:
1. Modify the Wifi connection logic and fix the problem that it can't get IP info.
Files:
1. Module_Wifi.c

8054 5 years ago
parent
commit
1274feafe0
1 changed files with 1 additions and 7 deletions
  1. 1 7
      EVSE/Modularization/Makefile

+ 1 - 7
EVSE/Modularization/Makefile

@@ -1,7 +1,7 @@
 -include ../../Rules.make
 export PATH=/bin:/sbin:/usr/bin:$(SDK_PATH_TARGET)/usr/bin:$PATH
 
-all: Module_RFIDLib Module_Wifi Module_CSU WebServiceLib OcppBackend
+all: Module_RFIDLib Module_Wifi WebServiceLib OcppBackend
 
 
 clean:
@@ -23,12 +23,6 @@ Module_Wifi:
 	$(CC) -o Module_Wifi Module_Wifi.o
 	rm -f Module_Wifi.o
 
-Module_CSU:
-	rm -f Module_CSU
-	$(CC) -O0 -g3 -Wall -c -fmessage-length=0 -o Module_CSU.o main.c
-	$(CC) -o Module_CSU Module_CSU.o
-	rm -f Module_CSU.o
-	
 WebServiceLib:
 	rm -f WebService
 	$(CC) -I ../GPL/json-c-json-c-0.13.1-20180305/release/include/json-c -O0 -g3 -Wall -c -fmessage-length=0 -o WebService.o -ljson-c -w WebService.c