summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-02-11 14:34:32 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-02-11 14:34:32 +0000
commit11c1d28d9e69b67d425ab0b3532e69ba19a784b6 (patch)
tree4f47173c26d1104703963d5a8cddf0a36e558be7
parent3cac79e68fa2f9231bcc157270f86d4d849718f4 (diff)
downloadrockbox-11c1d28d9e69b67d425ab0b3532e69ba19a784b6.tar.gz
rockbox-11c1d28d9e69b67d425ab0b3532e69ba19a784b6.zip
Increased the USb thread stack
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5912 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/usb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/usb.c b/firmware/usb.c
index a9ce20e13a..8bb320c49d 100644
--- a/firmware/usb.c
+++ b/firmware/usb.c
@@ -72,9 +72,9 @@ static int usb_state;
72static int usb_mmc_countdown = 0; 72static int usb_mmc_countdown = 0;
73#endif 73#endif
74 74
75/* FIXME: The extra 0x400 is consumed by fat_mount() when the fsinfo 75/* FIXME: The extra 0x800 is consumed by fat_mount() when the fsinfo
76 needs updating */ 76 needs updating */
77static long usb_stack[(DEFAULT_STACK_SIZE + 0x400)/sizeof(long)]; 77static long usb_stack[(DEFAULT_STACK_SIZE + 0x800)/sizeof(long)];
78static const char usb_thread_name[] = "usb"; 78static const char usb_thread_name[] = "usb";
79static struct event_queue usb_queue; 79static struct event_queue usb_queue;
80static bool last_usb_status; 80static bool last_usb_status;