Hi,
I am using TI USB stack with MSP430F5528. I need to perform some action immediately after a USB ISR returns. Say after a SET_REPORT request from the host. I can not perform this action within the handler function as there are timing requirements and the action is a little complex. So I am looking for something with which I can execute a function immediately after the USB ISR return. Is there any straight forward method for doing this? Life would have been easy if I had an RTOS running. But instead I have a busy main loop. If I keep a flag and indicate the main loop to call a function I am not able to meet the timing requirement. The function should be called immediately after the ISR.