Skip to content
Snippets Groups Projects
Select Git revision
  • e067f7db2e653a5afc1ce2a7d94bf705eba3500b
  • master default protected
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.19
  • 1.0.18
  • 1.0.17
  • 1.0.16
  • 1.0.15
  • 1.0.14
  • 1.0.13
  • 1.0.12
  • 1.0.10
  • 1.0.9
  • 1.0.8
22 results

Statistics.js

Blame
  • Forked from KSZK / DevTeam / kszkepzes / old / kszkepzes-frontend
    Source project has a limited visibility.
    spisender.cpp 303 B
    #include "spisender.h"
    
    SpiSender::SpiSender(int readyPin): readyPin(readyPin)
    {
    }
    
    int SpiSender::getReadyPin() const
    {
        return readyPin;
    }
    
    bool SpiSender::sendFrame(const SpiFrame &frame) const
    {
        //TODO
        return canSend();
    }
    
    bool SpiSender::canSend() const
    {
        //TODO
        return true;
    }