removed the SOC_DAC_SUPPORTED guard

This commit is contained in:
Marshall Miller 2025-01-26 18:07:13 -05:00
parent 6f4f57e7e7
commit be3671f973

View file

@ -9,11 +9,9 @@
#include "shared-bindings/microcontroller/Pin.h"
#include "shared-module/audiocore/__init__.h"
#ifdef SOC_DAC_SUPPORTED
#include "driver/dac_continuous.h"
#if defined(CONFIG_IDF_TARGET_ESP32)
#define pin_CHANNEL_0 pin_GPIO25
#define pin_CHANNEL_1 pin_GPIO26
@ -557,5 +555,3 @@ void common_hal_audioio_audioout_stop(audioio_audioout_obj_t *self) {
bool common_hal_audioio_audioout_get_playing(audioio_audioout_obj_t *self) {
return self->playing && !self->paused;
}
#endif