forked from pichenettes/eurorack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv_scaler.h
executable file
·159 lines (129 loc) · 4.62 KB
/
cv_scaler.h
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
// Copyright 2013 Olivier Gillet.
//
// Author: Olivier 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 scaling functions.
#ifndef TIDES_CV_SCALER_H_
#define TIDES_CV_SCALER_H_
#include "stmlib/stmlib.h"
#include "stmlib/utils/dsp.h"
#include "tides/resources.h"
namespace tides {
enum AdcChannel {
ADC_CHANNEL_LEVEL,
ADC_CHANNEL_V_OCT,
ADC_CHANNEL_FM,
ADC_CHANNEL_FM_ATTENUVERTER,
ADC_CHANNEL_SHAPE,
ADC_CHANNEL_SLOPE,
ADC_CHANNEL_SMOOTHNESS,
ADC_CHANNEL_LAST
};
class CvScaler {
public:
struct CalibrationData {
int32_t level_offset;
int32_t v_oct_offset;
int32_t v_oct_scale;
int32_t fm_offset;
int32_t fm_scale;
int32_t padding[3];
};
CvScaler() { }
~CvScaler() { }
void Init();
inline void ProcessSampleRate(const uint16_t* raw_adc_data) {
level_raw_ = (level_raw_ * 15 + raw_adc_data[ADC_CHANNEL_LEVEL]) >> 4;
level_ = -level_raw_ + calibration_data_.level_offset;
if (level_ < 32) { // 2 LSB of ADC noise.
level_ = 0;
}
}
inline void ProcessControlRate(const uint16_t* raw_adc_data) {
int32_t scaled_value;
scaled_value = 32767 - static_cast<int32_t>(
raw_adc_data[ADC_CHANNEL_SHAPE]);
shape_ = (shape_ * 7 + scaled_value) >> 3;
scaled_value = 32767 - static_cast<int32_t>(
raw_adc_data[ADC_CHANNEL_SLOPE]);
slope_ = (slope_ * 7 + scaled_value) >> 3;
scaled_value = 32767 - static_cast<int32_t>(
raw_adc_data[ADC_CHANNEL_SMOOTHNESS]);
smoothness_ = (smoothness_ * 7 + scaled_value) >> 3;
scaled_value = static_cast<int32_t>(raw_adc_data[ADC_CHANNEL_V_OCT]);
v_oct_ = (v_oct_ * 3 + scaled_value) >> 2;
scaled_value = static_cast<int32_t>(raw_adc_data[ADC_CHANNEL_FM]);
fm_ = (fm_ * 3 + scaled_value) >> 2;
scaled_value = static_cast<int32_t>(
raw_adc_data[ADC_CHANNEL_FM_ATTENUVERTER]);
attenuverter_ = (attenuverter_ * 15 + scaled_value) >> 4;
}
inline uint16_t level() const { return level_; }
inline int16_t shape() const { return shape_; }
inline int16_t slope() const { return slope_; }
inline int16_t smoothness() const { return smoothness_; }
inline int16_t pitch() const {
int32_t pitch;
int32_t attenuverter_value = attenuverter_ - 32768;
int32_t attenuverter_sign = 1;
if (attenuverter_value < 0) {
attenuverter_value = -attenuverter_value - 1;
attenuverter_sign = - 1;
}
attenuverter_value = attenuverter_sign * static_cast<int32_t>(
stmlib::Interpolate88(lut_attenuverter_curve, attenuverter_value << 1));
pitch = (fm_ - calibration_data_.fm_offset) * \
calibration_data_.fm_scale >> 15;
pitch = pitch * attenuverter_value >> 16;
pitch += (v_oct_ - calibration_data_.v_oct_offset) * \
calibration_data_.v_oct_scale >> 15;
pitch += 60 << 7;
return pitch;
}
void CaptureCalibrationValues() {
v_oct_c2_ = v_oct_;
}
void Calibrate();
inline bool can_enter_calibration() const {
return level_raw_ >= 49152;
}
private:
void SaveCalibrationData();
CalibrationData calibration_data_;
int32_t level_raw_;
int32_t level_;
int32_t v_oct_;
int32_t fm_;
int32_t attenuverter_;
int32_t shape_;
int32_t slope_;
int32_t smoothness_;
int32_t v_oct_c2_;
static const CalibrationData init_calibration_data_;
uint16_t version_token_;
DISALLOW_COPY_AND_ASSIGN(CvScaler);
};
} // namespace tides
#endif // TIDES_CV_SCALER_H_