|
|
|
@ -448,46 +448,71 @@ void term_parse(uint8_t *cmd, uint16_t len, Terminal_stream src, Uart_data_type |
|
|
|
if(checkcmd(cmd, 4, (uint8_t*)"help")) |
|
|
|
{ |
|
|
|
term_sendString((uint8_t*)"\r\nCommands available in config mode:\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"print - prints all configuration parameters\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"list - prints callsign filter list\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"save - saves configuration and reboots the device\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"eraseall - erases all configurations and reboots the device\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"help - shows this help page\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"reboot - reboots the device\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"version - shows full firmware version info\r\n\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"call <callsign> - sets callsign\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"ssid <0-15> - sets SSID\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"dest <address> - sets destination address\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"txdelay <50-2550> - sets TXDelay time (ms)\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"txtail <10-2550> - sets TXTail time (ms)\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"quiet <100-2550> - sets quiet time (ms)\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"rs1baud/rs2baud <1200-115200> - sets UART1/UART2 baudrate\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"pwm [on/off] - enables/disables PWM. If PWM is off, R2R will be used instead\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"flat [on/off] - set to \"on\" if flat audio input is used\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"beacon <0-7> [on/off] - enables/disables specified beacon\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"beacon <0-7> [iv/dl] <0-720> - sets interval/delay for the specified beacon (min)\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"beacon <0-7> path <el1,[el2]>/none - sets path for the specified beacon\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"beacon <0-7> data <data> - sets information field for the specified beacon\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"digi [on/off] - enables/disables whole digipeater\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"digi <0-7> [on/off] - enables/disables specified slot\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"digi <0-7> alias <alias> - sets alias for the specified slot\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"digi <0-3> [max/rep] <0/1-7> - sets maximum/replacement N for the specified slot\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"digi <0-7> trac [on/off] - enables/disables packet tracing for the specified slot\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"digi <0-7> viscous [on/off] - enables/disables viscous-delay digipeating for the specified slot\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"digi <0-7> direct [on/off] - enables/disables direct-only digipeating for the specified slot\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"digi <0-7> filter [on/off] - enables/disables packet filtering for the specified slot\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"digi filter [black/white] - sets filtering type to blacklist/whitelist\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"digi dupe <5-255> - sets anti-dupe buffer time (s)\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"digi list <0-19> [set <call>/remove] - sets/clears specified callsign slot in filter list\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"autoreset <0-255> - sets auto-reset interval (h) - 0 to disable\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
term_sendString((uint8_t*)"monkiss [on/off] - send own and digipeated frames to KISS ports\r\n", 0); |
|
|
|
term_sendBuf(src); |
|
|
|
return; |
|
|
|
|