2013-11-04 18:05:48 -05:00
|
|
|
#include <stdint.h>
|
2014-01-21 16:40:13 -05:00
|
|
|
#include <string.h>
|
2013-11-04 18:05:48 -05:00
|
|
|
|
|
|
|
#include "stm32f4xx_rcc.h"
|
|
|
|
#include "stm32f4xx_gpio.h"
|
|
|
|
#include "stm32f4xx_dac.h"
|
|
|
|
|
|
|
|
#include "nlr.h"
|
|
|
|
#include "misc.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
#include "mpconfig.h"
|
2014-01-21 16:40:13 -05:00
|
|
|
#include "qstr.h"
|
2013-11-04 18:05:48 -05:00
|
|
|
#include "parse.h"
|
2013-12-21 13:17:45 -05:00
|
|
|
#include "obj.h"
|
2013-11-04 18:05:48 -05:00
|
|
|
#include "runtime.h"
|
|
|
|
|
2013-11-06 18:04:33 -05:00
|
|
|
#include "audio.h"
|
|
|
|
|
2013-11-04 18:05:48 -05:00
|
|
|
#define SAMPLE_BUF_SIZE (32)
|
|
|
|
|
|
|
|
// sample_buf_in is always the same or ahead of sample_buf_out
|
|
|
|
// when they are the same, there are no more samples left to process
|
|
|
|
// in this scheme, there is always 1 unusable byte in the buffer, just before sample_buf_out
|
|
|
|
int sample_buf_in;
|
|
|
|
int sample_buf_out;
|
|
|
|
byte sample_buf[SAMPLE_BUF_SIZE];
|
|
|
|
|
|
|
|
bool audio_is_full(void) {
|
|
|
|
return ((sample_buf_in + 1) % SAMPLE_BUF_SIZE) == sample_buf_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
void audio_fill(byte sample) {
|
|
|
|
sample_buf[sample_buf_in] = sample;
|
|
|
|
sample_buf_in = (sample_buf_in + 1) % SAMPLE_BUF_SIZE;
|
|
|
|
// enable interrupt
|
|
|
|
}
|
|
|
|
|
|
|
|
void audio_drain(void) {
|
|
|
|
if (sample_buf_in == sample_buf_out) {
|
|
|
|
// buffer is empty; disable interrupt
|
|
|
|
} else {
|
|
|
|
// buffer has a sample; output it
|
|
|
|
byte sample = sample_buf[sample_buf_out];
|
|
|
|
DAC_SetChannel2Data(DAC_Align_8b_R, sample);
|
|
|
|
sample_buf_out = (sample_buf_out + 1) % SAMPLE_BUF_SIZE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-08 10:14:53 -05:00
|
|
|
/******************************************************************************/
|
|
|
|
// Micro Python bindings
|
|
|
|
|
|
|
|
typedef struct _pyb_audio_t {
|
|
|
|
mp_obj_base_t base;
|
|
|
|
int dac_id; // 1 or 2
|
|
|
|
} pyb_audio_t;
|
|
|
|
|
2013-11-04 18:05:48 -05:00
|
|
|
// direct access to DAC
|
2014-03-08 10:14:53 -05:00
|
|
|
mp_obj_t pyb_audio_dac(mp_obj_t self_in, mp_obj_t val) {
|
|
|
|
pyb_audio_t *self = self_in;
|
|
|
|
if (self->dac_id == 1) {
|
|
|
|
DAC_SetChannel1Data(DAC_Align_8b_R, mp_obj_get_int(val));
|
|
|
|
} else {
|
|
|
|
DAC_SetChannel2Data(DAC_Align_8b_R, mp_obj_get_int(val));
|
|
|
|
}
|
2013-12-21 13:17:45 -05:00
|
|
|
return mp_const_none;
|
2013-11-04 18:05:48 -05:00
|
|
|
}
|
|
|
|
|
2014-03-08 10:14:53 -05:00
|
|
|
mp_obj_t pyb_audio_is_full(mp_obj_t self_in) {
|
2013-11-04 18:05:48 -05:00
|
|
|
if (audio_is_full()) {
|
2013-12-21 13:17:45 -05:00
|
|
|
return mp_const_true;
|
2013-11-04 18:05:48 -05:00
|
|
|
} else {
|
2013-12-21 13:17:45 -05:00
|
|
|
return mp_const_false;
|
2013-11-04 18:05:48 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-08 10:14:53 -05:00
|
|
|
mp_obj_t pyb_audio_fill(mp_obj_t self_in, mp_obj_t val) {
|
2013-12-21 13:17:45 -05:00
|
|
|
audio_fill(mp_obj_get_int(val));
|
|
|
|
return mp_const_none;
|
2013-11-04 18:05:48 -05:00
|
|
|
}
|
|
|
|
|
2014-03-08 10:14:53 -05:00
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_2(pyb_audio_dac_obj, pyb_audio_dac);
|
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_1(pyb_audio_is_full_obj, pyb_audio_is_full);
|
|
|
|
STATIC MP_DEFINE_CONST_FUN_OBJ_2(pyb_audio_fill_obj, pyb_audio_fill);
|
|
|
|
|
|
|
|
STATIC const mp_method_t pyb_audio_methods[] = {
|
|
|
|
{ "dac", &pyb_audio_dac_obj },
|
|
|
|
{ "is_full", &pyb_audio_is_full_obj },
|
|
|
|
{ "fill", &pyb_audio_fill_obj },
|
|
|
|
{ NULL, NULL },
|
|
|
|
};
|
|
|
|
|
|
|
|
STATIC const mp_obj_type_t pyb_audio_type = {
|
|
|
|
{ &mp_type_type },
|
|
|
|
.name = MP_QSTR_,
|
|
|
|
.methods = pyb_audio_methods,
|
|
|
|
};
|
|
|
|
|
|
|
|
STATIC const pyb_audio_t pyb_audio_channel_1 = {{&pyb_audio_type}, 1};
|
|
|
|
STATIC const pyb_audio_t pyb_audio_channel_2 = {{&pyb_audio_type}, 2};
|
|
|
|
|
|
|
|
// create the audio object
|
|
|
|
// currently support either DAC1 on X5 (id = 1) or DAC2 on X6 (id = 2)
|
|
|
|
|
|
|
|
STATIC mp_obj_t pyb_Audio(mp_obj_t id) {
|
2013-11-04 18:05:48 -05:00
|
|
|
// DAC peripheral clock
|
|
|
|
RCC_APB1PeriphClockCmd(RCC_APB1Periph_DAC, ENABLE);
|
|
|
|
|
2014-03-08 10:14:53 -05:00
|
|
|
int dac_id = mp_obj_get_int(id);
|
|
|
|
uint pin;
|
|
|
|
uint channel;
|
|
|
|
mp_obj_t dac_obj;
|
|
|
|
|
|
|
|
if (dac_id == 1) {
|
|
|
|
pin = GPIO_Pin_4;
|
|
|
|
channel = DAC_Channel_1;
|
|
|
|
dac_obj = (mp_obj_t)&pyb_audio_channel_1;
|
|
|
|
} else {
|
|
|
|
pin = GPIO_Pin_5;
|
|
|
|
channel = DAC_Channel_2;
|
|
|
|
dac_obj = (mp_obj_t)&pyb_audio_channel_2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// DAC channel configuration
|
2013-11-04 18:05:48 -05:00
|
|
|
GPIO_InitTypeDef GPIO_InitStructure;
|
2014-03-08 10:14:53 -05:00
|
|
|
GPIO_InitStructure.GPIO_Pin = pin;
|
2013-11-04 18:05:48 -05:00
|
|
|
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AN;
|
|
|
|
GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_NOPULL;
|
|
|
|
GPIO_Init(GPIOA, &GPIO_InitStructure);
|
|
|
|
|
2014-03-08 10:14:53 -05:00
|
|
|
// DAC channel Configuration
|
2013-11-04 18:05:48 -05:00
|
|
|
DAC_InitTypeDef DAC_InitStructure;
|
|
|
|
DAC_InitStructure.DAC_Trigger = DAC_Trigger_None;
|
|
|
|
DAC_InitStructure.DAC_WaveGeneration = DAC_WaveGeneration_None;
|
|
|
|
DAC_InitStructure.DAC_OutputBuffer = DAC_OutputBuffer_Enable;
|
2014-03-08 10:14:53 -05:00
|
|
|
DAC_Init(channel, &DAC_InitStructure);
|
2013-11-04 18:05:48 -05:00
|
|
|
|
2014-03-08 10:14:53 -05:00
|
|
|
// Enable DAC Channel
|
|
|
|
DAC_Cmd(channel, ENABLE);
|
2013-11-04 18:05:48 -05:00
|
|
|
|
2014-03-08 10:14:53 -05:00
|
|
|
// from now on use DAC_SetChannel[12]Data to trigger a conversion
|
2013-11-04 18:05:48 -05:00
|
|
|
|
|
|
|
sample_buf_in = 0;
|
|
|
|
sample_buf_out = 0;
|
|
|
|
|
2014-03-08 10:14:53 -05:00
|
|
|
// return static object
|
|
|
|
return dac_obj;
|
2013-11-04 18:05:48 -05:00
|
|
|
}
|
2014-03-08 10:14:53 -05:00
|
|
|
|
|
|
|
MP_DEFINE_CONST_FUN_OBJ_1(pyb_Audio_obj, pyb_Audio);
|