diff options
author | Keith Packard <keithp@keithp.com> | 2011-05-17 17:52:35 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-05-17 17:52:35 -0700 |
commit | ce78906727aa59fc2b91f0fde4c7186b037359ff (patch) | |
tree | 3ea069a2d1764aac67a3c8d301fef7fb78a01193 /src-avr/ao_serial_avr.c | |
parent | edc7bff70353df0c83deff6d5107060f6e934607 (diff) |
src-avr: USB work in progress
Some packets are flowing, although it's not working right.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src-avr/ao_serial_avr.c')
-rw-r--r-- | src-avr/ao_serial_avr.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src-avr/ao_serial_avr.c b/src-avr/ao_serial_avr.c index 9b35a449..5c098f0b 100644 --- a/src-avr/ao_serial_avr.c +++ b/src-avr/ao_serial_avr.c @@ -24,7 +24,6 @@ ISR(USART1_RX_vect) { if (!ao_fifo_full(ao_usart1_rx_fifo)) ao_fifo_insert(ao_usart1_rx_fifo, UDR1); - ao_led_toggle(AO_LED_RED); ao_wakeup(&ao_usart1_rx_fifo); #if USE_SERIAL_STDIN ao_wakeup(&ao_stdin_ready); |