mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #8090 from deepikabhavnani/spi_4969
Cleanup SPI constructor and destructorpull/8245/head
commit
ea2dec01be
|
@ -41,9 +41,14 @@ SPI::SPI(PinName mosi, PinName miso, PinName sclk, PinName ssel) :
|
||||||
_write_fill(SPI_FILL_CHAR)
|
_write_fill(SPI_FILL_CHAR)
|
||||||
{
|
{
|
||||||
// No lock needed in the constructor
|
// No lock needed in the constructor
|
||||||
|
|
||||||
spi_init(&_spi, mosi, miso, sclk, ssel);
|
spi_init(&_spi, mosi, miso, sclk, ssel);
|
||||||
_acquire();
|
}
|
||||||
|
|
||||||
|
SPI::~SPI()
|
||||||
|
{
|
||||||
|
if (_owner == this) {
|
||||||
|
_owner = NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void SPI::format(int bits, int mode)
|
void SPI::format(int bits, int mode)
|
||||||
|
|
|
@ -87,6 +87,7 @@ public:
|
||||||
* @param ssel SPI chip select pin
|
* @param ssel SPI chip select pin
|
||||||
*/
|
*/
|
||||||
SPI(PinName mosi, PinName miso, PinName sclk, PinName ssel = NC);
|
SPI(PinName mosi, PinName miso, PinName sclk, PinName ssel = NC);
|
||||||
|
virtual ~SPI();
|
||||||
|
|
||||||
/** Configure the data transmission format
|
/** Configure the data transmission format
|
||||||
*
|
*
|
||||||
|
@ -272,11 +273,6 @@ private:
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
public:
|
|
||||||
virtual ~SPI()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
spi_t _spi;
|
spi_t _spi;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue