Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions data/cmdvartab
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@ CMDDESC test.failure.start "Start a simulated power failure"
CMDDESC test.failure.stop "Stop simulating a power failure"
CMDDESC test.battery.start "Start a battery test"
CMDDESC test.battery.start.quick "Start a quick battery test"
CMDDESC test.battery.start.low "Start a battery test until battery low"
CMDDESC test.battery.start.deep "Start a deep battery test"
CMDDESC test.battery.stop "Stop the battery test"
CMDDESC test.system.start "Start a system test"
Expand Down
1 change: 1 addition & 0 deletions docs/nut-names.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1030,6 +1030,7 @@ Instant commands
| test.failure.stop | Stop simulating a power failure
| test.battery.start | Start a battery test
| test.battery.start.quick | Start a "quick" battery test
| test.battery.start.low | Start a battery test until battery low
| test.battery.start.deep | Start a "deep" battery test
| test.battery.stop | Stop the battery test
| test.system.start | Start a system test
Expand Down
1 change: 1 addition & 0 deletions drivers/nutdrv_qx_masterguard.c
Original file line number Diff line number Diff line change
Expand Up @@ -858,6 +858,7 @@ static item_t masterguard_qx2nut[] = {
/* test.failure.stop */
{ "test.battery.start", 0, NULL, NULL, "", 0, '\0', "", 0, 0, NULL, QX_FLAG_CMD, NULL, NULL, masterguard_test_battery },
{ "test.battery.start.quick", 0, NULL, "T\r", "", 0, '\0', "", 0, 0, NULL, QX_FLAG_CMD, NULL, NULL, NULL },
{ "test.battery.start.low", 0, NULL, "TL\r", "", 0, '\0', "", 0, 0, NULL, QX_FLAG_CMD, NULL, NULL, NULL },
{ "test.battery.start.deep", 0, NULL, "TUD\r", "", 0, '\0', "", 0, 0, NULL, QX_FLAG_CMD, NULL, NULL, NULL },
{ "test.battery.stop", 0, NULL, "CT\r", "", 0, '\0', "", 0, 0, NULL, QX_FLAG_CMD, NULL, NULL, NULL },
/* test.system.start */
Expand Down
Loading