-
Notifications
You must be signed in to change notification settings - Fork 0
/
hello_sgt.cpp
132 lines (116 loc) · 3.33 KB
/
hello_sgt.cpp
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
/* hello sgtl5000 LC
*
* Copyright (c) 2020 Tim Braun
*
* 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:
*
* 1. The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* 2. If the Software is incorporated into a build system that allows
* selection among a list of target devices, then similar target
* devices manufactured by PJRC.COM must be included in the list of
* target devices and selectable in the same manner.
*
* 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.
*/
#include <Audio.h>
#include <usb_dev.h>
#define dbg(...) \
fiprintf( stderr, __VA_ARGS__ )
#define dbg_putc(c) \
fputc(c, stderr)
void onNoteOn(byte chan, byte note, byte vel);
void onNoteOff(byte chan, byte note, byte vel);
AudioControlSGTL5000 dac;
// AudioSynthWaveformSine sine1;
AudioOutputI2S out;
// AudioConnection patchCord1(sine1, 0, out, 0);
// AudioConnection patchCord2(sine1, 0, out, 1);
usb_serial_class Serial;
elapsedMillis since_LED_switch, since_hello;
elapsedMillis interrupt_time;
uint32_t Freq = 440;
uint32_t counter, bigtime;
uint32_t interrupts_last, interrupts_delta;
void setup()
{
pinMode(LED_BUILTIN, OUTPUT);
usb_init();
usbMIDI.setHandleNoteOn(onNoteOn);
usbMIDI.setHandleNoteOff(onNoteOff);
delay(500);
AudioMemory(2);
// sine1.frequency(Freq);
// sine1.amplitude(1.0);
dbg("Hello sgt\n");
delay(500);
dac.enable();
}
void loop()
{
static bool run = true;
if (since_LED_switch > 500) {
digitalToggleFast(LED_BUILTIN);
since_LED_switch = 0;
}
if (since_hello >= 1000) {
dbg(".");
if (++counter >= 10) {
uint32_t this_count = out.isrCount();
interrupts_delta = this_count - interrupts_last;
interrupts_last = this_count;
dbg(" %5lu %5lu %03lu\n", interrupts_delta,
(uint32_t )interrupt_time, bigtime++);
interrupt_time = 0;
counter = 0;
}
since_hello = 0;
}
while (Serial.available()) {
int incoming = Serial.read();
switch (incoming) {
// case 'b':
// dbg("sine used %u cycles\n", sine1.cpu_cycles_total );
// break;
case ' ':
run = !run;
dbg("now %s\n", run? "running" : "stopped");
break;
case 'l':
dac.lineOutLevel( 14 );
break;
case 'r':
_reboot_Teensyduino_();
break;
default:
dbg_putc(incoming);
}
}
if (run) {
// sine1.update();
out.update();
}
usbMIDI.read();
}
void onNoteOn(byte chan, byte note, byte vel)
{
dbg("N %d on\n", note);
}
void onNoteOff(byte chan, byte note, byte vel)
{
dbg("N %d off\n", note);
}