diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-02-08 06:29:27 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-02-08 06:29:27 +0000 |
commit | 9ab9d1b44b1dfc11094faf3da939d35061b53bed (patch) | |
tree | 879d7431abdb2155de9b444005448499e757e437 /os/hal/include | |
parent | 0847ae54f0d4f32f87dc47338a5a9903ce6bc3e0 (diff) | |
download | ChibiOS-9ab9d1b44b1dfc11094faf3da939d35061b53bed.tar.gz ChibiOS-9ab9d1b44b1dfc11094faf3da939d35061b53bed.tar.bz2 ChibiOS-9ab9d1b44b1dfc11094faf3da939d35061b53bed.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2719 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/include')
-rw-r--r-- | os/hal/include/serial_usb.h | 12 |
1 files changed, 4 insertions, 8 deletions
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;
|