Hi Dina,
Are you asking how to change the task stack size?
If yes, task stack size is defined in the MQX_template_list[].
const TASK_TEMPLATE_STRUCT MQX_template_list[] =
{ /* Task Index, Function, Stack, Priority, Name, Attributes, Param, Time Slice */
{ 1, flash_task, 2000, 7, "flash_test", MQX_AUTO_START_TASK, 0, 0 },
{ 2, flashnvm_task,3000, 8, "flash_nvm", MQX_AUTO_START_TASK, 0, 0 },
{ 0 } };
The linker file is only defining the default interrupt stack size.
Regards,
David