From 3e7715d2f52797aa5e3aedba3543cb29feb8b776 Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Sat, 21 Feb 2009 16:36:54 +0000 Subject: small usb serial fixes. This seems to work fine on imx31, but for some reason it sometimes stops sending data on portalplayer git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20077 a1c6a512-1295-4272-9138-f99709370657 --- firmware/usbstack/usb_serial.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/firmware/usbstack/usb_serial.c b/firmware/usbstack/usb_serial.c index 08cc6f1d28..b7d5062237 100644 --- a/firmware/usbstack/usb_serial.c +++ b/firmware/usbstack/usb_serial.c @@ -56,18 +56,11 @@ static struct usb_endpoint_descriptor __attribute__((aligned(2))) endpoint_descr .bInterval = 0 }; -#define BUFFER_SIZE 150 -#if CONFIG_CPU == IMX31L -static unsigned char send_buffer[BUFFER_SIZE] - USBDEVBSS_ATTR __attribute__((aligned(32))); -static unsigned char receive_buffer[32] - USBDEVBSS_ATTR __attribute__((aligned(32))); -#else +#define BUFFER_SIZE 512 static unsigned char send_buffer[BUFFER_SIZE] USB_DEVBSS_ATTR __attribute__((aligned(32))); static unsigned char receive_buffer[32] USB_DEVBSS_ATTR __attribute__((aligned(32))); -#endif static void sendout(void); -- cgit v1.2.3