Replies: 5 comments 5 replies
-
I also faced similar issue sometimes, but it got resolved automatically some times I haven't look for RCA yet. Are you using freeRTOS with IAR? |
Beta Was this translation helpful? Give feedback.
-
I am using IAR and FreeRTOS with EK-RA6M5.
I am also facing this issue sometimes but when I Used e2studio with
EK-RA6M5 i Didn't get any issue it is working fine every.
On IAR i am facing some issues regarding interrupt.
In recent PR for USBHS(not merged) some modifications have been made for
attach interrupt. you can try that changes once.
Not sure if this is some compiler dependent or not.
Also try to plug out and plug in flash drive again.
I think that helps.
…On Mon, May 15, 2023, 2:56 PM abakosh ***@***.***> wrote:
No I am not using RTOS
—
Reply to this email directly, view it on GitHub
<#2062 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A7VQBKR2VWU3MXTCC53KBTDXGHZD5ANCNFSM6AAAAAAX7XTKUM>
.
You are receiving this because you commented.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
When you are building with IAR, what are you doing regarding the __builtin_ctz function, it is not native to the IAR environment. |
Beta Was this translation helpful? Give feedback.
-
@perigoso Hello, thank you for your work on the RA support. Did you have the chance to test the host code with the IAR compiler? |
Beta Was this translation helpful? Give feedback.
-
Hi @abakosh , Have you faced any issue regarding NRDY received, after sending MSC_STAGE_CMD command? I am getting NRDY for pipe4, have you made any changes regarding to endian ness or any thing related to compiler specific with IAR.- I already made the changes you mentioned in PR - #2063. |
Beta Was this translation helpful? Give feedback.
-
I am using tinyusb host functionality on the Renesas RA family. I am able to mount or unmount USB sticks successfully. However, for some devices, the stack gets stuck and I keep getting the following message when I enabled the debug:
[0:] USBH Defer Attach until the current enumeration
I follow it to this part of the code
case HCD_EVENT_DEVICE_ATTACH: // due to the shared _usbh_ctrl_buf, we must complete enumerating // one device before enumerating another one. if ( _dev0.enumerating ) { TU_LOG_USBH("[%u:] USBH Defer Attach until current enumeration complete\r\n", event.rhport); osal_queue_send(_usbh_q, &event, in_isr); }
Do you know what could be the reason for this behavior, is there anyone got the same issue?
I appreciate your help
Beta Was this translation helpful? Give feedback.
All reactions