altos: Replace ao_alarm/ao_clear_alarm with ao_sleep_for
authorKeith Packard <keithp@keithp.com>
Sat, 14 Feb 2015 07:51:10 +0000 (23:51 -0800)
committerKeith Packard <keithp@keithp.com>
Sat, 14 Feb 2015 07:51:10 +0000 (23:51 -0800)
commitf4c812bef76a2cd95f675cb27ea89059561ceec7
tree9244ec29ee751a3384f7a0249714d9109934df7c
parent1445725b983134d5a967dee88ef997bf15d4a422
altos: Replace ao_alarm/ao_clear_alarm with ao_sleep_for

Having arbitrary alarms firing in the middle of complicated device
logic makes no sense at all. Therefore only correct use of ao_alarm
and ao_clear_alarm was around a specific ao_sleep call, with correct
recovery in case the alarm fires.

This patch replaces all uses of ao_alarm/ao_sleep/ao_clear_alarm with
ao_sleep_for, a new function which takes the alarm timeout directly.

A few cases which weren't simply calling ao_sleep have been reworked
to pass the timeout value down to the place where sleep *is* being
called, and having that code deal with the return correctly.

Signed-off-by: Keith Packard <keithp@keithp.com>
23 files changed:
src/cc1111/ao_arch.h
src/cc1111/ao_button.c
src/cc1111/ao_radio.c
src/drivers/ao_btm.c
src/drivers/ao_cc1120.c
src/drivers/ao_cc1200.c
src/drivers/ao_companion.c
src/drivers/ao_hmc5883.c
src/drivers/ao_packet.c
src/drivers/ao_packet_master.c
src/drivers/ao_packet_slave.c
src/kernel/ao_packet.h
src/kernel/ao_pyro.c
src/kernel/ao_serial.h
src/kernel/ao_task.c
src/kernel/ao_task.h
src/kernel/ao_telemetry.c
src/product/ao_terraui.c
src/stm/ao_i2c_stm.c
src/stm/ao_serial_stm.c
src/telebt-v3.0/ao_pins.h
src/telelco-v0.1/ao_lco.c
src/telelco-v0.2/ao_lco.c