mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-30 08:51:19 +01:00
- 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
13 lines
194 B
Protocol Buffer
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;
|
|
}
|