Remove getDirectBuffer

This commit is contained in:
Crsarmv7l 2024-05-05 16:07:02 -04:00 committed by GitHub
parent 21f8ff6ee3
commit b0c517e647
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -207,13 +207,6 @@ int16_t PhysicalLayer::readData(String& str, size_t len) {
}
#endif
uint8_t* PhysicalLayer::getDirectBuffer(bool drop) {
if(drop) {
dropSync();
}
return (this->buffer);
}
int16_t PhysicalLayer::readData(uint8_t* data, size_t len) {
(void)data;
(void)len;