From 9ab9d1b44b1dfc11094faf3da939d35061b53bed Mon Sep 17 00:00:00 2001 From: gdisirio Date: Tue, 8 Feb 2011 06:29:27 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2719 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/include/serial_usb.h | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) (limited to 'os/hal/include/serial_usb.h') diff --git a/os/hal/include/serial_usb.h b/os/hal/include/serial_usb.h index 03c075f62..3cfa1441b 100644 --- a/os/hal/include/serial_usb.h +++ b/os/hal/include/serial_usb.h @@ -115,14 +115,10 @@ typedef struct { InputQueue iqueue; \ /* Output queue.*/ \ OutputQueue oqueue; \ - /* Input buffer 1.*/ \ - uint8_t ib1[SERIAL_USB_BUFFERS_SIZE]; \ - /* Input buffer 2.*/ \ - uint8_t ib2[SERIAL_USB_BUFFERS_SIZE]; \ - /* Output buffer 1.*/ \ - uint8_t ob1[SERIAL_USB_BUFFERS_SIZE]; \ - /* Output buffer 2.*/ \ - uint8_t ob2[SERIAL_USB_BUFFERS_SIZE]; \ + /* Input buffer.*/ \ + uint8_t ib[SERIAL_USB_BUFFERS_SIZE]; \ + /* Output buffer.*/ \ + uint8_t ob[SERIAL_USB_BUFFERS_SIZE]; \ /* End of the mandatory fields.*/ \ /* Current configuration data.*/ \ const SerialUSBConfig *config; -- cgit v1.2.3