try a diffrent waveform

This commit is contained in:
2025-03-24 20:52:43 +01:00
parent 4c1c0d573c
commit 6781446c90
9 changed files with 23 additions and 36 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ void poll_control_pipe(RDSModulator* mod) {
if (cmd_len > 0 && cmd_len < CMD_BUFFER_SIZE) {
memset(cmd_buf, 0, CMD_BUFFER_SIZE);
strncpy((char *)cmd_buf, token, CMD_BUFFER_SIZE - 1);
process_ascii_cmd(mod, cmd_buf);
process_ascii_cmd(mod, cmd_buf, NULL);
}
token = strtok(NULL, "\r\n");
if(token == NULL) token = strtok(NULL, "\r");