MCPcopy Create free account
hub / github.com/PricelessToolkit/MailBoxGuard / end

Method end

Code/Arduino_libraries/SSD1306/OLEDDisplay.cpp:113–119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111}
112
113void OLEDDisplay::end() {
114 if (this->buffer) { free(this->buffer - BufferOffset); this->buffer = NULL; }
115 #ifdef OLEDDISPLAY_DOUBLE_BUFFER
116 if (this->buffer_back) { free(this->buffer_back - BufferOffset); this->buffer_back = NULL; }
117 #endif
118 if (this->logBuffer != NULL) { free(this->logBuffer); this->logBuffer = NULL; }
119}
120
121void OLEDDisplay::resetDisplay(void) {
122 clear();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected