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.

How to get/setup basic cpp project for FreeRTOS with SimpleLink support

Part Number: LAUNCHCC3235MOD

And with such, would I need to reestablish STATION mode previously configured?

  • The SDK examples are working through POSIX API.

    The SDK supports POSIX implementations for both TIRTOS and FreeRTOS.

    So you can check one of the FreerRTOS examples in the SDK. You can replace the POSIX calls in the examples with direct calls to FreeRTOS (or change your code to use FreeRTOS so you can safely use any library of the SDK).

    You can all try to use the SDK (accessing FreeRTOS though POSIX) code and add your (directly accessing freeRTOS) code. In such case make sure that in case you are using sync object between POSIX part to FreeRTOS parts - they need to use the same FreeRTOS primitives (such as Mutexes and Message Queues).