mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-10 16:55:58 +00:00
15 lines
288 B
C++
15 lines
288 B
C++
#ifndef STA_CORE_RASPI_HAL_HPP
|
|
#define STA_CORE_RASPI_HAL_HPP
|
|
|
|
#include <wiringPi.h>
|
|
#include <stdio.h>
|
|
#include <sys/ioctl.h>
|
|
|
|
/**
|
|
* @defgroup sta_core_raspi Raspi
|
|
* @ingroup sta_core_platforms
|
|
* @brief Modules implemented for the Raspi platform.
|
|
*/
|
|
|
|
#endif //STA_CORE_RASPI_HAL_HPP
|