mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
10 lines
180 B
Protocol Buffer
10 lines
180 B
Protocol Buffer
// A very simple protocol definition, consisting of only
|
|
// one message.
|
|
|
|
syntax = "proto2";
|
|
import "nanopb.proto";
|
|
|
|
message SimpleMessage {
|
|
required int32 lucky_number = 1;
|
|
}
|