Skip to content

Commit 8911136

Browse files
JAndrassydevyte
authored andcommitted
SPISlave.end() added (#4248)
* Change argument to Esp.deepSleep from uint32 to uint64 to match SDK, add deepSleepMax based on the cali_proc function per SDK * SPISlave.end() added * Nameoftherose patch for Issue #2435 (#4256) * WiFiTelnetToSerial Example - Minor Issues #2435 * WiFiTelnetToSerial Example - Minor Issues #2435 Patch to rectify issue #2435 * Check that pins needed by Wire are defined at compile-time (#4261)
1 parent 855b03c commit 8911136

File tree

4 files changed

+29
-0
lines changed

4 files changed

+29
-0
lines changed

libraries/SPISlave/src/SPISlave.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,14 @@ void SPISlaveClass::begin()
7272
hspi_slave_onStatusSent(&_s_status_tx);
7373
hspi_slave_begin(4, this);
7474
}
75+
void SPISlaveClass::end()
76+
{
77+
hspi_slave_onData(nullptr);
78+
hspi_slave_onDataSent(nullptr);
79+
hspi_slave_onStatus(nullptr);
80+
hspi_slave_onStatusSent(nullptr);
81+
hspi_slave_end();
82+
}
7583
void SPISlaveClass::setData(uint8_t * data, size_t len)
7684
{
7785
if(len > 32) {

libraries/SPISlave/src/SPISlave.h

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ class SPISlaveClass
5252
{}
5353
~SPISlaveClass() {}
5454
void begin();
55+
void end();
5556
void setData(uint8_t * data, size_t len);
5657
void setData(const char * data)
5758
{

libraries/SPISlave/src/hspi_slave.c

+17
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,23 @@ void hspi_slave_begin(uint8_t status_len, void * arg)
9797
ETS_SPI_INTR_ENABLE();
9898
}
9999

100+
void hspi_slave_end()
101+
{
102+
ETS_SPI_INTR_DISABLE();
103+
ETS_SPI_INTR_ATTACH(NULL, NULL);
104+
105+
pinMode(SS, INPUT);
106+
pinMode(SCK, INPUT);
107+
pinMode(MISO, INPUT);
108+
pinMode(MOSI, INPUT);
109+
110+
// defaults
111+
SPI1S = 0;
112+
SPI1U = SPIUSSE | SPIUCOMMAND;
113+
SPI1S1 = 0;
114+
SPI1P = B110;
115+
}
116+
100117
void hspi_slave_setStatus(uint32_t status)
101118
{
102119
SPI1WS = status;

libraries/SPISlave/src/hspi_slave.h

+3
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
//Start SPI SLave
2727
void hspi_slave_begin(uint8_t status_len, void * arg);
2828

29+
//End SPI SLave
30+
void hspi_slave_end();
31+
2932
//set the status register so the master can read it
3033
void hspi_slave_setStatus(uint32_t status);
3134

0 commit comments

Comments
 (0)