Page 219 of TM4C123GH6PM datasheet says
Write the RCC register prior to writing the RCC2 register. If a subsequent write to the
RCC register is required, include another register access after writing the RCC register
and before writing the RCC2 register.
1. But system_TM4C.c file, as in code I have in another post(http://e2e.ti.com/support/microcontrollers/tiva_arm/f/908/t/406545)
Function SystemInit(), first write RCC2 & then RCC. is it worng there?
2. This line " include another register access", what access to another register. E.g if I have to write RCC register again what steps should I follow. is it:
RCC = x;
RCC2 = y;
RCC = z;
a = RCC;
RCC2 = b;