1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-30 08:51:19 +01:00
RIOT/tests/pkg/nanopb/simple.proto
Daniel Lockau 10b93d45ed tests/pkg/nanopb: cover recent google protobuf changes
- update test in tests/pkg/nanopb to detect recent
  google.protobuf changes
- test still runs with google.protobuf 4.21.12
- test now fails with google.protobuf 6.31.1 due to removal of
  deprecated api parts
2025-07-10 12:36:45 +02:00

13 lines
194 B
Protocol Buffer

// A very simple protocol definition, consisting of only
// one message.
syntax = "proto2";
message SimpleMessage {
enum Enum {
lucky = 13;
};
optional Enum number = 1;
}