Skip to content

Commit b64f296

Browse files
committed
config: add WPT and ACDP
Signed-off-by: Moritz Barsnick <[email protected]>
1 parent d98c82b commit b64f296

File tree

1 file changed

+114
-0
lines changed

1 file changed

+114
-0
lines changed

src/config.py

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -611,4 +611,118 @@
611611
'iso20_DC_Datatypes.h', 'iso20_DC_Encoder.h']
612612
}
613613
},
614+
'iso20_WPT_Datatypes': {
615+
'schema': 'ISO_15118-20/FDIS/V2G_CI_WPT.xsd',
616+
'prefix': 'iso20_wpt_',
617+
'type': 'converter',
618+
'folder': 'iso-20',
619+
'h': {
620+
'filename': 'iso20_WPT_Datatypes.h',
621+
'identifier': 'ISO20_WPT_DATATYPES_H',
622+
'include_std_lib': ['stdint.h'],
623+
'include_other': ['exi_basetypes.h']
624+
},
625+
'c': {
626+
'filename': 'iso20_WPT_Datatypes.c',
627+
'identifier': 'ISO20_WPT_DATATYPES_C',
628+
'include_std_lib': [],
629+
'include_other': ['iso20_WPT_Datatypes.h']
630+
}
631+
},
632+
'iso20_WPT_Decoder': {
633+
'schema': 'ISO_15118-20/FDIS/V2G_CI_WPT.xsd',
634+
'prefix': 'iso20_wpt_',
635+
'type': 'decoder',
636+
'folder': 'iso-20',
637+
'h': {
638+
'filename': 'iso20_WPT_Decoder.h',
639+
'identifier': 'ISO20_WPT_DECODER_H',
640+
'include_std_lib': [],
641+
'include_other': ['exi_bitstream.h', 'iso20_WPT_Datatypes.h']
642+
},
643+
'c': {
644+
'filename': 'iso20_WPT_Decoder.c',
645+
'identifier': 'ISO20_WPT_DECODER_C',
646+
'include_std_lib': ['stdint.h'],
647+
'include_other': ['exi_basetypes.h', 'exi_types_decoder.h', 'exi_basetypes_decoder.h',
648+
'exi_error_codes.h', 'exi_header.h', 'iso20_WPT_Datatypes.h',
649+
'iso20_WPT_Decoder.h']
650+
}
651+
},
652+
'iso20_WPT_Encoder': {
653+
'schema': 'ISO_15118-20/FDIS/V2G_CI_WPT.xsd',
654+
'prefix': 'iso20_wpt_',
655+
'type': 'encoder',
656+
'folder': 'iso-20',
657+
'h': {
658+
'filename': 'iso20_WPT_Encoder.h',
659+
'identifier': 'ISO20_WPT_ENCODER_H',
660+
'include_std_lib': [],
661+
'include_other': ['exi_bitstream.h', 'iso20_WPT_Datatypes.h']
662+
},
663+
'c': {
664+
'filename': 'iso20_WPT_Encoder.c',
665+
'identifier': 'ISO20_WPT_ENCODER_C',
666+
'include_std_lib': ['stdint.h'],
667+
'include_other': ['exi_basetypes.h', 'exi_basetypes_encoder.h', 'exi_error_codes.h', 'exi_header.h',
668+
'iso20_WPT_Datatypes.h', 'iso20_WPT_Encoder.h']
669+
}
670+
},
671+
'iso20_ACDP_Datatypes': {
672+
'schema': 'ISO_15118-20/FDIS/V2G_CI_ACDP.xsd',
673+
'prefix': 'iso20_acdp_',
674+
'type': 'converter',
675+
'folder': 'iso-20',
676+
'h': {
677+
'filename': 'iso20_ACDP_Datatypes.h',
678+
'identifier': 'ISO20_ACDP_DATATYPES_H',
679+
'include_std_lib': ['stdint.h'],
680+
'include_other': ['exi_basetypes.h']
681+
},
682+
'c': {
683+
'filename': 'iso20_ACDP_Datatypes.c',
684+
'identifier': 'ISO20_ACDP_DATATYPES_C',
685+
'include_std_lib': [],
686+
'include_other': ['iso20_ACDP_Datatypes.h']
687+
}
688+
},
689+
'iso20_ACDP_Decoder': {
690+
'schema': 'ISO_15118-20/FDIS/V2G_CI_ACDP.xsd',
691+
'prefix': 'iso20_acdp_',
692+
'type': 'decoder',
693+
'folder': 'iso-20',
694+
'h': {
695+
'filename': 'iso20_ACDP_Decoder.h',
696+
'identifier': 'ISO20_ACDP_DECODER_H',
697+
'include_std_lib': [],
698+
'include_other': ['exi_bitstream.h', 'iso20_ACDP_Datatypes.h']
699+
},
700+
'c': {
701+
'filename': 'iso20_ACDP_Decoder.c',
702+
'identifier': 'ISO20_ACDP_DECODER_C',
703+
'include_std_lib': ['stdint.h'],
704+
'include_other': ['exi_basetypes.h', 'exi_types_decoder.h', 'exi_basetypes_decoder.h',
705+
'exi_error_codes.h', 'exi_header.h', 'iso20_ACDP_Datatypes.h',
706+
'iso20_ACDP_Decoder.h']
707+
}
708+
},
709+
'iso20_ACDP_Encoder': {
710+
'schema': 'ISO_15118-20/FDIS/V2G_CI_ACDP.xsd',
711+
'prefix': 'iso20_acdp_',
712+
'type': 'encoder',
713+
'folder': 'iso-20',
714+
'h': {
715+
'filename': 'iso20_ACDP_Encoder.h',
716+
'identifier': 'ISO20_ACDP_ENCODER_H',
717+
'include_std_lib': [],
718+
'include_other': ['exi_bitstream.h', 'iso20_ACDP_Datatypes.h']
719+
},
720+
'c': {
721+
'filename': 'iso20_ACDP_Encoder.c',
722+
'identifier': 'ISO20_ACDP_ENCODER_C',
723+
'include_std_lib': ['stdint.h'],
724+
'include_other': ['exi_basetypes.h', 'exi_basetypes_encoder.h', 'exi_error_codes.h', 'exi_header.h',
725+
'iso20_ACDP_Datatypes.h', 'iso20_ACDP_Encoder.h']
726+
}
727+
},
614728
}

0 commit comments

Comments
 (0)