dac_external.c 815 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Squeezelite for esp32
  3. *
  4. * (c) Sebastien 2019
  5. * Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This software is released under the MIT License.
  8. * https://opensource.org/licenses/MIT
  9. *
  10. */
  11. #include <freertos/FreeRTOS.h>
  12. #include <freertos/task.h>
  13. #include <driver/i2s.h>
  14. #include "esp_log.h"
  15. #include "config.h"
  16. #include "adac.h"
  17. static const char TAG[] = "DAC external";
  18. static bool init(char *config, int i2c_port_num);
  19. static void deinit(void) { };
  20. static void speaker(bool active) { };
  21. static void headset(bool active) { } ;
  22. static void volume(unsigned left, unsigned right) { };
  23. static void power(adac_power_e mode) { };
  24. const struct adac_s dac_external = { "i2s", init, deinit, power, speaker, headset, volume };
  25. static bool init(char *config, int i2c_port_num) {
  26. return true;
  27. }