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.

MSP430G2333: code RTOS on msp430G2333

Part Number: MSP430G2333

Hi Team

I want to code MSP430G2333 in RTOS. Because I need to I2C communication & some other button interrupt together. Can you suggest a way to do RTOS coding for MSP430G2333.

regards

  • You could use an RTOS but you are going to find it to be a problem with only 256 bytes of RAM. Each task must have its own stack with at least enough space to save its state. Add in the requirements of the task code plus interrupt stack frames and you might be able to support 3 or 4 tasks. If you are lucky.

    You can do I2C and button interrupts without an RTOS. So perhaps you need to think about it some more.

  • Hello,

    As David mentioned, an RTOs on such a low memory device is not advisable and completely unnecessary for this type of task. We also currently don't have any type of RTOS support for this device. 

    Please check out our code examples for I2C and digital input interrupt examples. 

**Attention** This is a public forum