summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-07-01 21:16:07 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-07-01 21:16:07 +0000
commitc36919eca3a19086dc1f4ebfa2eedc6e705fcb61 (patch)
tree1db8f429683c9fbea745a4d43eb177ad87a92ee9 /firmware
parent9f690b8cf81a8eaafa43c30bf7e076b3be85f4c1 (diff)
downloadrockbox-c36919eca3a19086dc1f4ebfa2eedc6e705fcb61.zip
rockbox-c36919eca3a19086dc1f4ebfa2eedc6e705fcb61.tar.gz
rockbox-c36919eca3a19086dc1f4ebfa2eedc6e705fcb61.tar.bz2
rockbox-c36919eca3a19086dc1f4ebfa2eedc6e705fcb61.tar.xz
Increased thread stack size
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1291 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/backlight.c2
-rw-r--r--firmware/usb.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/firmware/backlight.c b/firmware/backlight.c
index 61035b3..69907cf 100644
--- a/firmware/backlight.c
+++ b/firmware/backlight.c
@@ -30,7 +30,7 @@
#define BACKLIGHT_OFF 2
static void backlight_thread(void);
-static char backlight_stack[0x100];
+static char backlight_stack[0x400];
static struct event_queue backlight_queue;
static int backlight_timer;
diff --git a/firmware/usb.c b/firmware/usb.c
index 7516ceb..01b14ff 100644
--- a/firmware/usb.c
+++ b/firmware/usb.c
@@ -54,7 +54,7 @@ static int countdown;
static int usb_state;
-static char usb_stack[0x200];
+static char usb_stack[0x800];
static struct event_queue usb_queue;
static bool last_usb_status;
static bool usb_monitor_enabled;