diff --git a/Examples/MAX32655/Bluetooth/RF_Test/main.c b/Examples/MAX32655/Bluetooth/RF_Test/main.c index f2919ceb67..dfc79fea45 100644 --- a/Examples/MAX32655/Bluetooth/RF_Test/main.c +++ b/Examples/MAX32655/Bluetooth/RF_Test/main.c @@ -707,7 +707,7 @@ void txTestTask(void *pvParameters) res = LlEnhancedTxTest(testConfig.channel, packetLen, packetType, phy, 0); } else { // Transmitters decision if it is S2 or S8. - if (phy == LL_PHY_LE_CODED_S8 || phy == LL_PHY_LE_CODED_S2) { + if (phy == LL_TEST_PHY_LE_CODED_S8 || phy == LL_TEST_PHY_LE_CODED_S2) { phy = LL_PHY_LE_CODED; } res = LlEnhancedRxTest(testConfig.channel, phy, 0, 0); diff --git a/Examples/MAX32665/Bluetooth/RF_Test/main.c b/Examples/MAX32665/Bluetooth/RF_Test/main.c index 87cd83fe30..eb3f0453d5 100644 --- a/Examples/MAX32665/Bluetooth/RF_Test/main.c +++ b/Examples/MAX32665/Bluetooth/RF_Test/main.c @@ -710,7 +710,7 @@ void txTestTask(void *pvParameters) res = LlEnhancedTxTest(testConfig.channel, packetLen, packetType, phy, 0); } else { // Transmitters decision if it is S2 or S8. - if (phy == LL_PHY_LE_CODED_S8 || phy == LL_PHY_LE_CODED_S2) { + if (phy == LL_TEST_PHY_LE_CODED_S8 || phy == LL_TEST_PHY_LE_CODED_S2) { phy = LL_PHY_LE_CODED; } res = LlEnhancedRxTest(testConfig.channel, phy, 0, 0); diff --git a/Examples/MAX32690/Bluetooth/RF_Test/main.c b/Examples/MAX32690/Bluetooth/RF_Test/main.c index 05335263ec..c709d93a23 100644 --- a/Examples/MAX32690/Bluetooth/RF_Test/main.c +++ b/Examples/MAX32690/Bluetooth/RF_Test/main.c @@ -711,7 +711,7 @@ void txTestTask(void *pvParameters) res = LlEnhancedTxTest(testConfig.channel, packetLen, packetType, phy, 0); } else { // Transmitters decision if it is S2 or S8. - if (phy == LL_PHY_LE_CODED_S8 || phy == LL_PHY_LE_CODED_S2) { + if (phy == LL_TEST_PHY_LE_CODED_S8 || phy == LL_TEST_PHY_LE_CODED_S2) { phy = LL_PHY_LE_CODED; } res = LlEnhancedRxTest(testConfig.channel, phy, 0, 0);