CC26xx RF core: don't bail out from restarting the radio timer if just stopping it failed

pull/2/head
Atis Elsts 2017-03-14 18:36:23 +00:00
parent b756841522
commit dbd9d32daf
1 changed files with 1 additions and 2 deletions

View File

@ -419,8 +419,7 @@ rf_core_restart_rat(void)
{
if(rf_core_stop_rat() != RF_CORE_CMD_OK) {
PRINTF("rf_core_restart_rat: rf_core_stop_rat() failed\n");
return RF_CORE_CMD_ERROR;
/* Don't bail out here, still try to start it */
}
if(rf_core_start_rat() != RF_CORE_CMD_OK) {