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