Merge branch 'mueller/master' into mueller/restructuring

This commit is contained in:
Robin Müller 2021-07-15 19:28:25 +02:00
commit 21ac5afd35
16 changed files with 47 additions and 45 deletions

View File

@ -8,14 +8,9 @@ option(FSFW_HAL_ADD_RASPBERRY_PI "Add Raspberry Pi specific code to the sources"
option(FSFW_HAL_ADD_STM32H7 "Add the STM32H7 HAL to the sources" OFF) option(FSFW_HAL_ADD_STM32H7 "Add the STM32H7 HAL to the sources" OFF)
option(FSFW_HAL_WARNING_SHADOW_LOCAL_GCC "Enable -Wshadow=local warning in GCC" ON) option(FSFW_HAL_WARNING_SHADOW_LOCAL_GCC "Enable -Wshadow=local warning in GCC" ON)
set(LIB_FSFW_HAL_NAME fsfw_hal)
set(LINUX_HAL_PATH_NAME linux) set(LINUX_HAL_PATH_NAME linux)
set(STM32H7_PATH_NAME stm32h7) set(STM32H7_PATH_NAME stm32h7)
if(NOT LIB_FSFW_NAME)
message(ERROR "LIB_FSFW_NAME needs to be set as a linkable target")
endif()
add_subdirectory(src) add_subdirectory(src)
add_subdirectory(inc) add_subdirectory(inc)
@ -35,7 +30,6 @@ foreach(INCLUDE_PATH ${FSFW_HAL_ADDITIONAL_INC_PATHS})
endforeach() endforeach()
target_include_directories(${LIB_FSFW_NAME} PRIVATE target_include_directories(${LIB_FSFW_NAME} PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}
${FSFW_HAL_ADD_INC_PATHS_ABS} ${FSFW_HAL_ADD_INC_PATHS_ABS}
) )

View File

@ -9,6 +9,4 @@ void initializeGpioClock(GPIO_TypeDef* gpioPort);
} }
#endif /* FSFW_HAL_STM32H7_GPIO_GPIO_H_ */ #endif /* FSFW_HAL_STM32H7_GPIO_GPIO_H_ */

View File

@ -5,8 +5,8 @@
#include "fsfw/devicehandlers/DeviceCommunicationIF.h" #include "fsfw/devicehandlers/DeviceCommunicationIF.h"
#include "fsfw/objectmanager/SystemObject.h" #include "fsfw/objectmanager/SystemObject.h"
#include "fsfw/osal/FreeRTOS/BinarySemaphore.h" #include "fsfw/osal/freertos/BinarySemaphore.h"
#include "fsfw_hal/stm32h7/spi/spiDefinitions.h" #include "fsfw/hal/stm32h7/spi/spiDefinitions.h"
#include "stm32h7xx_hal_spi.h" #include "stm32h7xx_hal_spi.h"
#include "stm32h743xx.h" #include "stm32h743xx.h"

View File

