KEK/RP2040/rp2040.h
folkert van heusden 9bf367bb51
SD card interface
2023-04-08 16:49:09 +02:00

9 lines
148 B
C

#pragma once
#if defined(BUILD_FOR_RP2040)
#include <Arduino.h>
#include <FreeRTOS.h>
#include <SD.h>
#include <semphr.h>
#include <task.h>
#endif