Other Parts Discussed in Thread: CC2652P, CC1352P, CC2652R
Hello,
I made custom board using CC2652P.
I would like to prepare for test, so I'm using Btool.
In CC2652P, does the Btool and host test project supports HCIExt_EnhancedModemHopTestCmd?
Can I change the output power when using HCIExt_EnhancedModemHopTestCmd?
I tested HCIExt_EnhancedModemTestCmd, then, Radio waves are output with the specified power by setting HCIExt_SetTxPowerCmd.
(When setting 5dBm, the radio are output at the 5dBm)
But when I tested HCIExt_EnhancedModemHopTestCmd, output is still only -16dBm no matter what value set by HCIExt_SetTxPowerCmd.
Then, I modified host_test_app.c as below.
static void HostTestApp_taskFxn(UArg a0, UArg a1)
{
// Initialize application
HostTestApp_init();
HCI_EXT_SetTxPowerCmd(TX_POWER_20_DBM); //edited
After that, when I tested HCIExt_EnhancedModemTestCmd, the output is properly +20dBm.
But when I tested HCIExt_EnhancedModemHopTestCmd, the output is still -16dBm.
I tested following SDK both.
simplelink_cc13x2_26x2_sdk_3_40_00_02\examples\rtos\CC1352P_2_LAUNCHXL\ble5stack\host_test
simplelink_cc13x2_26x2_sdk_4_10_00_78\examples\rtos\CC1352P_2_LAUNCHXL\ble5stack\host_test
I have only CC2652R Launchpad, It works well also using HCIExt_EnhancedModemHopTestCmd.
Regards,
U-SK