BaseMachine Sequencer

Dependencies:   Amp AverageAnalogIn BaseMachineUIController Envelope ExioBufferdController FilterController MCP23S17 PinDetect RotaryEncoder Sequence SequencerDisplay mbed-rtos mbed st7567LCD AT24C1024 OscController

Committer:
ryood
Date:
Mon Feb 13 20:15:45 2017 +0000
Revision:
21:0bbca9e3ba30
Parent:
20:bc7bd7faa8d5
Child:
22:4b8cfeae6623
Move the funciton of Osc to OscController from SequceSender

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ryood 0:1afb83a21a25 1 /*
ryood 0:1afb83a21a25 2 * main.cpp
ryood 0:1afb83a21a25 3 * BaseMachine Sequencer
ryood 0:1afb83a21a25 4 *
ryood 20:bc7bd7faa8d5 5 * mbed Rev 135 / mbed-rtos Rev 123
ryood 0:1afb83a21a25 6 *
ryood 20:bc7bd7faa8d5 7 * 2017.02.14 mbed Rev 135 / mbed-rtos Rev 123に変更
ryood 0:1afb83a21a25 8 * 2016.11.07 UIを統合
ryood 0:1afb83a21a25 9 *
ryood 0:1afb83a21a25 10 */
ryood 0:1afb83a21a25 11
ryood 0:1afb83a21a25 12 #include "mbed.h"
ryood 0:1afb83a21a25 13 #include "rtos.h"
ryood 10:0b7f4eb37197 14 #include "AT24C1024.h"
ryood 0:1afb83a21a25 15
ryood 0:1afb83a21a25 16 #define UART_TRACE (0)
ryood 0:1afb83a21a25 17 #include "BaseMachineCommon.h"
ryood 0:1afb83a21a25 18 #include "BaseMachineUIController.h"
ryood 21:0bbca9e3ba30 19 #include "SequenceSender.h"
ryood 0:1afb83a21a25 20 #include "EnvelopeGenerator.h"
ryood 21:0bbca9e3ba30 21 #include "SpiOscController.h"
ryood 0:1afb83a21a25 22 #include "SpiAmpController.h"
ryood 0:1afb83a21a25 23 #include "SpiFilterController.h"
ryood 0:1afb83a21a25 24
ryood 0:1afb83a21a25 25 #define SPI1_RATE (1000000)
ryood 10:0b7f4eb37197 26 #define I2C1_RATE (100000)
ryood 0:1afb83a21a25 27
ryood 0:1afb83a21a25 28 const int samplingPeriod = 1; // ms
ryood 0:1afb83a21a25 29 const int bpm = 120;
ryood 0:1afb83a21a25 30 const int envelopeLength = (60 * 1000 / (bpm * 4)) / samplingPeriod;
ryood 0:1afb83a21a25 31
ryood 0:1afb83a21a25 32 // Devices
ryood 0:1afb83a21a25 33 //
ryood 0:1afb83a21a25 34 BaseMachineUIController UIController;
ryood 0:1afb83a21a25 35
ryood 0:1afb83a21a25 36 //SPI1 (PinName mosi, PinName miso, PinName sclk, PinName ssel=NC)
ryood 0:1afb83a21a25 37 SPI SpiMaster(PA_7, PA_6, PA_5);
ryood 17:bc1f0fea5bc9 38 DigitalOut SpiMasterReset(PB_10, 0);
ryood 0:1afb83a21a25 39
ryood 0:1afb83a21a25 40 Sequence sequences[SEQUENCE_N];
ryood 21:0bbca9e3ba30 41 SequenceSender SequenceSender(sequences, SEQUENCE_N, samplingPeriod, bpm);
ryood 0:1afb83a21a25 42
ryood 0:1afb83a21a25 43 Envelope envelope(4095, envelopeLength, envelopeLength*3/4, envelopeLength/2, 2047);
ryood 0:1afb83a21a25 44 EnvelopeGenerator EnvelopeGenerator;
ryood 21:0bbca9e3ba30 45
ryood 21:0bbca9e3ba30 46 SpiOscController OscController(&SpiMaster, D9);
ryood 0:1afb83a21a25 47 SpiAmpController AmpController(&SpiMaster, D8, D7);
ryood 0:1afb83a21a25 48
ryood 0:1afb83a21a25 49 SpiFilterController FilterController(&SpiMaster, D10);
ryood 0:1afb83a21a25 50
ryood 0:1afb83a21a25 51 // Grobal Variables
ryood 0:1afb83a21a25 52 //
ryood 0:1afb83a21a25 53 int playingStep = 0;
ryood 0:1afb83a21a25 54 int editingStep = 0;
ryood 0:1afb83a21a25 55 bool isRunning = false;
ryood 0:1afb83a21a25 56
ryood 0:1afb83a21a25 57 //------------------------------------------------------------------------
ryood 0:1afb83a21a25 58 // Callback functions
ryood 0:1afb83a21a25 59 //------------------------------------------------------------------------
ryood 0:1afb83a21a25 60 void updateTicks(int ticks)
ryood 0:1afb83a21a25 61 {
ryood 6:fd15586f72ff 62 if (sequences[SequenceSender.getStep()].isNoteOn())
ryood 5:e909232c913e 63 {
ryood 5:e909232c913e 64 uint16_t level = EnvelopeGenerator.update();
ryood 8:4e38bb44c72e 65 level = level >> 1;
ryood 8:4e38bb44c72e 66 if (sequences[SequenceSender.getStep()].isAccent())
ryood 5:e909232c913e 67 {
ryood 14:16d53ac0a61a 68 // Todo: 小数点演算を整数に
ryood 14:16d53ac0a61a 69 level *= 1.0f + ((float)UIController.getAccentLevel()) / 128.0f;
ryood 5:e909232c913e 70 }
ryood 5:e909232c913e 71 AmpController.outDca(level);
ryood 5:e909232c913e 72 //printf("%d %d %d\r\n", playingStep, ticks, level);
ryood 5:e909232c913e 73 }
ryood 5:e909232c913e 74 else
ryood 5:e909232c913e 75 {
ryood 5:e909232c913e 76 AmpController.outDca(0);
ryood 5:e909232c913e 77 }
ryood 5:e909232c913e 78
ryood 21:0bbca9e3ba30 79 OscController.setFrequency10(SequenceSender.getFrequency10());
ryood 21:0bbca9e3ba30 80 OscController.outDco();
ryood 21:0bbca9e3ba30 81
ryood 5:e909232c913e 82 FilterController.outDcf();
ryood 5:e909232c913e 83
ryood 0:1afb83a21a25 84 if (ticks == 0)
ryood 0:1afb83a21a25 85 {
ryood 0:1afb83a21a25 86 EnvelopeGenerator.init(envelope);
ryood 0:1afb83a21a25 87 playingStep = SequenceSender.getStep();
ryood 0:1afb83a21a25 88 UIController.setPlayingStep(playingStep);
ryood 0:1afb83a21a25 89 }
ryood 0:1afb83a21a25 90 }
ryood 0:1afb83a21a25 91
ryood 0:1afb83a21a25 92 //------------------------------------------------------------------------
ryood 0:1afb83a21a25 93 // Functions
ryood 0:1afb83a21a25 94 //------------------------------------------------------------------------
ryood 1:87f7d2e0a123 95 void setParams()
ryood 1:87f7d2e0a123 96 {
ryood 1:87f7d2e0a123 97 UIController.getSequences(&sequences);
ryood 0:1afb83a21a25 98
ryood 1:87f7d2e0a123 99 SequenceSender.setBpm(UIController.getBpm());
ryood 0:1afb83a21a25 100
ryood 1:87f7d2e0a123 101 // ToDo: Impl. accentLevel
ryood 1:87f7d2e0a123 102
ryood 1:87f7d2e0a123 103 OscillatorParam osc;
ryood 1:87f7d2e0a123 104 UIController.getOscillatorParam(&osc);
ryood 21:0bbca9e3ba30 105 OscController.setWaveShape(osc.waveShape);
ryood 21:0bbca9e3ba30 106 OscController.setPulseWidth(osc.pulseWidth << 1);
ryood 1:87f7d2e0a123 107
ryood 1:87f7d2e0a123 108 FilterParam flt;
ryood 1:87f7d2e0a123 109 UIController.getFilterParam(&flt);
ryood 1:87f7d2e0a123 110 FilterController.setCutoff(flt.cutoff << 1);
ryood 1:87f7d2e0a123 111 FilterController.setResonance(flt.resonance << 1);
ryood 1:87f7d2e0a123 112
ryood 1:87f7d2e0a123 113 EnvelopeParam env;
ryood 1:87f7d2e0a123 114 UIController.getEnvelopeParam(&env);
ryood 1:87f7d2e0a123 115 envelope.setLevel(env.level << 5);
ryood 1:87f7d2e0a123 116 //ToDo: Impl. envelope length
ryood 1:87f7d2e0a123 117 envelope.setLength(envelopeLength);
ryood 1:87f7d2e0a123 118 envelope.setDuration((float)env.duration / 128.0f * envelopeLength);
ryood 1:87f7d2e0a123 119 envelope.setDecay((float)env.decay / 128.0f * envelopeLength);
ryood 1:87f7d2e0a123 120 envelope.setSustain(env.sustain << 5);
ryood 1:87f7d2e0a123 121
ryood 1:87f7d2e0a123 122 bool _isRunning = UIController.getIsRunning();
ryood 5:e909232c913e 123 if (_isRunning != isRunning)
ryood 5:e909232c913e 124 {
ryood 1:87f7d2e0a123 125 isRunning = _isRunning;
ryood 5:e909232c913e 126 if (isRunning)
ryood 5:e909232c913e 127 {
ryood 1:87f7d2e0a123 128 SequenceSender.run(playingStep);
ryood 5:e909232c913e 129 }
ryood 5:e909232c913e 130 else
ryood 5:e909232c913e 131 {
ryood 1:87f7d2e0a123 132 AmpController.outDca(0);
ryood 1:87f7d2e0a123 133 SequenceSender.stop();
ryood 1:87f7d2e0a123 134 }
ryood 1:87f7d2e0a123 135 }
ryood 1:87f7d2e0a123 136 }
ryood 0:1afb83a21a25 137
ryood 0:1afb83a21a25 138 //------------------------------------------------------------------------
ryood 0:1afb83a21a25 139 // Main routine
ryood 0:1afb83a21a25 140 //------------------------------------------------------------------------
ryood 0:1afb83a21a25 141 int main()
ryood 0:1afb83a21a25 142 {
ryood 0:1afb83a21a25 143 #if (UART_TRACE)
ryood 0:1afb83a21a25 144 printf("*** BaseMachine Sequencer ***\r\n");
ryood 0:1afb83a21a25 145 #endif
ryood 0:1afb83a21a25 146
ryood 0:1afb83a21a25 147 //--------------------------------------------------------------------
ryood 7:a47420a0c4bf 148 // Initialize objects
ryood 7:a47420a0c4bf 149 //
ryood 7:a47420a0c4bf 150 Sequence::setBaseNoteNumber(baseNoteNumber);
ryood 7:a47420a0c4bf 151
ryood 7:a47420a0c4bf 152 //--------------------------------------------------------------------
ryood 0:1afb83a21a25 153 // Setup Devices
ryood 0:1afb83a21a25 154 //
ryood 17:bc1f0fea5bc9 155 SpiMasterReset = 1;
ryood 0:1afb83a21a25 156 SpiMaster.format(8, 0);
ryood 0:1afb83a21a25 157 SpiMaster.frequency(SPI1_RATE);
ryood 0:1afb83a21a25 158
ryood 0:1afb83a21a25 159 // Mute output
ryood 0:1afb83a21a25 160 AmpController.outDca(0);
ryood 0:1afb83a21a25 161
ryood 0:1afb83a21a25 162 UIController.init();
ryood 7:a47420a0c4bf 163 setParams();
ryood 0:1afb83a21a25 164
ryood 0:1afb83a21a25 165 EnvelopeGenerator.init(envelope);
ryood 0:1afb83a21a25 166
ryood 0:1afb83a21a25 167 SequenceSender.attachUpdate(&updateTicks);
ryood 17:bc1f0fea5bc9 168
ryood 0:1afb83a21a25 169 //--------------------------------------------------------------------
ryood 0:1afb83a21a25 170 // Main loop
ryood 0:1afb83a21a25 171 //
ryood 0:1afb83a21a25 172 for (;;)
ryood 0:1afb83a21a25 173 {
ryood 0:1afb83a21a25 174 UIController.update();
ryood 1:87f7d2e0a123 175 setParams();
ryood 2:6056b9559541 176
ryood 2:6056b9559541 177 Thread::wait(10);
ryood 0:1afb83a21a25 178 }
ryood 0:1afb83a21a25 179 }