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.

CCS/CC1310: CCS/CC1310

Part Number: CC1310

Tool/software: Code Composer Studio

Try to Run "rfEasyLinkTx_CC1310DK_7xD" on own HW with CC1310F128 - (With XDS200 )

Build and Download is working.

But if I debug the Code the  PIN_init () is failing ...?

          When I step in the Driver file PinCC26xx.c i found following differents.

**********************

if (ChipInfo_GetChipFamily()==FAMILY_CC13x0 && ChipInfo_GetPackageType()==PACKAGE_7x7) {
        // CC13xx 7x7 QFN does not have IO #0
        bmReservedPins |= (1<<0);
    }

*********************

     don't set bmReservedPins = 1 even when the if was true ?  when I debug the CC1310DK this get one Why ?

*********************

   // Get number of pins available on device (from HW register)
    PIN_NumPins = PINCC26XX_getPinCount();

********************

    This function delivers on my board PIN_numPins = 10 and the CC1310DK  31;

Do any one have a hint what I need to change to make it happen ?

  • Do you actually use a 7x7 version of CC1310?

    These functions check the packet size of the CC1310 you are using and since the functions return a low pin count it could look like you use a 4x4 or 5x5. In that case you have to change the board files in your project.