This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC1352R: rfPacketRx Break at address "0x10000592"

Part Number: CC1352R

Hello!

I use CC1352R1 Launchpad and SDK 2.20. Most examples work correctly. But if you use the example rfPacketRx, when using the function:

RF_runCmd (rfHandle, (RF_Op *) & RF_cmdPropRx,
                                                RF_PriorityNormal, & callback,
                                                RF_EventRxEntryDone);

error occurs:
Break at address "0x10000592" with no debug information available, or outside of program code. Example rfPacketTx works correctly.

Tell me please, what could be the problem?

  • Hi Alex,

    I would assume 0x10000592 being the "wfi" instruction if you check the disassembly. This means that the device is pending, waiting for an interrupt. In the case of rfPacketRx, this would be expected.

    The example is designed to stay in RX forever, meaning the RF_runCmd() call should never return. If it returns, it is due to external factors such as the command being aborted.