Test the BEEP command #1
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixed in
0f9c69e. Root cause: the BEEP command needs a space before the on/off byte (BEEP+ 0x01/0x00), matching BATTERY?/CONFIG?; we were sendingBEEP+ byte with no space, so it had no effect.Verified on hardware:
beep --off-> CONFIG? reports beep off;beep-> reports onNote: on the tested unit, enabling makes it beep continuously until turned off, so
p21 beep/p21 beep --offact as an on/off switch. Added a unit test locking the exact byte format (BEEP \x01\r\n/BEEP \x00\r\n).