Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ message Communication {
VIDEO video = 5;
// New communication type for goldfish emulator control
GoldfishEmulatorControl goldfish_emulator_control = 6;
// New communication type for dJar controller control
DjarControl djar_control = 7;
}
}

Expand All @@ -106,6 +108,17 @@ message GoldfishEmulatorControl {
}
}

// New message to support dJar controller control
message DjarControl {
oneof port {
// The name of the port, originating from LHP's port registry.
string port_name = 1;

// The direct port number if available.
int32 port_number = 2;
}
}

message CommunicationList {
repeated Communication communication = 1;
}
Loading