void tls_os_time_delay (u32 ticks)
{
vTaskDelay (ticks) ;
}
The default time slice of the delay function is 2ms;
By modification configTICK_RATE_HZ ( ( portTickType ) 500u )
Change it to 1000, I want to change the time slice to 1ms, It didn't respond after I changed it, still 2ms