2017-04-03 13 views
0

AtmelStudio 7을 사용하여 ATMEL ATmega16 용 어셈블리 코드를 작성하고 있습니다. 버튼을 누르고있는 동안 LED를 켜고 싶습니다. 다시. 정확히 룸 조명과 같습니다. 어떤 이유로이 코드는 조명을 켜고 버튼을 눌러 절전 모드로 전환하지 않습니다 (버튼은 프로 테우스에서 시뮬레이션 한 것입니다). 누구든지이 간단한 코드로 나를 도울 수 있습니까?버튼을 사용하여 어셈블리의 AVR LED 켜기/끄기 프로그램

start: 
    /* set the PIND2 data direction to 0 for input */ 
    /* This one simulates the key */ 
    ldi R16, (0 << PD2) ; Make PD2 as input 
    out DDRB,R16 ; Configure the PIND2 as input 

    /* set the PORTB7 data direction to 1 for output */ 
    /* this one causes the LED to be ON/OFF */ 
    ldi R17, (1 << PB7) ; Make PB7 as output 
    out DDRB,R17 ; Configure the PORTB7 as output 

OFF_MODE: 
    /* Put the PORTB7 to 0 */ 
    ldi R18,(0 << PB7) 
    out PORTB,R18 
    call delay 
    /* Skip if PIN 2 in PORT D is set */ 
    sbis PIND,2 
    jmp OFF_MODE ; Branch to the OFF_MODE if the key isn't pressed yet 

ON_MODE: 
    /* Put the PORTB to 1 */ 
    ldi R18,(1 << PB7) 
    out PORTB,R18 
    call delay 
    /* Skip if PIN 2 in PORT D is set */ 
    sbis PIND,2 
    jmp ON_MODE ; Branch to the ON_MODE if the key isn't unpressed yet 
rjmp start 
delay: 
    ldi r16, 0xFF 
delay_loop_1: 
    dec r16 
    cpi r16, 0x00 
    jmp delay_loop_1 
ret 

답변

1

delay 함수에 무한 루프가 있습니다. 마음을 사용하여 :

delay: 
    ldi r16, 0xFF 
delay_loop_1: 
    dec r16 
    brne delay_loop_1 
    ret 
+0

감사합니다. 해결! – aligholamee