浏览代码

2020-09-15 / Alston Lin
Actions
1. modify makefile for eventlogging task to use db function.

Files
1. As follow commit history

Alston 4 年之前
父节点
当前提交
a750ea0a1a
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      EVSE/Projects/DS60-120/Apps/Makefile

+ 2 - 2
EVSE/Projects/DS60-120/Apps/Makefile

@@ -32,8 +32,8 @@ EvCommTask:
 	
 EventLoggingTask:
 	rm -f Module_EventLogging;
-	$(CC) -D $(Project) -includeConfig.h -O0 -g3 -Wall -c -fmessage-length=0 -o Module_EventLogging.o Module_EventLogging.c
-	$(CC) -o Module_EventLogging Module_EventLogging.o 	
+	$(CC) -D $(Project) -include../../../Modularization/ocppfiles/sqlite3.h -includeConfig.h -O0 -g3 -Wall -c -fmessage-length=0 -o Module_EventLogging.o Module_EventLogging.c
+	$(CC) -o Module_EventLogging Module_EventLogging.o ${Lib_SQLite3}	
 	cp -f Module_EventLogging ../Images/root	
 	
 InternalCommTask: