Skip to content

Commit

Permalink
redo the nanopb upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
dgquintas committed Feb 24, 2016
1 parent cbff80e commit 2173edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/nanopb
Submodule nanopb updated 60 files
+54 −0 .travis.yml
+10 −1 CHANGELOG.txt
+14 −8 README.md
+1 −2 examples/cmake_simple/CMakeLists.txt
+6 −3 examples/cmake_simple/simple.c
+2 −0 examples/cmake_simple/simple.proto
+2 −0 examples/network_server/fileproto.proto
+6 −3 examples/simple/simple.c
+2 −0 examples/simple/simple.proto
+2 −0 examples/using_double_on_avr/doubleproto.proto
+2 −0 examples/using_union_messages/unionproto.proto
+33 −24 extra/FindNanopb.cmake
+537 −434 generator/nanopb_generator.py
+3 −0 generator/proto/nanopb.proto
+1 −2 generator/protoc-gen-nanopb
+3 −2 pb.h
+2 −1 pb_decode.c
+3 −0 tests/alltypes/alltypes.proto
+2 −0 tests/backwards_compatibility/alltypes_legacy.proto
+2 −0 tests/callbacks/callbacks.proto
+2 −0 tests/common/person.proto
+2 −0 tests/common/unittestproto.proto
+2 −0 tests/cyclic_messages/cyclic.proto
+12 −0 tests/enum_sizes/SConscript
+86 −0 tests/enum_sizes/enumsizes.proto
+72 −0 tests/enum_sizes/enumsizes_unittests.c
+2 −0 tests/extensions/extensions.proto
+2 −0 tests/field_size_16/alltypes.proto
+2 −0 tests/field_size_32/alltypes.proto
+13 −6 tests/fuzztest/SConscript
+1 −1 tests/fuzztest/fuzzstub.c
+101 −0 tests/fuzztest/generate_message.c
+2 −0 tests/intsizes/intsizes.proto
+2 −0 tests/message_sizes/messages1.proto
+2 −0 tests/message_sizes/messages2.proto
+2 −0 tests/missing_fields/missing_fields.proto
+3 −3 tests/multiple_files/SConscript
+0 −9 tests/multiple_files/callbacks2.proto
+1 −0 tests/multiple_files/multifile1.options
+18 −0 tests/multiple_files/multifile1.proto
+22 −0 tests/multiple_files/multifile2.proto
+12 −2 tests/multiple_files/test_multiple_files.c
+2 −0 tests/no_messages/no_messages.proto
+2 −0 tests/oneof/oneof.proto
+2 −0 tests/options/options.proto
+9 −7 tests/package_name/SConscript
+2 −0 tests/regression/issue_118/enumdef.proto
+2 −0 tests/regression/issue_118/enumuse.proto
+2 −0 tests/regression/issue_125/extensionbug.proto
+2 −0 tests/regression/issue_141/testproto.proto
+2 −0 tests/regression/issue_145/comments.proto
+13 −0 tests/regression/issue_166/SConscript
+43 −0 tests/regression/issue_166/enum_encoded_size.c
+18 −0 tests/regression/issue_166/enums.proto
+16 −0 tests/regression/issue_172/SConscript
+9 −0 tests/regression/issue_172/msg_size.c
+1 −0 tests/regression/issue_172/submessage/submessage.options
+4 −0 tests/regression/issue_172/submessage/submessage.proto
+6 −0 tests/regression/issue_172/test.proto
+1 −0 tests/special_characters/funny-proto+name has.characters.proto

0 comments on commit 2173edf

Please sign in to comment.