Hello Everyone,
This question is very basic.
I would like to know the syntax for accessing individual bits .
For example Consider this register
I2C0_C1
I would like to access the MST bit in this register.I'm not sure how to code it in code warrior.
For example in microchip's MPLAB IDE it is done like this:
I2C0_C1bits.MST = 1; //start command
Is there any equivalent syntax in freescale cw?
I know i can OR a value to the I2C0_C1 register like this
| I2C0_C1 |= I2C_C1_MST_MASK; | |
,but that is another alternative.
Thanks in advance,
AK