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/MSP432E401Y: CCS/MSP432E401Y

Part Number: MSP432E401Y


Tool/software: Code Composer Studio

Hello everybody,

I'm trying to use CC2640R2 as a peripheral in the MSP432E401Y. but right now it's just the MSP432P supported in the Bluetooth plugin.

When will be the MSP432E4 supported in the Bluetooth Plugin? Or has someone dealt with this topic?

Thank you.

Regards

Fares

  • Hello Fares,

    We currently don't have this support but plan to add this. I will check with the internal team to see if we have an internal version of the code to share or atleast instructions to enable you to add this support.

    Thanks,
    Sai
  • Hello Fares,

    I just checked with the team, we currently don't have any code to share. When do you need this by?

    The libraries that are built for MSP432P4 can be used with MSP432E4 as they both have the same core - Cortex M4F.

    As far as I can tell you can pick an example (like project_zero) built for MSP432P4 and make the following changes:

    • Update project spec to point to the SimpleLink MSP432E4 SDK
    • Add the following lines of code to the "main_tirtos.c" file. 
    /*
     * The following (weak) function definition is needed in applications
     * that do *not* use the NDK TCP/IP stack:
     */
    #if defined(__IAR_SYSTEMS_ICC__)
    __weak void NDK_hookInit(int32_t id) {}
    #elif defined(__GNUC__) && !defined(__ti__)
    void __attribute__((weak)) NDK_hookInit(int32_t id) {}
    #else
    #pragma WEAK (NDK_hookInit)
    void NDK_hookInit(int32_t id) {}
    #endif

    Let us know if this does not work!

    Thanks,

    Sai

  • Hello Sai,

    Thank you very much.

    I need that for my master thesis. So the earlier I get the better.
    I'll give it a try today and let you know if it worked.

    Best regards,
    Fares
  • Hello Sai,

    Thank you very much. David contacted me.

    Best regards,
    Fares

**Attention** This is a public forum