supported GR-PEACH original: http://developer.mbed.org/users/va009039/code/USBHostC270_example/ The function of Isochronous has moved to USBHost_AddIso library.
Dependencies: USBHost_custom_Addiso
Fork of USBHostC270_example_GR-PEACH by
Revision 2:3e3df7a79050, committed 2013-03-12
- Comitter:
- samux
- Date:
- Tue Mar 12 17:35:32 2013 +0000
- Parent:
- 1:473f339c54c1
- Child:
- 3:17ca010bda2e
- Commit message:
- reduce stack size
Changed in this revision
| main.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/main.cpp Tue Mar 12 17:30:04 2013 +0000
+++ b/main.cpp Tue Mar 12 17:35:32 2013 +0000
@@ -39,7 +39,7 @@
int main() {
- Thread msdTask(msd_task, NULL, osPriorityNormal, (1024+512) * 4);
+ Thread msdTask(msd_task, NULL, osPriorityNormal, 1024 * 4);
while(1) {
led=!led;
Thread::wait(500);
