* Convert the update error code to string for notation. */
| 120 | * Convert the update error code to string for notation. |
| 121 | */ |
| 122 | void HTTPUpdateServer::_setUpdaterError() { |
| 123 | if (_serial_output) |
| 124 | Update.printError(Serial); |
| 125 | StreamString str; |
| 126 | Update.printError(str); |
| 127 | _updaterError = str.c_str(); |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Shared empty String instance |
nothing calls this directly
no outgoing calls
no test coverage detected