continued stm32 spi code

This commit is contained in:
2021-06-03 14:00:50 +02:00
parent 4c546820fd
commit 22384aec6a
8 changed files with 152 additions and 17 deletions

View File

@ -0,0 +1,16 @@
#ifndef FSFW_HAL_STM32H7_SPI_SPIDEFINITIONS_H_
#define FSFW_HAL_STM32H7_SPI_SPIDEFINITIONS_H_
#include "../../common/spi/spiCommon.h"
#include "stm32h7xx_hal.h"
#include "stm32h7xx_hal_spi.h"
namespace spi {
void assignSpiMode(SpiModes spiMode, SPI_HandleTypeDef* spiHandle);
}
#endif /* FSFW_HAL_STM32H7_SPI_SPIDEFINITIONS_H_ */