Skip to content

Commit

Permalink
fixed RF Test example
Browse files Browse the repository at this point in the history
  • Loading branch information
EricB-ADI committed Nov 4, 2024
1 parent be46ff6 commit ade7528
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Examples/MAX32655/Bluetooth/RF_Test/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion Examples/MAX32665/Bluetooth/RF_Test/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion Examples/MAX32690/Bluetooth/RF_Test/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit ade7528

Please sign in to comment.