From f3f1b1488bdc92fa9277dc549ba9f3210a8d4c8c Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Thu, 6 Jan 2011 11:28:35 -0800 Subject: [PATCH] altos: packet and usb i/o routines use 'char', not 'uint8_t' Just fixing the type of a local variable holding a character passed from the packet link to usb. Signed-off-by: Keith Packard --- src/ao_packet_master.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ao_packet_master.c b/src/ao_packet_master.c index 0808bc80..5f79885c 100644 --- a/src/ao_packet_master.c +++ b/src/ao_packet_master.c @@ -35,7 +35,7 @@ ao_packet_getchar(void) __critical static void ao_packet_echo(void) __reentrant { - uint8_t c; + char c; while (ao_packet_enable) { c = ao_packet_getchar(); if (c != AO_READ_AGAIN) -- 2.30.2