mirror of
https://github.com/Martin-P/OpenV2G.git
synced 2024-11-08 12:45:42 +00:00
* fixes name table entries issue
git-svn-id: https://svn.code.sf.net/p/openv2g/code/trunk@54 d9f2db14-54d0-4bde-b00c-16405c910529
This commit is contained in:
parent
32078408b5
commit
e8ba2a611c
4 changed files with 1122 additions and 1120 deletions
|
@ -40,8 +40,8 @@
|
|||
<option id="gnu.c.compiler.option.debugging.level.890071608" name="Debug Level" superClass="gnu.c.compiler.option.debugging.level" value="gnu.c.debugging.level.max" valueType="enumerated"/>
|
||||
<option id="gnu.c.compiler.option.warnings.pedantic.1983095151" name="Pedantic (-pedantic)" superClass="gnu.c.compiler.option.warnings.pedantic" value="true" valueType="boolean"/>
|
||||
<option id="gnu.c.compiler.option.misc.ansi.1916749690" name="Support ANSI programs (-ansi)" superClass="gnu.c.compiler.option.misc.ansi" value="true" valueType="boolean"/>
|
||||
<option id="gnu.c.compiler.option.warnings.toerrors.990186240" superClass="gnu.c.compiler.option.warnings.toerrors" value="false" valueType="boolean"/>
|
||||
<option id="gnu.c.compiler.option.warnings.pedantic.error.145905553" superClass="gnu.c.compiler.option.warnings.pedantic.error" value="true" valueType="boolean"/>
|
||||
<option id="gnu.c.compiler.option.warnings.toerrors.990186240" name="Warnings as errors (-Werror)" superClass="gnu.c.compiler.option.warnings.toerrors" value="false" valueType="boolean"/>
|
||||
<option id="gnu.c.compiler.option.warnings.pedantic.error.145905553" name="Pedantic warnings as errors (-pedantic-errors)" superClass="gnu.c.compiler.option.warnings.pedantic.error" value="true" valueType="boolean"/>
|
||||
<inputType id="cdt.managedbuild.tool.gnu.c.compiler.input.1904654876" superClass="cdt.managedbuild.tool.gnu.c.compiler.input"/>
|
||||
</tool>
|
||||
<tool id="cdt.managedbuild.tool.gnu.c.linker.mingw.base.1907160138" name="MinGW C Linker" superClass="cdt.managedbuild.tool.gnu.c.linker.mingw.base">
|
||||
|
@ -588,6 +588,8 @@
|
|||
<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">
|
||||
<listOptionValue builtIn="false" value=""${workspace_loc:/OpenV2G/src/codec}""/>
|
||||
<listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/src/appHandshake}""/>
|
||||
<listOptionValue builtIn="false" value=""${workspace_loc:/${ProjName}/src/codec/appHandCodec}""/>
|
||||
<listOptionValue builtIn="false" value=""${workspace_loc:/OpenV2G/src/transport}""/>
|
||||
<listOptionValue builtIn="false" value=""${workspace_loc:/OpenV2G/src/service}""/>
|
||||
<listOptionValue builtIn="false" value=""${workspace_loc:/OpenV2G/src/test}""/>
|
||||
|
|
|
@ -179,7 +179,7 @@ struct exiNamePartition localNamePartitions[9] = {
|
|||
#endif /*EXI_DEBUG*/
|
||||
|
||||
#if EXI_DEBUG == EXI_DEBUG_OFF
|
||||
struct exiNamePartition localNamePartitions[9] = {
|
||||
static struct exiNamePartition localNamePartitions[9] = {
|
||||
{ 9 },
|
||||
{ 4 },
|
||||
{ 2 },
|
||||
|
|
|
@ -75,7 +75,7 @@ char * uris[] = {
|
|||
#endif /*EXI_DEBUG*/
|
||||
|
||||
#if EXI_DEBUG == EXI_DEBUG_ON
|
||||
struct exiNamePartition localNamePartitions[5] = {
|
||||
static struct exiNamePartition localNamePartitions[5] = {
|
||||
{ 7, localNames0 },
|
||||
{ 4, localNames1 },
|
||||
{ 2, localNames2 },
|
||||
|
|
|
@ -33,10 +33,10 @@
|
|||
|
||||
int main(int argc, char *argv[]) {
|
||||
/* EXI codec only */
|
||||
/*return main_codec(argc, argv); */
|
||||
return main_codec(argc, argv);
|
||||
|
||||
/* V2G client / service example scenario */
|
||||
return main_service(argc, argv);
|
||||
/*return main_service(argc, argv); */
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue