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.
Tool/software: TI-RTOS
Hi all,
Actually the TCP send buffer set 1300.But it is too slow to load the js file.
I try to enlarge the TCP send buffer to 2048. The loading speed up but it is easy to fail to load.
Who can give me the suggestion to solve this problem.
thanks
Arthur
Hi Arthur,
You may find this thread explaining a bug that may be causing these to fail and how to fix it helpful:
https://e2e.ti.com/support/embedded/tirtos/f/355/p/497052/1803424#1803424
Regards,
Gerardo
Hi Arthur,
The task you highlighted on the second screenshot is overflowing its stack, do you know which task this is? This should be causing some issues so you would want to increase your Task's stack size and maybe that will fix the issue.
Let me know if that helps,
Gerardo
Hi Gerardo,
The task on the second screenshot I think that could be HTTP processing task created by HTTP NDK automatically.
The task appears only when I do something about web page ex: change page to another.
And I found that task' stack size change with "high TaskStackSize".
I modify the high TaskStackSize to 4096 even 6000,but it is still failed.
The issue of the post is similar to mine as below.
I changed Global.memRawPageCount to 32-50 but it not solved my problem.
https://e2e.ti.com/support/microcontrollers/tiva_arm/f/908/t/598021?tisearch=e2e-sitesearch&keymatch=TWO%20TCP
Arthur
Hi Arthur,
The Task has a priority of 5 which correspond to normTaskPriLevel, therefore you need to increase normTaskStackSize.
If that doesn't help try increasing ndkThreadStackSize as well.
Let me know if that helps,
Gerardo
Hi Gerardo,
The task with priority of 5 but I think that applied the high TaskStackSize in my test.
But I don't know why?
You can see that I set the high TaskStackSize 4096.
And the ROV showed that 0x20019450 with priority of 5 and stackSize 4096.
So I am sure that I modified normTaskStackSize not change anything.
And I increase the normTaskStackSize or highTaskStackSize it does not help.
If increasing ndkThreadStackSize the ti_ndk_config_Global_stackThread will change to my set value.
but it does not solve this problem.
Arthur
Hi Arthur,
It looks like you're still overflowing your stack even with the size increase to 4096. You need to increase the stack size even further until your stackPeak is lower than your stackSize.
Thanks,
Gerardo
Hi Arthur,
So since your program seems to be always overflowing that stack even if you increase the size this leads me to believe the issue is somewhere else. I'm thinking there is probably a memory write you are performing where you are writing past that memory's allocated size and therefore writing into this Task's stack causing it to become corrupted. I would check any buffers you may have and any writes to these buffers to ensure you are not writing past their limits.
Hope that helps,
Gerardo
Hi Arthur,
Did you attempt to check if something else could be corrupting that Task's stack?
I will check on the possibility of running the two server at the same time for you.
BR,
Gerardo
Gerardo,
I think you can only try one http and one telnet server first.
And using them in the same time.
In my side you can see the test as below .
#1.Open web page first .My server IP is 192.168.1.84.And it works well.
And then I connect to the telnet server in the same time.
Http server was just like losing connection. Web browser sent "getSystemSettings" to server but nothing back.
#2.If I connect to the telnet server first,it is working!
Then opening the web page I got error.
So you can do this test first to check two of them can work in the same time.
thank you.
BR
Arthur