Skip to content
Open
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
5 changes: 3 additions & 2 deletions api/nodes/signal_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ package synapse;

message ElectrodeConfig {
repeated Channel channels = 1;
float low_cutoff_hz = 2;
float high_cutoff_hz = 3;
reserved 2, 3;
float low_pass_corner_hz = 4;
float high_pass_corner_hz = 5;
}

message PixelConfig {
Expand Down
5 changes: 3 additions & 2 deletions api/nodes/spectral_filter.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ enum SpectralFilterMethod {

message SpectralFilterConfig {
SpectralFilterMethod method = 1;
float low_cutoff_hz = 2;
float high_cutoff_hz = 3;
reserved 2, 3;
float low_pass_corner_hz = 4;
float high_pass_corner_hz = 5;
}