History log of /seL4-test-master/tools/nanopb/tests/basic_stream/decode_stream.c
Revision Date Author Comments
# ec3bff4b 04-Aug-2014 Petteri Aimonen <jpa@git.mail.kapsi.fi>

Generate #defines for initializing message structures.

Usage like:
MyMessage foo = MyMessage_init_default;

MyMessage_init_default will initialize to default values defined in .proto.

MyMessage_init_zero will initialize to null/zero values. Same results as {}
or {0}, but will avoid compiler warnings by initializing everything explicitly.

Update issue 79
Status: FixedInGit


# b9f14bdd 11-Sep-2013 Petteri Aimonen <jpa@git.mail.kapsi.fi>

Make all the tests ANSI C compatible.


# 262c6267 08-Sep-2013 Petteri Aimonen <jpa@git.mail.kapsi.fi>

Start moving the tests into subfolders. Transition to SCons for build system for the tests.

Only a few tests updated so far. Have to include all the rest before merging to mainline.

Update issue 63
Status: Started