Example #1
0
/******************************************************************************
* Outline       : HardwareSetup
* Description   : Configures the YRDK initial hardware settings.  
*                 The YRRDK board was designed by partner Future 
*                 Designs Inc. (www.teamfdi.com).
*                 Debugging is accomplished through the Segger 
*                 J-Link Lite OB solution (www.segger.com) 
* Argument      : none
* Return value  : none
******************************************************************************/
void HardwareSetup(void)
{
    ConfigureOperatingFrequency();
    ConfigureOutputPorts();
    ConfigureInterrupts();
    EnablePeripheralModules();
}
void HardwareSetup(void)
{
   ConfigureOperatingFrequency();
   ConfigureOutputPorts();
   Switch_Init();
   Rtc_Init();
   Wdt_Init();
}