El siguiente código destella algunos LEDs en orden: pin 1, pin 2, pin 3, pin 4.
Una vez completada esta secuencia, me gustaría invertir la dirección y mostrar el pin 4, pin 3, pin 2, pin 1.
Escribí el siguiente código, pero no funciona en orden inverso.
¿Qué podría estar mal?
#include <htc.h>
__CONFIG(1,OSCSDIS & HSPLL);
__CONFIG(2,BORDIS & PWRTDIS &WDTDIS);
__CONFIG(3,CCP2RC1);
__CONFIG(4,LVPDIS & STVREN);
__CONFIG(5,UNPROTECT);
__CONFIG(6,WRTEN);
__CONFIG(7,TRU);
#define _XTAL_FREQ 40000000
void delay_sec(unsigned char seconds) // This function provides delay in terms of seconds
{
unsigned char i,j;
for(i=0;i<seconds;i++)
for(j=0;j<100;j++)
__delay_ms(10);
}
void led_display(char a)
{
switch(a)
{
case 0: PORTB=0x01;PORTD=0x08; break;
case 1: PORTB=0x02;PORTD=0x04; break;
case 2: PORTB=0x04;PORTD=0x02; break;
case 3: PORTB=0x08;PORTD=0x01; break;
}
}
void main()
{
TRISB=0x00;
TRISD=0x00;
char a,b;
while(1)
{
led_display(a);
a++;
delay_sec(1);
if(a==4)
{
a--;
}
}
}