USB FS Host using FreeRTOS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-05 9:22 AM
Hello,
I am trying to configure USB FS Host using FreeRTOS on STM32H750.
After connecting a device to the USB I get failure on memcpy(). The problem happens because pxQueue->uxMessagesWaiting gets value while the queue (os_event) has no elements.
I believe that I missed anything in the configuration.
I didn't find any manual on the USB FS Host using FreeRTOS configuration.
Could anybody please point to a manual?
Solved! Go to Solution.
- Labels:
-
STM32H7 Series
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-05 1:29 PM
The problem was in the stack size. Setting the MINIMAL_STACK_SIZE to 512 resolves the issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2023-12-05 1:29 PM
The problem was in the stack size. Setting the MINIMAL_STACK_SIZE to 512 resolves the issue.
