-
Notifications
You must be signed in to change notification settings - Fork 82
/
ls_test.ino
305 lines (269 loc) · 8.04 KB
/
ls_test.ino
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/************************** ls_test: LinnStrument debugging and testing ***************************
Copyright 2023 Roger Linn Design (https://www.rogerlinndesign.com)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
***************************************************************************************************
Assorted debug functions.
**************************************************************************************************/
void debugPrint(int level, const char* msg) {
if (Device.serialMode && (debugLevel >= level)) {
Serial.print(msg);
}
}
void debugPrintln(int level, const char* msg) {
if (Device.serialMode && (debugLevel >= level)) {
Serial.println(msg);
}
}
void debugPrint(int level, int val) {
if (Device.serialMode && (debugLevel >= level)) {
Serial.print(val);
}
}
void debugPrintln(int level, int val) {
if (Device.serialMode && (debugLevel >= level)) {
Serial.println(val);
}
}
void displayDigitalPins() {
static unsigned long lastFrame = 0;
unsigned long now = micros();
if (sensorCol == 1 && sensorRow == 0 && calcTimeDelta(now, lastFrame) >= 500000) {
lastFrame = now;
Serial.println();
for (byte p = 0; p < 54; ++p) {
Serial.print(p);
Serial.print("\t");
}
Serial.println();
for (byte p = 0; p < 54; ++p) {
Serial.print(digitalRead(p));
Serial.print("\t");
}
Serial.println();
}
}
// displayXFrame:
// For debug, displays an entire frame of raw X values in the Arduino serial monitor. Values are collected during each full read of the touch surface.
void displayXFrame() {
if (sensorCell->touched == touchedCell) {
sensorCell->refreshX();
}
static unsigned long lastFrame = 0;
unsigned long now = micros();
if (sensorCol == 1 && sensorRow == 0 && calcTimeDelta(now, lastFrame) >= 500000) {
lastFrame = now;
Serial.println();
for (byte x = 0; x < NUMCOLS; ++x) {
Serial.print(x);
Serial.print("\t");
}
Serial.println();
for (byte y = NUMROWS; y > 0; --y) {
for (byte x = 0; x < NUMCOLS; ++x) {
if (cell(x, y-1).touched == touchedCell) {
Serial.print(cell(x, y-1).currentRawX);
}
else {
Serial.print("-");
}
Serial.print("\t");
}
Serial.println();
}
}
}
// displayYFrame:
// For debug, displays an entire frame of raw Y values in the Arduino serial monitor. Values are collected during each full read of the touch surface.
void displayYFrame() {
if (sensorCell->touched == touchedCell) {
sensorCell->refreshY();
}
static unsigned long lastFrame = 0;
unsigned long now = micros();
if (sensorCol == 1 && sensorRow == 0 && calcTimeDelta(now, lastFrame) >= 500000) {
lastFrame = now;
Serial.println();
for (byte x = 0; x < NUMCOLS; ++x) {
Serial.print(x);
Serial.print("\t");
}
Serial.println();
for (byte y = NUMROWS; y > 0; --y) {
for (byte x = 0; x < NUMCOLS; ++x) {
if (cell(x, y-1).touched == touchedCell) {
Serial.print(cell(x, y-1).currentRawY);
}
else {
Serial.print("-");
}
Serial.print("\t");
}
Serial.println();
}
}
}
// displayZFrame:
// For debug, displays an entire frame of raw Z values in the Arduino serial monitor. Values are collected during each full read of the touch surface.
void displayZFrame() {
static unsigned long lastFrame = 0;
unsigned long now = micros();
if (sensorCol == 1 && sensorRow == 0 && calcTimeDelta(now, lastFrame) >= 500000) {
lastFrame = now;
Serial.println();
for (byte x = 0; x < NUMCOLS; ++x) {
Serial.print(x);
Serial.print("\t");
}
Serial.println();
for (byte y = NUMROWS; y > 0; --y) {
for (byte x = 0; x < NUMCOLS; ++x) {
Serial.print(cell(x, y-1).currentRawZ);
Serial.print("\t");
}
Serial.println();
}
}
}
// For debug, displays an entire frame of raw Z values in the Arduino serial monitor. Values are collected during each full read of the touch surface.
void displaySurfaceScanTime() {
if (sensorCol == 1 && sensorRow == 0) {
static int scanCount;
static unsigned long scanPeriod;
if (++scanCount > 255) {
Serial.print("Total surface scan time in microseconds: ");
Serial.println((micros() - scanPeriod) / 256);
scanPeriod = micros();
scanCount = 0;
}
}
}
// displayCellTouchedFrame:
// For debug, displays an entire frame of raw Z values in the Arduino serial monitor. Values are collected during each full read of the touch surface.
void displayCellTouchedFrame() {
Serial.println();
for (byte x = 0; x < NUMCOLS; ++x) {
Serial.print(x);
Serial.print("\t");
}
Serial.println();
for (byte y = NUMROWS; y > 0; --y) {
for (byte x = 0; x < NUMCOLS; ++x) {
Serial.print(cell(x, y-1).touched);
Serial.print("\t");
}
Serial.println();
}
}
void modeLoopManufacturingTest() {
TouchState previousTouch = sensorCell->touched;
sensorCell->refreshZ();
// highlight the touches
if (previousTouch != touchedCell && sensorCell->isMeaningfulTouch()) {
cellTouched(touchedCell);
if (sensorCol == 0) {
byte color = COLOR_OFF;
switch (sensorRow)
{
case 0:
case 1:
color = COLOR_YELLOW;
break;
case 2:
color = COLOR_MAGENTA;
break;
case 3:
color = COLOR_CYAN;
break;
case 4:
case 5:
color = COLOR_BLUE;
break;
case 6:
color = COLOR_GREEN;
break;
case 7:
color = COLOR_RED;
break;
}
for (byte col = 0; col < NUMCOLS; ++col) {
for (byte row = 0; row < NUMROWS; ++row) {
setLed(col, row, color, cellOn);
}
}
}
}
else if (previousTouch != untouchedCell && !sensorCell->isActiveTouch()) {
cellTouched(untouchedCell);
if (cellsTouched == 0) {
for (byte col = 0; col < NUMCOLS; ++col) {
for (byte row = 0; row < NUMROWS; ++row) {
clearLed(col, row);
}
}
}
}
if (sensorCol != 0 && sensorCell->touched != untouchedCell) {
paintLowRowPressureBar();
}
if (rowsInColsTouched[0] == 0) {
if (LINNMODEL == 200) {
lightLed(4, 1);
lightLed(4, 6);
lightLed(10, 1);
lightLed(10, 6);
lightLed(16, 1);
lightLed(16, 6);
lightLed(22, 1);
lightLed(22, 6);
}
else if (LINNMODEL == 128) {
lightLed(2, 1);
lightLed(2, 6);
lightLed(6, 1);
lightLed(6, 6);
lightLed(11, 1);
lightLed(11, 6);
lightLed(15, 1);
lightLed(15, 6);
}
}
unsigned long now = micros();
// send out MIDI activity
midiOutQueue.push((byte)MIDIActiveSensing);
handlePendingMidi(now);
handleMidiInput(now);
checkRefreshLedColumn(now);
checkTimeToReadFootSwitches(now);
nextSensorCell();
}
#ifdef DEBUG_ENABLED
#include <malloc.h>
extern char _end;
extern "C" char* sbrk(int i);
char* ramstart = (char*)0x20070000;
char* ramend = (char*)0x20088000;
void debugFreeRam() {
static unsigned long lastFrame = 0;
unsigned long now = micros();
if (Device.serialMode && sensorCol == 1 && sensorRow == 0 && calcTimeDelta(now, lastFrame) >= 500000) {
lastFrame = now;
char* heapend = sbrk(0);
register char* stack_ptr asm ("sp");
struct mallinfo mi = mallinfo();
Serial.print("RAM dynamic:");
Serial.print(mi.uordblks);
Serial.print(" static:");
Serial.print(&_end - ramstart);
Serial.print(" free:");
Serial.println(stack_ptr - heapend + mi.fordblks);
}
}
#endif