You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
343 B
12 lines
343 B
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"])
|
|
|
|
|