forked from arduino/ArduinoCore-mbed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPDM.cpp
180 lines (146 loc) · 3.5 KB
/
PDM.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
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
/*
PDM.cpp - library to interface with STM32 PDM microphones
Part of Arduino - http://www.arduino.cc/
Copyright (c) 2020 Arduino SA
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General
Public License along with this library; if not, write to the
Free Software Foundation, Inc., 59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA
*/
#ifdef TARGET_STM
#include "PDM.h"
#include "mbed.h"
extern "C" {
#include "audio.h"
}
extern "C" uint16_t *g_pcmbuf;
static PDMClass *_instance = NULL;
PDMClass::PDMClass(int dinPin, int clkPin, int pwrPin) :
_dinPin(dinPin),
_clkPin(clkPin),
_pwrPin(pwrPin),
_onReceive(NULL),
_gain(-1),
_channels(-1),
_samplerate(-1),
_init(-1),
_cutSamples(4)
{
_instance = this;
}
PDMClass::~PDMClass()
{
_instance = NULL;
}
int PDMClass::begin(int channels, int sampleRate) {
if (isBoardRev2()) {
mbed::I2C i2c(PB_7, PB_6);
char data[2];
// SW2 to 3.3V (SW2_VOLT)
data[0] = 0x3B;
data[1] = 0xF;
i2c.write(8 << 1, data, sizeof(data));
// SW1 to 3.0V (SW1_VOLT)
data[0] = 0x35;
data[1] = 0xF;
i2c.write(8 << 1, data, sizeof(data));
}
if(_instance != this) {
return 0;
}
_channels = channels;
_samplerate = sampleRate;
if (_gain == -1) {
_gain = 24;
}
g_pcmbuf = (uint16_t*)_doubleBuffer.data();
_doubleBuffer.swap(0);
_cutSamples = 4 * channels;
if(py_audio_init(channels, sampleRate, _gain, 0.9883f)) {
py_audio_start_streaming();
_init = 1;
return 1;
}
return 0;
}
void PDMClass::end()
{
py_audio_stop_streaming();
py_audio_deinit();
}
int PDMClass::available()
{
size_t avail = _doubleBuffer.available();
return avail;
}
int PDMClass::read(void* buffer, size_t size)
{
int read = _doubleBuffer.read(buffer, size);
return read;
}
void PDMClass::onReceive(void(*function)(void))
{
_onReceive = function;
if(_instance != this) {
_instance = this;
}
}
void PDMClass::setGain(int gain)
{
_gain = gain;
if(_init == 1) {
py_audio_gain_set(gain);
}
}
void PDMClass::setBufferSize(int bufferSize)
{
_doubleBuffer.setSize(bufferSize);
}
size_t PDMClass::getBufferSize()
{
return _doubleBuffer.getSize();
}
#define HALF_TRANSFER_SIZE (64*_channels)
static int g_pcmbuf_size=0;
void PDMClass::IrqHandler(bool halftranfer)
{
if (g_pcmbuf_size < _doubleBuffer.getSize()) {
audio_pendsv_callback();
g_pcmbuf += (HALF_TRANSFER_SIZE/2);
g_pcmbuf_size += HALF_TRANSFER_SIZE;
if(g_pcmbuf_size == _doubleBuffer.getSize()) {
_doubleBuffer.swap(g_pcmbuf_size);
g_pcmbuf = (uint16_t*)_doubleBuffer.data();
g_pcmbuf_size = 0;
if(_cutSamples == 0) {
if (_onReceive) {
_onReceive();
}
} else {
_cutSamples--;
}
}
}
}
extern "C" {
void PDMIrqHandler(bool halftranfer)
{
_instance->IrqHandler(halftranfer);
}
void PDMsetBufferSize(int size) {
_instance->setBufferSize(size);
}
size_t PDMgetBufferSize() {
return _instance->getBufferSize();
}
}
PDMClass PDM(0, 0, 0);
#endif