Robin Mueller
9958b37fba
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
21 lines
354 B
C++
21 lines
354 B
C++
#pragma once
|
|
|
|
#include "OBSWConfig.h"
|
|
|
|
class GpioIF;
|
|
|
|
#ifdef RASPBERRY_PI
|
|
namespace rpi {
|
|
namespace gpio {
|
|
|
|
/**
|
|
* @brief This function initializes the GPIOs used to control the SN74LVC138APWR decoders on
|
|
* the TCS Board and the interface board.
|
|
*/
|
|
void initSpiCsDecoder(GpioIF* gpioComIF);
|
|
|
|
} // namespace gpio
|
|
} // namespace rpi
|
|
|
|
#endif
|