We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34419e1 commit e208c32Copy full SHA for e208c32
1 file changed
drivers/audio/espressif/es8388_audio.c
@@ -404,7 +404,12 @@ int es8388_audio_play_sound(const char *name)
404
405
#else /* stubs — no esp_codec_dev or non-ESP-IDF */
406
407
-
+int es8388_audio_init(void *bus, int pa) { (void)bus; (void)pa; return -1; }
408
+void es8388_audio_set_volume(int v) { (void)v; }
409
+void es8388_audio_enable_output(int e) { (void)e; }
410
+void es8388_audio_write(const int16_t *d, size_t s) { (void)d; (void)s; }
411
+void es8388_audio_beep(int f, int d, int v) { (void)f; (void)d; (void)v; }
412
+int es8388_audio_play_sound(const char *n) { (void)n; return -1; }
413
414
#endif
415
0 commit comments