mirror of
https://github.com/Martin-P/OpenV2G.git
synced 2024-11-18 12:53:58 +00:00
* adds support for DIN
* get ready for next release git-svn-id: https://svn.code.sf.net/p/openv2g/code/trunk@90 d9f2db14-54d0-4bde-b00c-16405c910529
This commit is contained in:
parent
9c2b711d55
commit
6ab917be66
14 changed files with 25 additions and 9 deletions
|
@ -30,6 +30,7 @@
|
||||||
<tool id="cdt.managedbuild.tool.gnu.c.compiler.mingw.base.1511109002" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.mingw.base">
|
<tool id="cdt.managedbuild.tool.gnu.c.compiler.mingw.base.1511109002" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.mingw.base">
|
||||||
<option id="gnu.c.compiler.option.include.paths.229245493" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath">
|
<option id="gnu.c.compiler.option.include.paths.229245493" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath">
|
||||||
<listOptionValue builtIn="false" value=""../src/codec""/>
|
<listOptionValue builtIn="false" value=""../src/codec""/>
|
||||||
|
<listOptionValue builtIn="false" value=""../src/din""/>
|
||||||
<listOptionValue builtIn="false" value=""../src/appHandshake""/>
|
<listOptionValue builtIn="false" value=""../src/appHandshake""/>
|
||||||
<listOptionValue builtIn="false" value=""../src/transport""/>
|
<listOptionValue builtIn="false" value=""../src/transport""/>
|
||||||
<listOptionValue builtIn="false" value=""../src/test""/>
|
<listOptionValue builtIn="false" value=""../src/test""/>
|
||||||
|
@ -89,6 +90,7 @@
|
||||||
<tool id="cdt.managedbuild.tool.gnu.c.compiler.mingw.base.2107890734" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.mingw.base">
|
<tool id="cdt.managedbuild.tool.gnu.c.compiler.mingw.base.2107890734" name="GCC C Compiler" superClass="cdt.managedbuild.tool.gnu.c.compiler.mingw.base">
|
||||||
<option id="gnu.c.compiler.option.include.paths.289860304" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath">
|
<option id="gnu.c.compiler.option.include.paths.289860304" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath">
|
||||||
<listOptionValue builtIn="false" value=""../src/codec""/>
|
<listOptionValue builtIn="false" value=""../src/codec""/>
|
||||||
|
<listOptionValue builtIn="false" value=""../src/din""/>
|
||||||
<listOptionValue builtIn="false" value=""../src/appHandshake""/>
|
<listOptionValue builtIn="false" value=""../src/appHandshake""/>
|
||||||
<listOptionValue builtIn="false" value=""../src/transport""/>
|
<listOptionValue builtIn="false" value=""../src/transport""/>
|
||||||
<listOptionValue builtIn="false" value=""../src/test""/>
|
<listOptionValue builtIn="false" value=""../src/test""/>
|
||||||
|
|
|
@ -10,6 +10,7 @@ RM := rm -rf
|
||||||
-include sources.mk
|
-include sources.mk
|
||||||
-include src/transport/subdir.mk
|
-include src/transport/subdir.mk
|
||||||
-include src/test/subdir.mk
|
-include src/test/subdir.mk
|
||||||
|
-include src/din/subdir.mk
|
||||||
-include src/codec/subdir.mk
|
-include src/codec/subdir.mk
|
||||||
-include src/appHandshake/subdir.mk
|
-include src/appHandshake/subdir.mk
|
||||||
-include subdir.mk
|
-include subdir.mk
|
||||||
|
|
|
@ -15,6 +15,7 @@ EXECUTABLES :=
|
||||||
SUBDIRS := \
|
SUBDIRS := \
|
||||||
src/transport \
|
src/transport \
|
||||||
src/test \
|
src/test \
|
||||||
|
src/din \
|
||||||
src/codec \
|
src/codec \
|
||||||
src/appHandshake \
|
src/appHandshake \
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ C_DEPS += \
|
||||||
src/appHandshake/%.o: ../src/appHandshake/%.c
|
src/appHandshake/%.o: ../src/appHandshake/%.c
|
||||||
@echo 'Building file: $<'
|
@echo 'Building file: $<'
|
||||||
@echo 'Invoking: GCC C Compiler'
|
@echo 'Invoking: GCC C Compiler'
|
||||||
gcc -I"../src/codec" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
gcc -I"../src/codec" -I"../src/din" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||||
@echo 'Finished building: $<'
|
@echo 'Finished building: $<'
|
||||||
@echo ' '
|
@echo ' '
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ C_DEPS += \
|
||||||
src/codec/%.o: ../src/codec/%.c
|
src/codec/%.o: ../src/codec/%.c
|
||||||
@echo 'Building file: $<'
|
@echo 'Building file: $<'
|
||||||
@echo 'Invoking: GCC C Compiler'
|
@echo 'Invoking: GCC C Compiler'
|
||||||
gcc -I"../src/codec" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
gcc -I"../src/codec" -I"../src/din" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||||
@echo 'Finished building: $<'
|
@echo 'Finished building: $<'
|
||||||
@echo ' '
|
@echo ' '
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ C_DEPS += \
|
||||||
src/test/%.o: ../src/test/%.c
|
src/test/%.o: ../src/test/%.c
|
||||||
@echo 'Building file: $<'
|
@echo 'Building file: $<'
|
||||||
@echo 'Invoking: GCC C Compiler'
|
@echo 'Invoking: GCC C Compiler'
|
||||||
gcc -I"../src/codec" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
gcc -I"../src/codec" -I"../src/din" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||||
@echo 'Finished building: $<'
|
@echo 'Finished building: $<'
|
||||||
@echo ' '
|
@echo ' '
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ C_DEPS += \
|
||||||
src/transport/%.o: ../src/transport/%.c
|
src/transport/%.o: ../src/transport/%.c
|
||||||
@echo 'Building file: $<'
|
@echo 'Building file: $<'
|
||||||
@echo 'Invoking: GCC C Compiler'
|
@echo 'Invoking: GCC C Compiler'
|
||||||
gcc -I"../src/codec" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
gcc -I"../src/codec" -I"../src/din" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -O0 -g3 -Wall -c -fmessage-length=0 -ansi -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||||
@echo 'Finished building: $<'
|
@echo 'Finished building: $<'
|
||||||
@echo ' '
|
@echo ' '
|
||||||
|
|
||||||
|
|
12
README.txt
12
README.txt
|
@ -1,6 +1,6 @@
|
||||||
-------------------------------------------------------------------------
|
-------------------------------------------------------------------------
|
||||||
OpenV2G - an open source project implementing the basic functionality of the ISO IEC 15118 vehicle to grid (V2G) communication interface
|
OpenV2G - an open source project implementing the basic functionality of the ISO IEC 15118 vehicle to grid (V2G) communication interface
|
||||||
Version 0.9, released June 19, 2014
|
Version 0.9.1, released August ??, 2014
|
||||||
http://openv2g.sourceforge.net/
|
http://openv2g.sourceforge.net/
|
||||||
|
|
||||||
Please report bugs via the SourceForge bug tracking system at http://sourceforge.net/tracker/?group_id=350113.
|
Please report bugs via the SourceForge bug tracking system at http://sourceforge.net/tracker/?group_id=350113.
|
||||||
|
@ -21,6 +21,16 @@ GNU Lesser General Public License for more details.
|
||||||
You should have received a copy of the GNU Lesser General Public License
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------------
|
||||||
|
CHANGES from version 0.9:
|
||||||
|
-------------------------------------------------------------------------
|
||||||
|
* includes DIN support and interoperability with OpenV2G 0.7
|
||||||
|
(needs to be switched on though by #define DEPLOY_DIN_CODEC)
|
||||||
|
* fixes warnings for Visual Studio
|
||||||
|
* Note: OpenV2G 0.9.1 is a superset of previous versions
|
||||||
|
v2g...c/h files support ISO track
|
||||||
|
din...c/h files support DIN track
|
||||||
|
|
||||||
-------------------------------------------------------------------------
|
-------------------------------------------------------------------------
|
||||||
CHANGES from version 0.8:
|
CHANGES from version 0.8:
|
||||||
-------------------------------------------------------------------------
|
-------------------------------------------------------------------------
|
||||||
|
|
|
@ -10,6 +10,7 @@ RM := rm -rf
|
||||||
-include sources.mk
|
-include sources.mk
|
||||||
-include src/transport/subdir.mk
|
-include src/transport/subdir.mk
|
||||||
-include src/test/subdir.mk
|
-include src/test/subdir.mk
|
||||||
|
-include src/din/subdir.mk
|
||||||
-include src/codec/subdir.mk
|
-include src/codec/subdir.mk
|
||||||
-include src/appHandshake/subdir.mk
|
-include src/appHandshake/subdir.mk
|
||||||
-include subdir.mk
|
-include subdir.mk
|
||||||
|
|
|
@ -15,6 +15,7 @@ EXECUTABLES :=
|
||||||
SUBDIRS := \
|
SUBDIRS := \
|
||||||
src/transport \
|
src/transport \
|
||||||
src/test \
|
src/test \
|
||||||
|
src/din \
|
||||||
src/codec \
|
src/codec \
|
||||||
src/appHandshake \
|
src/appHandshake \
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ C_DEPS += \
|
||||||
src/appHandshake/%.o: ../src/appHandshake/%.c
|
src/appHandshake/%.o: ../src/appHandshake/%.c
|
||||||
@echo 'Building file: $<'
|
@echo 'Building file: $<'
|
||||||
@echo 'Invoking: GCC C Compiler'
|
@echo 'Invoking: GCC C Compiler'
|
||||||
gcc -I"../src/codec" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -Os -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
gcc -I"../src/codec" -I"../src/din" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -Os -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||||
@echo 'Finished building: $<'
|
@echo 'Finished building: $<'
|
||||||
@echo ' '
|
@echo ' '
|
||||||
|
|
||||||
|
|
|
@ -59,7 +59,7 @@ C_DEPS += \
|
||||||
src/codec/%.o: ../src/codec/%.c
|
src/codec/%.o: ../src/codec/%.c
|
||||||
@echo 'Building file: $<'
|
@echo 'Building file: $<'
|
||||||
@echo 'Invoking: GCC C Compiler'
|
@echo 'Invoking: GCC C Compiler'
|
||||||
gcc -I"../src/codec" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -Os -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
gcc -I"../src/codec" -I"../src/din" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -Os -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||||
@echo 'Finished building: $<'
|
@echo 'Finished building: $<'
|
||||||
@echo ' '
|
@echo ' '
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ C_DEPS += \
|
||||||
src/test/%.o: ../src/test/%.c
|
src/test/%.o: ../src/test/%.c
|
||||||
@echo 'Building file: $<'
|
@echo 'Building file: $<'
|
||||||
@echo 'Invoking: GCC C Compiler'
|
@echo 'Invoking: GCC C Compiler'
|
||||||
gcc -I"../src/codec" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -Os -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
gcc -I"../src/codec" -I"../src/din" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -Os -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||||
@echo 'Finished building: $<'
|
@echo 'Finished building: $<'
|
||||||
@echo ' '
|
@echo ' '
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ C_DEPS += \
|
||||||
src/transport/%.o: ../src/transport/%.c
|
src/transport/%.o: ../src/transport/%.c
|
||||||
@echo 'Building file: $<'
|
@echo 'Building file: $<'
|
||||||
@echo 'Invoking: GCC C Compiler'
|
@echo 'Invoking: GCC C Compiler'
|
||||||
gcc -I"../src/codec" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -Os -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
gcc -I"../src/codec" -I"../src/din" -I"../src/appHandshake" -I"../src/transport" -I"../src/test" -Os -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||||
@echo 'Finished building: $<'
|
@echo 'Finished building: $<'
|
||||||
@echo ' '
|
@echo ' '
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue