eive-obsw/bsp_linux_board/gpioInit.h

21 lines
354 B
C
Raw Permalink Normal View History

2022-03-30 17:44:07 +02:00
#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);
2022-03-30 17:50:36 +02:00
} // namespace gpio
2022-03-30 17:44:07 +02:00
} // namespace rpi
#endif