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

@@ -31,8 +31,8 @@ namespace sta
*/
enum class SPIClkPolarity
{
LOW, /**< Low idle clock */
HIGH /**< High idle clock */
SPI_LOW, /**< Low idle clock */
SPI_HIGH /**< High idle clock */
};
/**