mirror of
https://github.com/jhbruhn/eurorack.git
synced 2025-03-15 02:55:49 +00:00
temporarily disable random part state things
This commit is contained in:
parent
337b9e1e75
commit
a36abc705c
1 changed files with 4 additions and 4 deletions
|
@ -63,10 +63,10 @@ struct PartData { // Everything defined here will be stored in flash even in pow
|
||||||
uint8_t midi_filter_highest_note = 127;
|
uint8_t midi_filter_highest_note = 127;
|
||||||
MIDIInput_t midi_filter_input = MIDI_INPUT_OMNI;
|
MIDIInput_t midi_filter_input = MIDI_INPUT_OMNI;
|
||||||
MIDIThruMode_t midi_thru_mode = MIDI_THRU_OFF;
|
MIDIThruMode_t midi_thru_mode = MIDI_THRU_OFF;
|
||||||
BiOutputType_t output_type_row_0[TOTAL_COLUMN_COUNT];
|
/*BiOutputType_t output_type_row_0[TOTAL_COLUMN_COUNT];
|
||||||
UniOutputType_t output_type_row_1[TOTAL_COLUMN_COUNT];
|
UniOutputType_t output_type_row_1[TOTAL_COLUMN_COUNT];
|
||||||
UniOutputType_t output_type_row_2[TOTAL_COLUMN_COUNT];
|
UniOutputType_t output_type_row_2[TOTAL_COLUMN_COUNT];
|
||||||
GateOutputType_t output_type_row_3[TOTAL_COLUMN_COUNT];
|
GateOutputType_t output_type_row_3[TOTAL_COLUMN_COUNT];*/
|
||||||
};
|
};
|
||||||
|
|
||||||
class Part {
|
class Part {
|
||||||
|
@ -74,10 +74,10 @@ class Part {
|
||||||
Part()
|
Part()
|
||||||
{
|
{
|
||||||
for (int i = 0; i < TOTAL_COLUMN_COUNT; i++) {
|
for (int i = 0; i < TOTAL_COLUMN_COUNT; i++) {
|
||||||
data.output_type_row_0[i] = BI_OFF;
|
/*data.output_type_row_0[i] = BI_OFF;
|
||||||
data.output_type_row_1[i] = UNI_OFF;
|
data.output_type_row_1[i] = UNI_OFF;
|
||||||
data.output_type_row_2[i] = UNI_OFF;
|
data.output_type_row_2[i] = UNI_OFF;
|
||||||
data.output_type_row_3[i] = GATE_OFF;
|
data.output_type_row_3[i] = GATE_OFF;*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
void ProcessMidiInput(/* TODO: Inputs */);
|
void ProcessMidiInput(/* TODO: Inputs */);
|
||||||
|
|
Loading…
Reference in a new issue