summaryrefslogtreecommitdiff
path: root/src/drivers/ao_cc1120.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2018-08-15 19:13:45 -0700
committerKeith Packard <keithp@keithp.com>2018-10-13 08:22:50 -0700
commitc417ab1de2a083b5fcff2e081e4feb2a65887903 (patch)
tree614c7564321ea38402883992daeaea8f30bfe6b1 /src/drivers/ao_cc1120.c
parentc6e57291d91f1f6c4de5c54a5cfd3eef66d9f830 (diff)
altos: Make cmd number parsing functions return value
Don't use a global variable to hold the result. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/drivers/ao_cc1120.c')
-rw-r--r--src/drivers/ao_cc1120.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/drivers/ao_cc1120.c b/src/drivers/ao_cc1120.c
index d581c246..aea0a3fe 100644
--- a/src/drivers/ao_cc1120.c
+++ b/src/drivers/ao_cc1120.c
@@ -805,8 +805,7 @@ ao_radio_test_cmd(void)
static uint8_t radio_on;
ao_cmd_white();
if (ao_cmd_lex_c != '\n') {
- ao_cmd_decimal();
- mode = (uint8_t) ao_cmd_lex_u32;
+ mode = ao_cmd_decimal();
}
mode++;
if ((mode & 2) && !radio_on) {