Increase BT SPP task priority (#8859)
This commit is contained in:
parent
de7cac11ae
commit
6cc307255b
1 changed files with 1 additions and 1 deletions
|
|
@ -671,7 +671,7 @@ static bool _init_bt(const char *deviceName)
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!_spp_task_handle){
|
if(!_spp_task_handle){
|
||||||
xTaskCreatePinnedToCore(_spp_tx_task, "spp_tx", 4096, NULL, 10, &_spp_task_handle, 0);
|
xTaskCreatePinnedToCore(_spp_tx_task, "spp_tx", 4096, NULL, configMAX_PRIORITIES-1, &_spp_task_handle, 0);
|
||||||
if(!_spp_task_handle){
|
if(!_spp_task_handle){
|
||||||
log_e("Network Event Task Start Failed!");
|
log_e("Network Event Task Start Failed!");
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue