notify user if device not tested yet
This commit is contained in:
parent
f0245a4402
commit
b3bb5e029c
@ -904,6 +904,14 @@ static void reset_statemachine(uint8_t event)
|
|||||||
*dst++ = _hexnibble(device.sig[2]);
|
*dst++ = _hexnibble(device.sig[2]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (device.flags & POLL_UNTESTED) {
|
||||||
|
src = (uint8_t *)" untested";
|
||||||
|
|
||||||
|
while (*src != '\0') {
|
||||||
|
*dst++ = *src++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
*dst++ = ' ';
|
*dst++ = ' ';
|
||||||
*dst++ = '\0';
|
*dst++ = '\0';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user