@ -1,11 +1,12 @@
#ifndef FSFW_HAL_STM32H7_SPI_SPICORE_H_ #ifndef FSFW_HAL_STM32H7_SPI_SPICORE_H_
#define FSFW_HAL_STM32H7_SPI_SPICORE_H_ #define FSFW_HAL_STM32H7_SPI_SPICORE_H_
#include <fsfw_hal/stm32h7/dma.h> #include "fsfw/hal/stm32h7/dma.h"
#include "fsfw/hal/stm32h7/spi/spiDefinitions.h"
#include "stm32h7xx_hal.h" #include "stm32h7xx_hal.h"
#include "stm32h7xx_hal_dma.h" #include "stm32h7xx_hal_dma.h"
#ifdef __cplusplus #ifdef __cplusplus
extern "C" { extern "C" {
#endif #endif

View File

@ -1,4 +1,4 @@
target_sources(${TARGET_NAME} PUBLIC target_sources(${LIB_FSFW_NAME} PUBLIC
UartComIF.cpp UartComIF.cpp
UartCookie.cpp UartCookie.cpp
) )

View File

@ -1,4 +1,9 @@
#include <fsfw_hal/linux/utility.h> #include "fsfw/FSFW.h"
#include "fsfw/serviceinterface/ServiceInterface.h"
#include "fsfw/hal/linux/utility.h"
#include <cerrno>
#include <cstring>
void utility::handleIoctlError(const char* const customPrintout) { void utility::handleIoctlError(const char* const customPrintout) {
#if FSFW_VERBOSE_LEVEL >= 1 #if FSFW_VERBOSE_LEVEL >= 1

View File

@ -1,10 +1,10 @@
#include "GyroL3GD20H.h" #include "fsfw/hal/stm32h7/devicetest/GyroL3GD20H.h"
#include "../spi/mspInit.h" #include "fsfw/hal/stm32h7/spi/mspInit.h"
#include "../spi/spiDefinitions.h" #include "fsfw/hal/stm32h7/spi/spiDefinitions.h"
#include "../spi/spiCore.h" #include "fsfw/hal/stm32h7/spi/spiCore.h"
#include "../spi/spiInterrupts.h" #include "fsfw/hal/stm32h7/spi/spiInterrupts.h"
#include "../spi/stm32h743ziSpi.h" #include "fsfw/hal/stm32h7/spi/stm32h743ziSpi.h"
#include "fsfw/tasks/TaskFactory.h" #include "fsfw/tasks/TaskFactory.h"
#include "fsfw/serviceinterface/ServiceInterface.h" #include "fsfw/serviceinterface/ServiceInterface.h"

View File

@ -1,6 +1,7 @@
#include <fsfw_hal/stm32h7/dma.h> #include <fsfw/hal/stm32h7/dma.h>
#include <stdint.h>
#include <stddef.h> #include <cstdint>
#include <cstddef>
user_handler_t DMA_1_USER_HANDLERS[8]; user_handler_t DMA_1_USER_HANDLERS[8];
user_args_t DMA_1_USER_ARGS[8]; user_args_t DMA_1_USER_ARGS[8];

View File

@ -1,4 +1,4 @@
#include "gpio.h" #include "fsfw/hal/stm32h7/gpio/gpio.h"
#include "stm32h7xx_hal_rcc.h" #include "stm32h7xx_hal_rcc.h"

View File

@ -1,12 +1,12 @@
#include "SpiComIF.h" #include "fsfw/hal/stm32h7/spi/SpiComIF.h"
#include "SpiCookie.h" #include "fsfw/hal/stm32h7/spi/SpiCookie.h"
#include "fsfw/tasks/SemaphoreFactory.h" #include "fsfw/tasks/SemaphoreFactory.h"
#include "fsfw/osal/FreeRTOS/TaskManagement.h" #include "fsfw/osal/freertos/TaskManagement.h"
#include "fsfw_hal/stm32h7/spi/spiCore.h" #include "fsfw/hal/stm32h7/spi/spiCore.h"
#include "fsfw_hal/stm32h7/spi/spiInterrupts.h" #include "fsfw/hal/stm32h7/spi/spiInterrupts.h"
#include "fsfw_hal/stm32h7/spi/mspInit.h" #include "fsfw/hal/stm32h7/spi/mspInit.h"
#include "fsfw_hal/stm32h7/gpio/gpio.h" #include "fsfw/hal/stm32h7/gpio/gpio.h"
#include "stm32h7xx_hal_gpio.h" #include "stm32h7xx_hal_gpio.h"

View File

@ -1,4 +1,4 @@
#include "SpiCookie.h" #include "fsfw/hal/stm32h7/spi/SpiCookie.h"
SpiCookie::SpiCookie(address_t deviceAddress, spi::SpiBus spiIdx, spi::TransferModes transferMode, SpiCookie::SpiCookie(address_t deviceAddress, spi::SpiBus spiIdx, spi::TransferModes transferMode,

View File

@ -1,13 +1,14 @@
#include <fsfw_hal/stm32h7/dma.h> #include "fsfw/hal/stm32h7/dma.h"
#include "mspInit.h" #include "fsfw/hal/stm32h7/spi/mspInit.h"
#include "spiCore.h" #include "fsfw/hal/stm32h7/spi/spiCore.h"
#include "spiInterrupts.h" #include "fsfw/hal/stm32h7/spi/spiInterrupts.h"
#include "stm32h743xx.h" #include "stm32h743xx.h"
#include "stm32h7xx_hal_spi.h" #include "stm32h7xx_hal_spi.h"
#include "stm32h7xx_hal_dma.h" #include "stm32h7xx_hal_dma.h"
#include "stm32h7xx_hal_def.h" #include "stm32h7xx_hal_def.h"
#include <stdio.h> #include <cstdio>
spi::msp_func_t mspInitFunc = nullptr; spi::msp_func_t mspInitFunc = nullptr;
spi::MspCfgBase* mspInitArgs = nullptr; spi::MspCfgBase* mspInitArgs = nullptr;

View File

@ -1,5 +1,6 @@
#include "spiDefinitions.h" #include "fsfw/hal/stm32h7/spi/spiCore.h"
#include "spiCore.h" #include "fsfw/hal/stm32h7/spi/spiDefinitions.h"
#include <cstdio> #include <cstdio>
SPI_HandleTypeDef* spiHandle = nullptr; SPI_HandleTypeDef* spiHandle = nullptr;

View File

@ -1,4 +1,4 @@
#include "spiDefinitions.h" #include "fsfw/hal/stm32h7/spi/spiDefinitions.h"
void spi::assignSpiMode(SpiModes spiMode, SPI_HandleTypeDef& spiHandle) { void spi::assignSpiMode(SpiModes spiMode, SPI_HandleTypeDef& spiHandle) {
switch(spiMode) { switch(spiMode) {

View File

@ -1,5 +1,5 @@
#include "spiInterrupts.h" #include "fsfw/hal/stm32h7/spi/spiInterrupts.h"
#include "spiCore.h" #include "fsfw/hal/stm32h7/spi/spiCore.h"
#include "stm32h7xx_hal.h" #include "stm32h7xx_hal.h"
#include "stm32h7xx_hal_dma.h" #include "stm32h7xx_hal_dma.h"

View File

@ -1,6 +1,7 @@
#include "stm32h743ziSpi.h" #include "fsfw/hal/stm32h7/spi/stm32h743ziSpi.h"
#include "spiCore.h" #include "fsfw/hal/stm32h7/spi/spiCore.h"
#include "spiInterrupts.h" #include "fsfw/hal/stm32h7/spi/spiInterrupts.h"
#include "stm32h7xx_hal.h" #include "stm32h7xx_hal.h"
#include "stm32h7xx_hal_rcc.h" #include "stm32h7xx_hal_rcc.h"