This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi TI:
can I dynamically disable USB (as a device)bulk enpoint rx interrupt for a really short time,meanwhile this operation will not affect the bulk enpoint rx process and data validaty?
Is there already an function for this?
Thanks
Hello Yao,
You can do so for a specific endpoint with:
USBIntDisableEndpoint(uint32_t ui32Base, uint32_t ui32Flags)
//! \param ui32Base specifies the USB module base address. //! \param ui32Flags specifies which endpoint interrupts to disable.
Then you can re-enable with:
USBIntEnableEndpoint(uint32_t ui32Base, uint32_t ui32Flags)