/**********************************************************
** FunctionName:Main
** FunctionDiscription:Main Function
***********************************************************/
void main(void) {
/* put your own code here */
PLL_Init();
PWM_Init();
PIT_Init();
EnableInterrupts;
DDRB=0XFF;
for (;;) {
_FEED_COP(); /* feeds the dog */
/* loop forever */
/* please make sure that you never leave main */
}
}