Start of 5.X work

This commit is contained in:
Sebastien L
2025-03-18 17:38:34 -04:00
parent c0ddf0a997
commit 73bd096f37
442 changed files with 227862 additions and 21075 deletions

View File

@@ -0,0 +1,20 @@
syntax = "proto3";
package sys.telnet;
import "nanopb.proto";
import "customoptions.proto";
option (nanopb_fileopt).enum_to_string = true;
enum output {
SERIAL_ONLY = 0;
TELNET = 1;
TELNET_SERIAL = 2;
}
message config {
option (nanopb_msgopt).packed_struct = true;
output enable = 1 [(cust_field).v_enum = "TELNET_SERIAL"];
uint32 block = 2 [(nanopb).int_size = IS_16, (cust_field).v_uint32=500];
uint32 buffer = 3 [(nanopb).int_size = IS_16, (cust_field).v_uint32=40000];
}