-
Notifications
You must be signed in to change notification settings - Fork 0
/
hello_8211.cpp
94 lines (85 loc) · 2.58 KB
/
hello_8211.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
/* hello teensy 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(...) \
Serial.printf(__VA_ARGS__)
// extern volatile uint32_t AudioOutputI2S_isr_count;
AudioSynthWaveformSine sine1;
AudioOutputPT8211 out;
AudioConnection patchCord1(sine1, 0, out, 0);
AudioConnection patchCord2(sine1, 0, out, 1);
usb_serial_class Serial;
elapsedMillis since_LED_switch, since_hello;
uint32_t Freq = 440;
bool ledState = true;
uint32_t counter, bigtime;
void setup()
{
pinMode(LED_BUILTIN, OUTPUT);
usb_init();
delay(1500);
dbg("Hey PC\n");
delay(500);
AudioMemory(2);
sine1.frequency(Freq);
sine1.amplitude(1.0);
dbg("Hello 8211\n");
}
void loop()
{
if (since_LED_switch > 500) {
ledState = !ledState;
digitalWriteFast(LED_BUILTIN, ledState? HIGH : LOW);
since_LED_switch = 0;
}
if (since_hello >= 1000) {
dbg(".");
if (++counter >= 10) {
dbg(" %8lu %03lu\n", out.isrCount(), bigtime++);
counter = 0;
}
since_hello = 0;
}
while (Serial.available()) {
int incoming = Serial.read();
Serial.write((uint8_t)incoming);
switch (incoming) {
case 'b':
dbg("sine used %u cycles\n", sine1.cpu_cycles_total );
break;
case 'o':
out.begin();
break;
default: ;
}
}
sine1.update();
}