Implemented SPI for Arduino and a few fixes

This commit is contained in:
dario
2024-02-09 16:11:48 +01:00
parent 53335281d7
commit ec83b7026e
10 changed files with 80 additions and 23 deletions

View File

@@ -1,9 +1,9 @@
#ifndef STA_CORE_ARDUINO_HAL_HPP
#define STA_CORE_ARDUINO_HAL_HPP
#include<Arduino.h>
#include<Wire.h>
#include<SPI.h>
#include <Arduino.h>
#include <Wire.h>
#include <SPI.h>
/**
* @defgroup sta_core_arduino Arduino
@@ -11,4 +11,10 @@
* @brief Modules implemented for the Arduino platform.
*/
namespace hal
{
using SPISettings = SPISettings;
} // namespace hal
#endif // STA_CORE_ARDUINO_HAL_HPP