Part Number: EK-TM4C129EXL
Tool/software: TI-RTOS
Hello community,
sorry, maybe I did overseen something
What I Didi, I took a UART-DMA echo example.
It has one thread where UART connection is opened, then in endless looping echo is processed.
Just wanted to add second thread..
Simply adding in main following
Task_Params taskParams1;
Task_Params_init(&taskParams1);
taskParams1.stackSize = TASKSTACKSIZE;
taskParams1.stack = &task1Stack;
taskParams1.instance->name = "Uart RX Thread";
Task_construct(&task1Struct, (Task_FuncPtr) UARTRXFxn, &taskParams1, NULL);
/* Start BIOS */
BIOS_start();
Unexpectedly, it doesnt work, secon thread was not started at all.
did I miss something?
