Skip to content
Prev Previous commit
Next Next commit
Update Serial.h
I removed functions that are unnecessary for the 9-bit code to work.
  • Loading branch information
vashadow authored Oct 13, 2024
commit e8d56d6022aff06df921ea5bdec89acf230244a7
2 changes: 0 additions & 2 deletions cores/arduino/Serial.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ class UART : public arduino::HardwareSerial {
size_t write(uint8_t c);
size_t write(uint8_t* c, size_t len);
size_t write_raw(uint8_t* c, size_t len);
size_t write_9bit(uint8_t c, bool wake);
size_t write_9bit(uint8_t* c, bool wake, size_t len);
using Print::write;
operator bool(); // { return true; }

Expand Down