PIC32 port task creating issue

wne1 wrote on Friday, September 25, 2009:

my program made 256 tasks after: xLCDQueue = xStartLCDTask();
I viewed it under FreeRTOS view in MpLab.
reference: 1 ~ 256
Name: all the same as "t^L"
priority: all the same as "-1610611860"
state: all the same as "ready"
TCB ID: all the same as "0xA000034C"
Blocking event: all blank
Stack(Start/TOP)(USED): all the same as "(0xA0000374/0x
A0000344)(-47)
Why is that?

davedoors wrote on Saturday, September 26, 2009:

Are you saying you tried to create 256 tasks? If so then you will definitely run out of RAM. Check the return value of xTaskCreate().

wne1 wrote on Monday, September 28, 2009:

I restart the Mplab, now it is ok. Thanks.