mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-10 13:37:03 +03:00
25 lines
293 B
Protocol Buffer
25 lines
293 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package sys.dev.common;
|
|
import "nanopb.proto";
|
|
option (nanopb_fileopt).enum_to_string = true;
|
|
|
|
enum types {
|
|
UNKNOWN = 0;
|
|
SPI = 1;
|
|
I2C = 2;
|
|
RMII = 3;
|
|
}
|
|
|
|
enum ports {
|
|
UNSPECIFIED = 0;
|
|
SYSTEM = 1;
|
|
DAC = 2;
|
|
}
|
|
|
|
enum hosts {
|
|
NONE = 0;
|
|
Host0 = 1;
|
|
Host1 = 2;
|
|
}
|