Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions api/device.proto
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,18 @@ message Peripheral {
}

message DeviceInfo {
enum Type {
kScifi = 0;
kSciwave = 1;
}
string name = 1;
string serial = 2;
uint32 synapse_version = 3;
uint32 firmware_version = 4;
Status status = 5;
repeated Peripheral peripherals = 6;
DeviceConfiguration configuration = 7;
Type device_type = 8;
}

message DeviceConfiguration {
Expand Down