arduino-audio-tools
Loading...
Searching...
No Matches
Concurrency.h
Go to the documentation of this file.
1#pragma once
2
3#if defined(ESP32)
4#include "RTOS.h"
5#elif defined(RP2040)
6#include "RP2040.h"
7#elif defined(IS_ZEPHYR)
8#include "Zephyr.h"
9#elif defined(ARDUINO_ARCH_STM32)
10#include "STM32.h"
11#elif defined(USE_STD_CONCURRENCY)
12#include "Desktop.h"
13#endif
14#include "Mutex.h"
15#include "LockGuard.h"