Add GenCode support to dsd

This commit is contained in:
Daniel 2019-07-19 21:29:26 +02:00
parent 0de310503a
commit 3b68c8ea4c
5 changed files with 1037 additions and 43 deletions

23
formats/dsd/tests.gencode Normal file
View file

@ -0,0 +1,23 @@
struct SimpleTestStruct {
S string
B byte
}
struct GenCodeTestStructure {
I8 int8
I16 int16
I32 int32
I64 int64
UI8 uint8
UI16 uint16
UI32 uint32
UI64 uint64
S string
Sp *string
Sa []string
Sap *[]string
B byte
Bp *byte
Ba []byte
Bap *[]byte
}