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.

MSP430FR2433: Source code, good old days style.

Part Number: MSP430FR2433
Other Parts Discussed in Thread: MSP430WARE

Hello!

I haven't used MSP chips for a while. Today I wanted to do something with a FR2433, just for test.

I have downloaded MSPWare, but it looks like it has become quite complicated. I think source code

can be kept simple, and the good old days code. Example of what I was using many years ago:

P2DIR |= BIT4; // P2.4 output
P2SEL |= BIT4; // P2.4 options select
TA2CCR0 = 1000-1; // PWM Period
TA2CCTL1 = OUTMOD_7; // CCR1 toggle/set
TA2CCR1 = 250; // CCR1 PWM duty cycle
TA2CTL = TASSEL_2 + MC_1 + TACLR; // SMCLK, up mode, clear TAR

And it does what a sample code should do: keep simple and show all what's need and ONLY what's needed.

Is there some code written in the same style for FR devices?

Thanks

**Attention** This is a public forum