diff --git a/Examples/MAX32655/Bluetooth/RF_Test/main.c b/Examples/MAX32655/Bluetooth/RF_Test/main.c index e4387d401e..ea568b0034 100644 --- a/Examples/MAX32655/Bluetooth/RF_Test/main.c +++ b/Examples/MAX32655/Bluetooth/RF_Test/main.c @@ -706,7 +706,8 @@ void txTestTask(void *pvParameters) if (testConfig.testType == BLE_TX_TEST) { res = LlEnhancedTxTest(testConfig.channel, packetLen, packetType, phy, 0); } else { - res = LlEnhancedRxTest(testConfig.channel, phy, 0, 0); + // Transmitters decision if it is S2 or S8. + res = LlEnhancedRxTest(testConfig.channel, LL_PHY_LE_CODED, 0, 0); } xTaskResumeAll(); //Restore scheduler diff --git a/Examples/MAX32665/Bluetooth/RF_Test/main.c b/Examples/MAX32665/Bluetooth/RF_Test/main.c index 1659783e48..3a97d35640 100644 --- a/Examples/MAX32665/Bluetooth/RF_Test/main.c +++ b/Examples/MAX32665/Bluetooth/RF_Test/main.c @@ -709,7 +709,8 @@ void txTestTask(void *pvParameters) if (testConfig.testType == BLE_TX_TEST) { res = LlEnhancedTxTest(testConfig.channel, packetLen, packetType, phy, 0); } else { - res = LlEnhancedRxTest(testConfig.channel, phy, 0, 0); + // Transmitters decision if S2 or S8 + res = LlEnhancedRxTest(testConfig.channel, LL_PHY_LE_CODED, 0, 0); } xTaskResumeAll(); //Restore scheduler diff --git a/Examples/MAX32690/Bluetooth/RF_Test/main.c b/Examples/MAX32690/Bluetooth/RF_Test/main.c index a6c78d8b50..54c1c113fd 100644 --- a/Examples/MAX32690/Bluetooth/RF_Test/main.c +++ b/Examples/MAX32690/Bluetooth/RF_Test/main.c @@ -710,7 +710,8 @@ void txTestTask(void *pvParameters) if (testConfig.testType == BLE_TX_TEST) { res = LlEnhancedTxTest(testConfig.channel, packetLen, packetType, phy, 0); } else { - res = LlEnhancedRxTest(testConfig.channel, phy, 0, 0); + // Transmitters decision if S2 or S8 + res = LlEnhancedRxTest(testConfig.channel, LL_PHY_LE_CODED, 0, 0); } xTaskResumeAll(); //Restore scheduler