mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-13 01:55:59 +00:00
20 lines
366 B
C++
20 lines
366 B
C++
#ifndef STA_CORE_ARDUINO_HAL_HPP
|
|
#define STA_CORE_ARDUINO_HAL_HPP
|
|
|
|
#include <Arduino.h>
|
|
#include <Wire.h>
|
|
#include <SPI.h>
|
|
|
|
/**
|
|
* @defgroup sta_core_arduino Arduino
|
|
* @ingroup sta_core_platforms
|
|
* @brief Modules implemented for the Arduino platform.
|
|
*/
|
|
|
|
namespace hal
|
|
{
|
|
using SPISettings = SPISettings;
|
|
} // namespace hal
|
|
|
|
|
|
#endif // STA_CORE_ARDUINO_HAL_HPP
|