Hi,I need to put my timer scheduler to 1msSo I declared in my project option TX_TIMER_TICKS_PER_SECOND=1000It's ok.
But wich value do I put for Netx ?
NX_IP_PERIODIC_RATENX_IP_FAST_TIMER_RATE
NX_TCP_FAST_TIMER_RATENX_TCP_ACK_TIMER_RATE
Because my timing tcp retry is now to 100ms instead of 1000ms
I tried this values, but my BSD socket never send "SYN" now :Any idea ?
Best regards,
Phil
Hi Phil,
There is some information on NX_TCP directives in nx_tcp.h file under ra/microsoft/azure-rtos/common/inc . By default:
NX_TCP_FAST_TIMER_RATE = 10
NX_TCP_ACK_TIMER_RATE = 5
Hope it helps.