MCBSTR730 User's Guide

Configuring the Clock Control Unit

The STR73x devices contain a Reset & Clock Control Unit configured as follows:

#include <73x_lib.H>
    :
    :
void main (void)  {
    :
    :
  /* Power, Reset and Clock Control Unit (PRCCU Setup */
  /* Setup clock to frequency of oscillator           */
  PRCCU_DeInit();
  PRCCU_StructInit(&PRCCU_InitStruct);
  PRCCU_InitStruct.PRCCU_DIV2           = DISABLE;
  PRCCU_Init(&PRCCU_InitStruct);
    :
    :
}