mirror of
https://github.com/jhbruhn/eurorack.git
synced 2025-03-15 02:55:49 +00:00
Create Part class, think about output assignments
This commit is contained in:
parent
59424f01bb
commit
88916400d2
3 changed files with 109 additions and 93 deletions
|
@ -2,9 +2,9 @@
|
|||
|
||||
#include "drivers/display.h"
|
||||
#include "drivers/gpio.h"
|
||||
#include "part.h"
|
||||
#include "stmlib/system/system_clock.h"
|
||||
#include "ui.h"
|
||||
#include "part.h"
|
||||
|
||||
using namespace stmlib;
|
||||
|
||||
|
@ -12,6 +12,7 @@ GPIO gpio;
|
|||
Display display;
|
||||
UI ui;
|
||||
//SystemClock system_clock;
|
||||
Part part[4];
|
||||
|
||||
// Default interrupt handlers.
|
||||
extern "C" {
|
||||
|
@ -103,7 +104,7 @@ void InitTimers(void)
|
|||
|
||||
void Init(void)
|
||||
{
|
||||
//SystemInit();
|
||||
SystemInit();
|
||||
NVIC_SetVectorTable(NVIC_VectTab_FLASH, 0x8000);
|
||||
IWDG_WriteAccessCmd(IWDG_WriteAccess_Enable);
|
||||
IWDG_SetPrescaler(IWDG_Prescaler_16);
|
||||
|
|
BIN
midi2cv/output_assignment.ods
Normal file
BIN
midi2cv/output_assignment.ods
Normal file
Binary file not shown.
|
@ -5,50 +5,65 @@ enum MIDIThruMode { OFF,
|
|||
ON,
|
||||
POLYCHAIN };
|
||||
|
||||
enum BiOutputMode {
|
||||
PITCH_UNI,
|
||||
PITCH_BI,
|
||||
SAWTOOTH,
|
||||
SQUARE,
|
||||
SINE,
|
||||
TRIANGLE
|
||||
enum BiOutputType {
|
||||
BI_OFF = 0,
|
||||
BI_PITCH_UNI,
|
||||
BI_PITCH_BI,
|
||||
BI_SAWTOOTH,
|
||||
BI_SQUARE,
|
||||
BI_SINE,
|
||||
BI_TRIANGLE
|
||||
};
|
||||
|
||||
enum UniOutputMode {
|
||||
PITCH,
|
||||
VELOCITY,
|
||||
AFTERTOUCH
|
||||
enum UniOutputType {
|
||||
UNI_OFF = 0,
|
||||
UNI_PITCH,
|
||||
UNI_VELOCITY,
|
||||
UNI_MODULATION,
|
||||
UNI_AFTERTOUCH,
|
||||
UNI_BREATH,
|
||||
UNI_EXP,
|
||||
UNI_GATE
|
||||
};
|
||||
|
||||
enum GateOutputMode {
|
||||
GATE,
|
||||
TRIGGER
|
||||
enum GateOutputType {
|
||||
GATE_OFF = 0,
|
||||
GATE_GATE,
|
||||
GATE_TRIGGER
|
||||
};
|
||||
|
||||
class Part {
|
||||
public:
|
||||
Part()
|
||||
: voice_count(1)
|
||||
: poly_voice_count(1)
|
||||
, output_column_count(1)
|
||||
, midi_filter_channel_enabled(true)
|
||||
, midi_filter_channel(1)
|
||||
, midi_filter_lowest_note(0)
|
||||
, midi_filter_highest_note(127)
|
||||
, midi_thru_mode(OFF)
|
||||
, output_mode_0(PITCH_UNI)
|
||||
, output_mode_1(VELOCITY)
|
||||
, output_mode_2(AFTERTOUCH)
|
||||
, output_mode_3(GATE)
|
||||
{
|
||||
for (int i = 0; i < 4; i++) {
|
||||
output_type_row_0[i] = BI_OFF;
|
||||
output_type_row_1[i] = UNI_OFF;
|
||||
output_type_row_2[i] = UNI_OFF;
|
||||
output_type_row_3[i] = GATE_OFF;
|
||||
}
|
||||
}
|
||||
void ProcessMidiInput(/* TODO: Inputs */);
|
||||
|
||||
private:
|
||||
uint8_t voice_count;
|
||||
uint8_t poly_voice_count;
|
||||
uint8_t output_column_count;
|
||||
bool midi_filter_channel_enabled;
|
||||
uint8_t midi_filter_channel;
|
||||
uint8_t midi_filter_lowest_note;
|
||||
uint8_t midi_filter_highest_note;
|
||||
MIDIThruMode midi_thru_mode;
|
||||
BiOutputMode output_mode_0;
|
||||
UniOutputMode output_mode_1;
|
||||
UniOutputMode output_mode_2;
|
||||
GateOutputMode output_mode_3;
|
||||
BiOutputType output_type_row_0[4];
|
||||
UniOutputType output_type_row_1[4];
|
||||
UniOutputType output_type_row_2[4];
|
||||
GateOutputType output_type_row_3[4];
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue