Other Parts Discussed in Thread: MSP432E401Y
Hello.
Does SIMPLELINK-SDK-BLUETOOTH-PLUGIN supports MSP432E401Y?
How should I implement BLE to MSP432E401Y regarding software?
Regards,
U-SK
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.
Hello.
Does SIMPLELINK-SDK-BLUETOOTH-PLUGIN supports MSP432E401Y?
How should I implement BLE to MSP432E401Y regarding software?
Regards,
U-SK
Hi Sai,
Thank you for your reply.
When do you need MSP432E401Y support in the plugin by?
-> I woud like you to support MSP432E401Y as soon as possible.
What do you plan to use the Bluetooth Plugin for - central or sensor?
-> It is for peripheral application.
Regards,
U-SK
Hello U-SK,
We are working on this support but unfortunately we don't have a release plan as yet so I cannot promise a date.
If you need this support now, you can try to do the porting by following these high level steps to add MSP432E4 support for an MSP432P4 based example in the BLE plugin. These instructions are provided for TI-RTOS and CCS, but can be applied for any combination of IDE and RTOS with appropriate modifications.
/* * 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
Hope this helps!
Thanks,
Sai