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.

RTOS/DK-TM4C129X: Task blocked on an unknown semaphore (with a label same as the task label)

Part Number: DK-TM4C129X

Tool/software: TI-RTOS

Hello

I am trying to utilize USB re-connection.

I have a task that handles all the USB Tx. 

It sits of a mailbox, pending until a message pops up, and sends it through the usual USBDCDC handlers.

after disconnecting the cable, the "message" task is blocked by "message" semaphore, which appears in the ROV only then.

the mailbox is empty, and I am calling semaphore_post to release the USB_Tx semaphore.

I would appreciate any help.

code:

while(1)
{
Mailbox_pend(msgQ , &Message, BIOS_WAIT_FOREVER);

SendResponse(Message.messageId);

....

}

  • Hi Shlomo,

    Can you look at the call stacks for the tasks? ROV->Tasks->Call Stack?

    Note the blue underlined message is the name of the task...not the semaphore.

    Todd
  • Hi Todd.

    Call stack is attached;

    It seems that the task is blocked on the semTxSerial semaphore. it is defined to wait forever.

    I tried yesterday three solutions, neither worked: (but maybe the problem moved to another place)

    1. force post the semaphore

    2. delete the semaphore and recreate it

    3. change the timeout to 1/10/100 - slowed the whole regular operation dr astically.

    Thanks for your help!

    Shlomo

  • What data are you trying to send? Does the data get sent properly, but then the cbTxHandler never gets called? Can you give the exact details on how to produce the issue (e.g. are you unplugging/plugging in the USB)?