arduino-audio-tools
Loading...
Searching...
No Matches
USBAudioStream.h
Go to the documentation of this file.
1#pragma once
2
3// Abstraction which provides the platform specific USBAudioDevice class implementation
4#include "AudioToolsConfig.h"
5#if defined(USE_TINYUSB)
6# include "USBAudioDeviceBase.h"
8#elif defined(ESP32)
9# include "USBAudioDeviceBase.h"
10# include "USBAudioDeviceESP32.h"
11#elif defined(IS_ZEPHYR)
12# include "USBAudioDeviceZephyr.h"
13#else
14# error "No USBAudioDevice implementation defined for this platform"
15#endif