mirror of
https://github.com/cesanta/mongoose
synced 2026-08-25 22:26:06 -04:00
update stale example
This commit is contained in:
parent
2838c85342
commit
4e3e7ac4b2
1 changed files with 7 additions and 1 deletions
|
|
@ -12,7 +12,13 @@ struct mg_tcpip_spi spi = {
|
|||
NULL, // SPI metadata
|
||||
[](void *) { digitalWrite(SS_PIN, LOW); SPI.beginTransaction(SPISettings()); },
|
||||
[](void *) { digitalWrite(SS_PIN, HIGH); SPI.endTransaction(); },
|
||||
[](void *, uint8_t c) { return SPI.transfer(c); }, // Execute transaction
|
||||
[](void *, uint8_t *w, uint8_t *r, size_t n) { // Execute transaction
|
||||
while (n--) {
|
||||
uint8_t c = (w != NULL) ? *w++ : 0xFF;
|
||||
uint8_t d = SPI.transfer(c);
|
||||
if (r != NULL) *r++ = d;
|
||||
}
|
||||
},
|
||||
};
|
||||
struct mg_mgr mgr; // Mongoose event manager
|
||||
struct mg_tcpip_if mif = {.mac = {2, 0, 1, 2, 3, 5}}; // Network interface
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue