mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-10 16:55:58 +00:00
14 lines
225 B
C++
14 lines
225 B
C++
/**
|
|
* @file
|
|
* @brief Generic header for including the STM32 HAL headers.
|
|
*/
|
|
#ifndef STA_CORE_STM32_HAL_HPP
|
|
#define STA_CORE_STM32_HAL_HPP
|
|
|
|
|
|
// Include STM32 HAL headers
|
|
#include <main.h>
|
|
|
|
|
|
#endif // STA_CORE_STM32_HAL_HPP
|