Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 0 additions & 10 deletions api/node.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ syntax = "proto3";

package synapse;

import "api/datatype.proto";
import "api/nodes/broadband_source.proto";
import "api/nodes/electrical_stimulation.proto";
import "api/nodes/optical_stimulation.proto";
Expand Down Expand Up @@ -70,12 +69,3 @@ message NodeConnection {
uint32 src_node_id = 1;
uint32 dst_node_id = 2;
}

message NodeSocket {
uint32 node_id = 1;
string bind = 2;
DataType data_type = 3;
NodeType type = 4;
string label = 5;
repeated uint32 shape = 6;
}
3 changes: 2 additions & 1 deletion api/status.proto
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ message Status {
string message = 1;
StatusCode code = 2;
DeviceState state = 3;
repeated NodeSocket sockets = 4;
// repeated NodeSocket sockets = 4;
reserved 4;
DevicePower power = 5;
DeviceStorage storage = 6;
SignalChainStatus signal_chain = 7;
Expand Down