summaryrefslogtreecommitdiff
path: root/src/avr/ao_avr_stdio.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-04-22 20:27:52 -0500
committerKeith Packard <keithp@keithp.com>2013-04-22 20:27:52 -0500
commit38fd4396370ffb66f371e1468e85ac52f407970f (patch)
tree1b7f861dfcda3febb31b2d2e694be42caf9c5675 /src/avr/ao_avr_stdio.c
parent4bd115f9fc01dc3a68c9765992d3df4d9cffd63d (diff)
altos: Eliminate stdio looping when system has a single stdio source
No need to loop if there's only one Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/avr/ao_avr_stdio.c')
-rw-r--r--src/avr/ao_avr_stdio.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/avr/ao_avr_stdio.c b/src/avr/ao_avr_stdio.c
index 2765853a..f9c0f88c 100644
--- a/src/avr/ao_avr_stdio.c
+++ b/src/avr/ao_avr_stdio.c
@@ -20,16 +20,7 @@
int
stdio_put(char c, FILE *stream)
{
- if (ao_cur_task && ao_num_stdios)
- putchar(c);
- else
- {
- if (c == '\n')
- stdio_put('\r', stream);
- loop_until_bit_is_set(UCSR1A, UDRE1);
- UDR1 = c;
- }
-
+ putchar(c);
return 0;
}