summaryrefslogtreecommitdiffstats
path: root/tests/options.proto
AgeCommit message (Collapse)AuthorFilesLines
2013-01-14Add field type FT_IGNORE to generator.Petteri Aimonen1-0/+9
This allows ignoring fields that are unnecessary or too large for an embedded system using nanopb, while allowing them to remain in the .proto for other platforms. Update issue 51 Status: FixedInGit
2013-01-10Add generator option for packed structs.Petteri Aimonen1-0/+8
Usage is: message Foo { option (nanopb_msgopt).packed_struct = true; ... } Valid also in file scope. Update issue 49 Status: FixedInGit
2012-11-14Fix naming of nested Enums with short namesPetteri Aimonen1-0/+11
2012-11-14Fix naming of enums when long_names=false.Petteri Aimonen1-0/+6
Modify test case to check that options.pb.o compiles. Update issue 42 Status: FixedInGit Update issue 43 Status: FixedInGit
2012-10-29Add option to use short names for enum values.Petteri Aimonen1-0/+6
Update issue 38 Status: FixedInGit
2012-10-29Allow defining field type in .proto.Petteri Aimonen1-0/+5
Update issue 30 Status: FixedInGit
2012-10-29Improve .proto options parsing.Petteri Aimonen1-0/+28
Options can now be defined on command line, file, message or in field scope. Update issue 12 Status: Started