continued rpi sus port

This commit is contained in:
2022-03-30 17:44:07 +02:00
parent 9f937781b7
commit 2c8b691ca4
12 changed files with 128 additions and 21 deletions

View File

@ -0,0 +1,20 @@
#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 gpioCallbacks
} // namespace rpi
#endif