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
9 changes: 8 additions & 1 deletion api/nodes/optical_stimulation.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,23 @@ syntax = "proto3";

package synapse;

message DisplayMap {
repeated uint32 row_map = 1;
repeated uint32 col_map = 2;
}

message OpticalStimulationConfig {
uint32 peripheral_id = 1;
repeated uint32 pixel_mask = 2;
uint32 bit_width = 3;
uint32 frame_rate = 4;
float gain = 5;

// Instruct the FPGA to send out a 1xN vector
// Instruct the FPGA to send out a 1xN vector
// where N is the number of LEDs with each Axon frame
bool send_receipts = 6;

DisplayMap display_map = 7;
}

// Core frame type for LED array optical stimulation
Expand Down
Loading