Fix cyclic messages support in generator. Beginnings of test.

Update issue 130
Status: Started
This commit is contained in:
Petteri Aimonen
2014-08-28 21:23:28 +03:00
parent 9e866b4853
commit df7234fd8b
5 changed files with 192 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
Import("env")
# Encode cyclic messages with callback fields
c = Copy("$TARGET", "$SOURCE")
env.Command("cyclic_callback.proto", "cyclic.proto", c)
env.NanopbProto(["cyclic_callback", "cyclic_callback.options"])
enc_callback = env.Program(["encode_cyclic_callback.c", "cyclic_callback.pb.c", "$COMMON/pb_encode.o", "$COMMON/pb_common.o"])