16 lines
319 B
C
16 lines
319 B
C
|
#pragma once
|
||
|
|
||
|
class GpioIF;
|
||
|
|
||
|
namespace q7s {
|
||
|
namespace gpioCallbacks {
|
||
|
|
||
|
/**
|
||
|
* @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 q7s
|