Goby3 3.3.0
2025.07.10
Loading...
Searching...
No Matches
pty_config.proto
Go to the documentation of this file.
1syntax = "proto2";
2
3import "goby/protobuf/option_extensions.proto";
4
5package goby.middleware.protobuf;
6
7message PTYConfig
8{
9 required string port = 1 [(goby.field) = {
10 example: "/tmp/ttytest0"
11 description: "Name for created PTY device symlink."
12 }];
13 optional uint32 baud = 2 [
14 default = 115200,
15 (goby.field) = {description: "Serial baud for PTY device"}
16 ];
17 optional string end_of_line = 3 [
18 default = "\n",
19 (goby.field) = {
20 description: "End of line string. Can also be a std::regex"
21 }
22 ];
23}