mirror of
https://github.com/jscrane/r65emu.git
synced 2024-11-16 21:10:58 +00:00
66 lines
1.2 KiB
C++
66 lines
1.2 KiB
C++
#include <Arduino.h>
|
|
#include <hardware.h>
|
|
#include "timed.h"
|
|
#include "sound_dac.h"
|
|
|
|
static DAC *s;
|
|
|
|
#if defined(DAC_SOUND) && defined(ESP_PLATFORM)
|
|
#include <driver/dac.h>
|
|
|
|
static portMUX_TYPE mux = portMUX_INITIALIZER_UNLOCKED;
|
|
static dac_channel_t channel;
|
|
|
|
void IRAM_ATTR timer_callback() {
|
|
s->on_tick();
|
|
}
|
|
|
|
void IRAM_ATTR DAC::on_tick() {
|
|
portENTER_CRITICAL_ISR(&mux);
|
|
|
|
if (_off < _size)
|
|
dac_output_voltage(channel, _bytes[_off++]);
|
|
else if (_bytes) {
|
|
_bytes = 0;
|
|
dac_output_disable(channel);
|
|
}
|
|
|
|
portEXIT_CRITICAL_ISR(&mux);
|
|
}
|
|
|
|
void DAC::begin(unsigned pin, unsigned freq) {
|
|
if (pin == 25)
|
|
channel = DAC_CHANNEL_1;
|
|
else if (pin == 26)
|
|
channel = DAC_CHANNEL_2;
|
|
|
|
s = this;
|
|
timer_create(freq, &timer_callback);
|
|
}
|
|
|
|
const uint8_t *DAC::play(const uint8_t *bytes, unsigned size) {
|
|
portENTER_CRITICAL_ISR(&mux);
|
|
|
|
const uint8_t *play = (const uint8_t *)_bytes;
|
|
if (_off == _size) {
|
|
_bytes = bytes;
|
|
_size = size;
|
|
_off = 0;
|
|
dac_output_enable(channel);
|
|
play = bytes;
|
|
}
|
|
|
|
portEXIT_CRITICAL_ISR(&mux);
|
|
return play;
|
|
}
|
|
|
|
#else
|
|
// does nothing by default
|
|
void DAC::begin(unsigned channel, unsigned freq) {
|
|
}
|
|
|
|
const uint8_t *DAC::play(const uint8_t *bytes, unsigned size) {
|
|
return 0;
|
|
}
|
|
#endif
|