We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37b2d5a commit 4bb58caCopy full SHA for 4bb58ca
src/sfeTkArdSPI.h
@@ -39,8 +39,13 @@ class sfeTkArdSPI : public sfeTkISPI
39
/*
40
@brief Constructor
41
*/
42
- sfeTkArdSPI(void) : _spiPort(nullptr){};
+ sfeTkArdSPI(void) : _spiPort(nullptr)
43
+ {
44
+ }
45
46
+ sfeTkArdSPI(uint8_t csPin) : sfeTkISPI(csPin)
47
48
49
// copy constructor
50
sfeTkArdSPI(sfeTkArdSPI const &rhs) : sfeTkISPI(), _spiPort{rhs._spiPort}, _sfeSPISettings{rhs._sfeSPISettings}
51
{
0 commit comments