Improve response of ;;;;PS1; command

pull/1242/head
Mike Black W9MDB 2023-02-19 16:56:51 -06:00
rodzic 3d38f8b214
commit 10ac497c0b
2 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -516,7 +516,8 @@ transaction_read:
*/
if (datasize)
{
if (cmdstr && (buffer[0] != cmdstr[0] || (cmdstr[1] && buffer[1] != cmdstr[1])))
// we ignore the special ;;;;PS; command
if (strcmp(cmdstr,";;;;PS")!=0 && cmdstr && (buffer[0] != cmdstr[0] || (cmdstr[1] && buffer[1] != cmdstr[1])))
{
/*
* TODO: When RIG_TRN is enabled, we can pass the string to

Wyświetl plik

@ -28,7 +28,7 @@
#include "token.h"
#include "idx_builtin.h"
#define BACKEND_VER "20230208"
#define BACKEND_VER "20230219"
#define EOM_KEN ';'
#define EOM_TH '\r'