forked from pichenettes/eurorack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv_reader.cc
117 lines (103 loc) · 4.16 KB
/
cv_reader.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// Copyright 2015 Emilie Gillet.
//
// Author: Emilie Gillet ([email protected])
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
// See http://creativecommons.org/licenses/MIT/ for more information.
//
// -----------------------------------------------------------------------------
//
// CV reader.
#include "marbles/cv_reader.h"
#include <algorithm>
#include "stmlib/dsp/dsp.h"
namespace marbles {
using namespace std;
using namespace stmlib;
/* static */
const CvReaderChannel::Settings CvReader::channel_settings_[] = {
// cv_lp | pot_scale | pot_offset | pot_lp | min | max | hysteresis
// ADC_CHANNEL_DEJA_VU_AMOUNT,
{ 0.05f, 1.0f, 0.0f, 0.01f, 0.0f, 1.0f, 0.00f },
// ADC_CHANNEL_X_SPREAD_2 / ADC_CHANNEL_DEJA_VU_LENGTH,
{ 0.05f, 1.0f, 0.0f, 0.01f, 0.0f, 1.0f, 0.00f },
// ADC_CHANNEL_T_RATE,
{ 0.2f, 120.0f, -60.0f, 0.01f, -120.0f, 120.0f, 0.001f },
// ADC_CHANNEL_T_BIAS,
{ 0.05f, 1.05f, -0.025f, 0.01f, 0.0f, 1.0f, 0.00f },
// ADC_CHANNEL_T_JITTER,
{ 0.05f, 1.0f, 0.0f, 0.01f, 0.0f, 1.0f, 0.00f },
// ADC_CHANNEL_X_SPREAD,
{ 0.1f, 1.0f, 0.0f, 0.01f, 0.0f, 1.0f, 0.01f },
// ADC_CHANNEL_X_BIAS,
{ 0.1f, 1.0f, 0.0f, 0.01f, 0.0f, 1.0f, 0.02f },
// ADC_CHANNEL_X_STEPS,
{ 0.05f, 1.0f, 0.0f, 0.01f, 0.0f, 1.0f, 0.02f },
};
void CvReader::Init(CalibrationData* calibration_data) {
calibration_data_ = calibration_data;
adc_.Init(false);
for (int i = 0; i < ADC_CHANNEL_LAST; ++i) {
channel_[i].Init(
&calibration_data_->adc_scale[i],
&calibration_data_->adc_offset[i],
channel_settings_[i]);
}
fill(&attenuverter_[0], &attenuverter_[ADC_CHANNEL_LAST], 1.0f);
// Set virtual attenuverter to 12 o'clock to ignore the non-existing
// CV input for DEJA VU length.
attenuverter_[ADC_CHANNEL_DEJA_VU_LENGTH] = 0.5f;
// Set virtual attenuverter to a little more than 100% to
// compensate for op-amp clipping and get full parameter swing.
attenuverter_[ADC_CHANNEL_DEJA_VU_AMOUNT] = 1.01f;
attenuverter_[ADC_CHANNEL_T_BIAS] = 1.01f;
attenuverter_[ADC_CHANNEL_T_JITTER] = 1.01f;
attenuverter_[ADC_CHANNEL_X_SPREAD] = 1.01f;
attenuverter_[ADC_CHANNEL_X_BIAS] = 1.01f;
attenuverter_[ADC_CHANNEL_X_STEPS] = 1.01f;
}
void CvReader::Copy(uint16_t* output) {
const uint16_t* adc_values = adc_.values();
copy(&adc_values[0], &adc_values[ADC_CHANNEL_LAST * 2], output);
adc_.Convert();
}
void CvReader::Process(
const bool treat_cv_as_reset_inputs,
const uint16_t* raw_values,
float* output,
stmlib::GateFlags* gate_flags) {
if (treat_cv_as_reset_inputs) {
// Set virtual attenuverter to 12 o'clock to prevent the CV value
// from being added to the pot.
attenuverter_[ADC_CHANNEL_T_JITTER] = 0.5f;
attenuverter_[ADC_CHANNEL_X_STEPS] = 0.5f;
} else {
attenuverter_[ADC_CHANNEL_T_JITTER] = 1.01f;
attenuverter_[ADC_CHANNEL_X_STEPS] = 1.01f;
}
for (int i = 0; i < ADC_CHANNEL_LAST; ++i) {
output[i] = channel_[i].Process(
static_cast<float>(raw_values[ADC_GROUP_POT + i]) / 65536.0f,
static_cast<float>(raw_values[ADC_GROUP_CV + i]) / 65536.0f,
attenuverter_[i]);
gate_flags[i] = channel_[i].gate_flags();
}
}
} // namespace marbles