/*Turn on Led1~Led3*/
LedOn(PORT_GROUP, LED1_PIN | LED2_PIN | LED3_PIN);
while (1)
{
/*LED1_PORT, LED2_PORT and LED3_PORT are the same port group.
*Enable Led2 blink and not effect Led1 and Led2 by Exclusive-OR operation.*/
LedBlink(PORT_GROUP, LED2_PIN);
LedOff(PORT_GROUP, LED3_PIN);
/* Insert delay */
Delay(0x28FFFF);
LedOff(PORT_GROUP, LED1_PIN);
Delay(0x28FFFF);