Skip to content

Commit

Permalink
fixed test definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
EricB-ADI committed Nov 8, 2024
1 parent ca32bc2 commit 539033f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Examples/MAX32655/Bluetooth/RF_Test/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion Examples/MAX32665/Bluetooth/RF_Test/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion Examples/MAX32690/Bluetooth/RF_Test/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 539033f

Please sign in to comment.