* Terminal Chat: "set ..." commands, save to "node_prefs" file, consistent with the other firmwares

This commit is contained in:
Scott Powell
2025-02-03 13:56:57 +11:00
parent 7b31fc8ef9
commit 466caebd9a
5 changed files with 116 additions and 20 deletions

View File

@@ -115,6 +115,10 @@ static uint8_t hexVal(char c) {
return 0;
}
bool Utils::isHexChar(char c) {
return c == '0' || hexVal(c) > 0;
}
bool Utils::fromHex(uint8_t* dest, int dest_size, const char *src_hex) {
int len = strlen(src_hex);
if (len != dest_size*2) return false; // incorrect length