This commit is contained in:
steve 2024-04-10 19:32:59 +01:00
parent b2a2b1d3bf
commit 1ea8f82c68
1 changed files with 3 additions and 2 deletions

View File

@ -95,7 +95,7 @@ XModem xmodem(prom, cmdStatus);
* CLI parse functions
*/
const char hex[] = "0123456789abcdef";
const uint32_t unspec = ~0;;
const uint32_t unspec = ~0;
inline uint32_t if_unspec(uint32_t val, uint32_t repl) { return val == unspec? repl: val; }
enum {
@ -406,7 +406,8 @@ uint32_t dumpBlock(uint32_t start, uint32_t end)
{
Serial.println();
}
return end+1;
return end+1;
}