From c71763dc93efc064f889856c27b7e902555c1cfe Mon Sep 17 00:00:00 2001 From: Guillem Foreman Date: Tue, 2 Jul 2019 12:08:13 +0200 Subject: [PATCH] Fixed minor message in modem test --- lib/src/phy/modem/test/modem_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/phy/modem/test/modem_test.c b/lib/src/phy/modem/test/modem_test.c index 783adf9d5..ed2b8efb2 100644 --- a/lib/src/phy/modem/test/modem_test.c +++ b/lib/src/phy/modem/test/modem_test.c @@ -39,7 +39,7 @@ srslte_mod_t modulation = SRSLTE_MOD_BPSK; void usage(char *prog) { printf("Usage: %s [nmse]\n", prog); printf("\t-n num_bits [Default %d]\n", num_bits); - printf("\t-m modulation (1: BPSK, 2: QPSK, 3: QAM16, 4: QAM64) [Default BPSK]\n"); + printf("\t-m modulation (1: BPSK, 2: QPSK, 4: QAM16, 6: QAM64, 8: QAM256) [Default BPSK]\n"); } void parse_args(int argc, char **argv) { @@ -68,7 +68,7 @@ void parse_args(int argc, char **argv) { break; default: ERROR("Invalid modulation %d. Possible values: " - "(1: BPSK, 2: QPSK, 3: QAM16, 4: QAM64)\n", + "(1: BPSK, 2: QPSK, 4: QAM16, 6: QAM64, 8: QAM256)\n", atoi(argv[optind])); break; }