Hi,
I have a big problem about stack in FreeRTOS..I define two task.Task 1 has a stack and its name task1Stack_ and the other task2STACK_.Normally any task is not access to stack of the other stack.But when try this, task1 access to task2Stack_ and ı expect that dabort fault. In other words, task2Stack_ was used by task1 and it can change contents of the task2Stack..
The other problem is when i create a task with xTaskCreateRestricted() and give a memory region and I want to read only in this region but when I write this region, process is not any return fault(Dabort), and write this region...Why ??
Thank you..