diff options
author | Keith Packard <keithp@keithp.com> | 2013-05-13 22:34:19 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-06-09 12:14:11 -0700 |
commit | 72b6c699d355fcd41addb9919d846e63105b9db7 (patch) | |
tree | e80c32df0eaa776db2b01eccc91bbba15b8d2499 /src/stm-demo/ao_demo.c | |
parent | 47b7e1d819e48aaebf6ffda49effbee041ce8750 (diff) |
altos: Add debounce helper. Use in button and quadrature drivers for TeleLCO
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/stm-demo/ao_demo.c')
-rw-r--r-- | src/stm-demo/ao_demo.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stm-demo/ao_demo.c b/src/stm-demo/ao_demo.c index 5677cdf4..58cf651b 100644 --- a/src/stm-demo/ao_demo.c +++ b/src/stm-demo/ao_demo.c @@ -153,6 +153,7 @@ ao_temp (void) printf ("temp: %d\n", temp); } +#if 0 static void ao_event(void) { @@ -168,6 +169,7 @@ ao_event(void) } } +#endif __code struct ao_cmds ao_demo_cmds[] = { { ao_dma_test, "D\0DMA test" }, @@ -175,7 +177,7 @@ __code struct ao_cmds ao_demo_cmds[] = { { ao_spi_read, "R\0SPI read" }, { ao_i2c_write, "i\0I2C write" }, { ao_temp, "t\0Show temp" }, - { ao_event, "e\0Monitor event queue" }, +/* { ao_event, "e\0Monitor event queue" }, */ { 0, NULL } }; |