سلام وقتتون بخیر
من یه کد نوشتم که یک عدد از کیپد گرفته و با استفاده از اون تایمر شروع به کار میکنه و بازر شروع به کار میکنه و با استفاده از یک وقفه خارجی میشه اونو غیر فعال کرد اما وقته میخوام دوباره اونو راه اندازی کنم کیپد به هم میریزه و قفل میشه نمیدونم چرا اینم کد من هستش
ممنون میشم کمکم کنید
include <mega16.h>
include <delay.h>
// Alphanumeric LCD functions
include <alcd.h>
include <stdio.h>
// Declare your global variables here
int Start=0;
//..keypad
char Buffer[],Number;
int Counter;
char radif=0 ,soton=4,jaygah=0;
char shift[4]= {0xFE,0xFD,0xFB, 0xF7};
char leyoutkeypad[16]={'7','8','9','/',
'4','5','6','*',
'1','2','3','-',
'C','0','=','+'};
//..
//..Timer
int Msec,Sec,Min,TurnON=5;
int Alarm=0;
//..
// External Interrupt 0 service routine
interrupt [EXT_INT0] void ext_int0_isr(void)
{
PORTD.7=0;
TurnON=5;
Alarm=0;
lcd_clear();
Counter=0;
Start=0;
}
// Timer1 output compare A interrupt service routine
interrupt [TIM1_COMPA] void timer1_compa_isr(void)
{
if(TurnON==0)
{
sprintf(Buffer,"Time=%02d:%02d",Min,Sec);
lcd_gotoxy(0,1);
lcd_puts(Buffer);
Msec++;
if(Msec==100)
{
Sec++;
Msec=0;
}
if(Sec==60)
{
Min++;
Sec=0;
}
if(Min==Counter)
{
Alarm=1;
lcd_clear();
if(Alarm==1)
{
PORTD.7=1;
lcd_gotoxy(3,0);
lcd_puts("Times UP!!");
delay_ms(500);
lcd_clear();
delay_ms(500);
}
}
}
}
void main(void)
{
DDRA=0x0F;
PORTA=0xF0;
DDRD.0=0;
PORTD.0=1;
DDRD.2=0;//(Stop Buttom)
PORTD.2=1;
DDRD.7=1;
// Timer/Counter 1 initialization
// Clock source: System Clock
// Clock value: 1000.000 kHz
// Mode: CTC top=OCR1A
// OC1A output: Disconnected
// OC1B output: Disconnected
// Noise Canceler: Off
// Input Capture on Falling Edge
// Timer Period: 10 ms
// Timer1 Overflow Interrupt: Off
// Input Capture Interrupt: Off
// Compare A Match Interrupt: On
// Compare B Match Interrupt: Off
TCCR1A=(0<<COM1A1) | (0<<COM1A0) | (0<<COM1B1) | (0<<COM1B0) | (0<<WGM11) | (0<<WGM10);
TCCR1B=(0<<ICNC1) | (0<<ICES1) | (0<<WGM13) | (1<<WGM12) | (0<<CS12) | (1<<CS11) | (0<<CS10);
TCNT1H=0x00;
TCNT1L=0x00;
ICR1H=0x00;
ICR1L=0x00;
OCR1AH=0x27;
OCR1AL=0x0F;
OCR1BH=0x00;
OCR1BL=0x00;
// Timer(s)/Counter(s) Interrupt(s) initialization
TIMSK=(0<<OCIE2) | (0<<TOIE2) | (0<<TICIE1) | (1<<OCIE1A) | (0<<OCIE1B) | (0<<TOIE1) | (0<<OCIE0) | (0<<TOIE0);
// External Interrupt(s) initialization
// INT0: On
// INT0 Mode: Falling Edge
// INT1: Off
// INT2: Off
GICR|=(0<<INT1) | (1<<INT0) | (0<<INT2);
MCUCR=(0<<ISC11) | (0<<ISC10) | (1<<ISC01) | (0<<ISC00);
MCUCSR=(0<<ISC2);
GIFR=(0<<INTF1) | (1<<INTF0) | (0<<INTF2);
lcd_init(16);
// Global enable interrupts
#asm("sei")
while (1)
{
if(PIND.0==0)
{
lcd_gotoxy(0,0);
lcd_puts("Counter:");
Start=1;
}
if(Start==1)
{
for(radif=0 ; radif<=3 ; radif++)
{
PORTA = shift[radif];
if(PINA.4==0){soton=0;}
if(PINA.5==0){soton=1;}
if(PINA.6==0){soton=2;}
if(PINA.7==0){soton=3;}
if(soton != 4)
{
jaygah=radif * 4 +soton;
Number=leyoutkeypad[jaygah];
soton= 4;
while(PINA.4==0){}
while(PINA.5==0){}
while(PINA.6==0){}
while(PINA.7==0){}
if(Number=='1')
{
Counter=1;
lcd_putchar(Number);
}
if(Number=='2')
{
Counter=2;
lcd_putchar(Number);
}
if(Number=='3')
{
Counter=3;
lcd_putchar(Number);
}
if(Number=='4')
{
Counter=4;
lcd_putchar(Number);
}
if(Number=='5')
{
Counter=5;
lcd_putchar(Number);
}
if(Number=='6')
{
Counter=6;
lcd_putchar(Number);
}
if(Number=='7')
{
Counter=7;
lcd_putchar(Number);
}
if(Number=='8')
{
Counter=8;
lcd_putchar(Number);
}
if(Number=='9')
{
Counter=9;
lcd_putchar(Number);
}
if(Number=='C')
{
TurnON=0;
Start=0;
}
}
delay_ms(50);
}
}
}
}
[/CODE][/CODE]
include <delay.h>
// Alphanumeric LCD functions
include <alcd.h>
include <stdio.h>
// Declare your global variables here
int Start=0;
//..keypad
char Buffer[],Number;
int Counter;
char radif=0 ,soton=4,jaygah=0;
char shift[4]= {0xFE,0xFD,0xFB, 0xF7};
char leyoutkeypad[16]={'7','8','9','/',
'4','5','6','*',
'1','2','3','-',
'C','0','=','+'};
//..
//..Timer
int Msec,Sec,Min,TurnON=5;
int Alarm=0;
//..
// External Interrupt 0 service routine
interrupt [EXT_INT0] void ext_int0_isr(void)
{
PORTD.7=0;
TurnON=5;
Alarm=0;
lcd_clear();
Counter=0;
Start=0;
}
// Timer1 output compare A interrupt service routine
interrupt [TIM1_COMPA] void timer1_compa_isr(void)
{
if(TurnON==0)
{
sprintf(Buffer,"Time=%02d:%02d",Min,Sec);
lcd_gotoxy(0,1);
lcd_puts(Buffer);
Msec++;
if(Msec==100)
{
Sec++;
Msec=0;
}
if(Sec==60)
{
Min++;
Sec=0;
}
if(Min==Counter)
{
Alarm=1;
lcd_clear();
if(Alarm==1)
{
PORTD.7=1;
lcd_gotoxy(3,0);
lcd_puts("Times UP!!");
delay_ms(500);
lcd_clear();
delay_ms(500);
}
}
}
}
void main(void)
{
DDRA=0x0F;
PORTA=0xF0;
DDRD.0=0;
PORTD.0=1;
DDRD.2=0;//(Stop Buttom)
PORTD.2=1;
DDRD.7=1;
// Timer/Counter 1 initialization
// Clock source: System Clock
// Clock value: 1000.000 kHz
// Mode: CTC top=OCR1A
// OC1A output: Disconnected
// OC1B output: Disconnected
// Noise Canceler: Off
// Input Capture on Falling Edge
// Timer Period: 10 ms
// Timer1 Overflow Interrupt: Off
// Input Capture Interrupt: Off
// Compare A Match Interrupt: On
// Compare B Match Interrupt: Off
TCCR1A=(0<<COM1A1) | (0<<COM1A0) | (0<<COM1B1) | (0<<COM1B0) | (0<<WGM11) | (0<<WGM10);
TCCR1B=(0<<ICNC1) | (0<<ICES1) | (0<<WGM13) | (1<<WGM12) | (0<<CS12) | (1<<CS11) | (0<<CS10);
TCNT1H=0x00;
TCNT1L=0x00;
ICR1H=0x00;
ICR1L=0x00;
OCR1AH=0x27;
OCR1AL=0x0F;
OCR1BH=0x00;
OCR1BL=0x00;
// Timer(s)/Counter(s) Interrupt(s) initialization
TIMSK=(0<<OCIE2) | (0<<TOIE2) | (0<<TICIE1) | (1<<OCIE1A) | (0<<OCIE1B) | (0<<TOIE1) | (0<<OCIE0) | (0<<TOIE0);
// External Interrupt(s) initialization
// INT0: On
// INT0 Mode: Falling Edge
// INT1: Off
// INT2: Off
GICR|=(0<<INT1) | (1<<INT0) | (0<<INT2);
MCUCR=(0<<ISC11) | (0<<ISC10) | (1<<ISC01) | (0<<ISC00);
MCUCSR=(0<<ISC2);
GIFR=(0<<INTF1) | (1<<INTF0) | (0<<INTF2);
lcd_init(16);
// Global enable interrupts
#asm("sei")
while (1)
{
if(PIND.0==0)
{
lcd_gotoxy(0,0);
lcd_puts("Counter:");
Start=1;
}
if(Start==1)
{
for(radif=0 ; radif<=3 ; radif++)
{
PORTA = shift[radif];
if(PINA.4==0){soton=0;}
if(PINA.5==0){soton=1;}
if(PINA.6==0){soton=2;}
if(PINA.7==0){soton=3;}
if(soton != 4)
{
jaygah=radif * 4 +soton;
Number=leyoutkeypad[jaygah];
soton= 4;
while(PINA.4==0){}
while(PINA.5==0){}
while(PINA.6==0){}
while(PINA.7==0){}
if(Number=='1')
{
Counter=1;
lcd_putchar(Number);
}
if(Number=='2')
{
Counter=2;
lcd_putchar(Number);
}
if(Number=='3')
{
Counter=3;
lcd_putchar(Number);
}
if(Number=='4')
{
Counter=4;
lcd_putchar(Number);
}
if(Number=='5')
{
Counter=5;
lcd_putchar(Number);
}
if(Number=='6')
{
Counter=6;
lcd_putchar(Number);
}
if(Number=='7')
{
Counter=7;
lcd_putchar(Number);
}
if(Number=='8')
{
Counter=8;
lcd_putchar(Number);
}
if(Number=='9')
{
Counter=9;
lcd_putchar(Number);
}
if(Number=='C')
{
TurnON=0;
Start=0;
}
}
delay_ms(50);
}
}
}
}
[/CODE][/CODE]
دیدگاه