Update main.c added REPEATER and TXCOMMAND

pull/327/head
Alan Johnston 1 year ago committed by GitHub
parent e943ebbfae
commit 77ab9936ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -193,6 +193,12 @@ int main(int argc, char * argv[]) {
} else if ( mode_string == 'm') { } else if ( mode_string == 'm') {
mode = CW; mode = CW;
printf("Mode is CW\n"); printf("Mode is CW\n");
} else if ( mode_string == 'e') {
mode = REPEATER;
printf("Mode is Repeater\n");
} else if ( mode_string == 'n') {
mode = TXCOMMAND;
printf("Mode is Transmit Command\n");
} else { } else {
printf("Mode is FSK\n"); printf("Mode is FSK\n");
} }

Loading…
Cancel
Save

Powered by TurnKey Linux.