Skip to content
Snippets Groups Projects
Select Git revision
  • f77825b5658024f95a02b1d0009ae71a76f82f02
  • master default protected
  • Patrik
  • own-vm
  • Mike
5 results

index.html

Blame
  • spisender.h 277 B
    #ifndef SPISENDER_H
    #define SPISENDER_H
    
    #include "spiframe.h"
    
    class SpiSender
    {
    private:
        int readyPin;
    
    public:
        SpiSender(int readyPin);
        int getReadyPin() const;
        bool sendFrame(const SpiFrame& frame) const;
        bool canSend() const;
    };
    
    #endif // SPISENDER_H