RISC-V/V203F6P6/gsm/spiblocked.h
2025-01-30 19:27:19 +01:00

12 lines
239 B
C++

#ifndef SPIBLOCKED_H
#define SPIBLOCKED_H
#include <stdint.h>
class SpiBlocked {
public:
explicit SpiBlocked () noexcept;
uint8_t ReadWriteByte (const uint8_t data);
void ChipSelect (const bool on);
};
#endif // SPIBLOCKED_H