summaryrefslogtreecommitdiff
path: root/src/stm/ao_pwm_stm.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/stm/ao_pwm_stm.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/stm/ao_pwm_stm.c')
-rw-r--r--src/stm/ao_pwm_stm.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/stm/ao_pwm_stm.c b/src/stm/ao_pwm_stm.c
index 53000a17..341f8887 100644
--- a/src/stm/ao_pwm_stm.c
+++ b/src/stm/ao_pwm_stm.c
@@ -107,10 +107,8 @@ ao_pwm_cmd(void)
uint8_t ch;
uint16_t val;
- ao_cmd_decimal();
- ch = ao_cmd_lex_u32;
- ao_cmd_decimal();
- val = ao_cmd_lex_u32;
+ ch = ao_cmd_decimal();
+ val = ao_cmd_decimal();
if (ao_cmd_status != ao_cmd_success)
return;