Tool/software: Code Composer Studio
Hi.. Can you provide some examples related to above part number.... I didn't find any examples in CCS IDE relate to that particular part...
Is it support TI-RTOS?
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.
Tool/software: Code Composer Studio
Hi.. Can you provide some examples related to above part number.... I didn't find any examples in CCS IDE relate to that particular part...
Is it support TI-RTOS?
Yes, the MSP430F6459 is supported by the TI-RTOS kernel. I'd recommend you get the latest version of TI-RTOS for MSP43x:

The MSP430F6459 device is not supported out of the box for the drivers (but it is for the kernel). There are instructions for building both driverlib (low level driver APIs) and the TI-RTOS drivers (OS-aware drivers that are built on driverlib) for MSP430 devices in the TI-RTOS User Guide.
If you don't need the drivers, you can just get the TI-RTOS kernel (SYS/BIOS): 
. It has out of the box examples for all supported devices.
Depends on what you are trying to do. If you turn debugging features off (e.g. logging, System_printfs, etc), the kernel uses around 8-10KB of flash. The MSP430F6459 devices has 512KB, so you should be fine. With debug features enabled, the code size is around 20KB.
The RAM usage is mainly dependent on whether you want a heap. The kernel itself does not require one except if you want to call create APIs. We have construct calls where you supply the memory instead of having the kernel allocate it. For example Task_construct instead of Task_create.
Todd