MCPcopy Create free account
hub / github.com/JoaoLopesF/RemoteDebug / write

Method write

src/RemoteDebug.cpp:854–864  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

852// Print
853
854size_t RemoteDebug::write(const uint8_t *buffer, size_t size) {
855
856 // Process buffer
857 // Insert due a write bug w/ latest Esp8266 SDK - 17/08/18
858
859 for(size_t i=0; i<size; i++) {
860 write((uint8_t) buffer[i]);
861 }
862
863 return size;
864}
865
866size_t RemoteDebug::write(uint8_t character) {
867

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected