updated STM32 FreeRTOS example
This commit is contained in:
@ -1,3 +1,4 @@
|
||||
target_sources(${TARGET_NAME} PRIVATE
|
||||
SpiTest.cpp
|
||||
)
|
||||
|
||||
|
4
bsp_stm32h7_freertos/boardtest/SpiTest.cpp
Normal file
4
bsp_stm32h7_freertos/boardtest/SpiTest.cpp
Normal file
@ -0,0 +1,4 @@
|
||||
#include "SpiTest.h"
|
||||
|
||||
SpiTest::SpiTest(SpiComIF &spiComIF) {
|
||||
}
|
12
bsp_stm32h7_freertos/boardtest/SpiTest.h
Normal file
12
bsp_stm32h7_freertos/boardtest/SpiTest.h
Normal file
@ -0,0 +1,12 @@
|
||||
#ifndef BSP_STM32H7_FREERTOS_BOARDTEST_SPITEST_H_
|
||||
#define BSP_STM32H7_FREERTOS_BOARDTEST_SPITEST_H_
|
||||
|
||||
#include "fsfw_hal/stm32h7/spi/SpiComIF.h"
|
||||
|
||||
class SpiTest {
|
||||
public:
|
||||
SpiTest(SpiComIF& spiComIF);
|
||||
private:
|
||||
};
|
||||
|
||||
#endif /* BSP_STM32H7_FREERTOS_BOARDTEST_SPITEST_H_ */
|
Reference in New Issue
Block a user