arduino-audio-tools
Loading...
Searching...
No Matches
I2SConfig.h
Go to the documentation of this file.
1#pragma once
2#include "AudioToolsConfig.h"
3#ifdef USE_I2S
4
5#if defined(ESP32)
6# if USE_LEGACY_I2S
7# include "I2SConfigESP32.h"
8# else
9# include "I2SConfigESP32V1.h"
10# endif
11#elif defined(IS_ZEPHYR)
12# include "I2SConfigZephyr.h"
13#else
14# include "I2SConfigSTD.h"
15#endif
16
17#endif