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 abeee39 commit 990154cCopy full SHA for 990154c
api/HardwareSPI.h
@@ -111,6 +111,9 @@ class HardwareSPI
111
virtual uint16_t transfer16(uint16_t data) = 0;
112
virtual void transfer(void *buf, size_t count) = 0;
113
114
+ // EFP3 - Additional block-based versions we implement
115
+ virtual void transfer(const void *txbuf, void *rxbuf, size_t count) = 0;
116
+
117
// Transaction Functions
118
virtual void usingInterrupt(int interruptNumber) = 0;
119
virtual void notUsingInterrupt(int interruptNumber) = 0;
0 commit comments