Operácie

AVR Example1.c: Rozdiel medzi revíziami

Zo stránky SensorWiki

Balogh (diskusia | príspevky)
Bez shrnutí editace
Balogh (diskusia | príspevky)
Bez shrnutí editace
Riadok 12: Riadok 12:
/*                                                                            */
/*                                                                            */
/* ************************************************************************** */
/* ************************************************************************** */
#include <avr/io.h>        // spolu s -mmcu=atmega16 nahra spravny .h subor
#include <avr/io.h>        // spolu s -mmcu=atmega328 nahra spravny .h subor
                             // ktory potrebujeme kvoli PORTx, PINx a DDRx
                             // ktory potrebujeme kvoli PORTx, PINx a DDRx


Riadok 18: Riadok 18:
{
{
                        
                        
     DDRD = 0x??;          // bin: 1010 0010 1 = out, 0 = in
     DDRB = 0x??;          //  1 = out, 0 = in
     PORTD = 0x??;          // bin: 1x11 110x 1 = LED zhasni, 1 = pull-up ON
     PORTB = 0x??;          //  1 = LED zhasni, 1 = pull-up ON


     do{
     do{
    
    
       if (PIND & 0x??)      // bin:  PIND & 0000 0100 = sw1 OFF?
       if (PINB & 0x??)      // bin:  PINB & 0000 0100 = sw1 OFF?
         PORTD |= 0x??;    // bin  PORTD + 0010 0000 = nastav PD5, LED OFF
         PORTB |= 0x??;    // bin: PORTB + 0010 0000 = nastav PD5, LED OFF
       else                  // t.j. ak sw1 ON:
       else                  // t.j. ak sw1 ON:
         PORTD &= 0x??;    // bin: PORTD & 1101 1111 = vynuluj PD5, LED ON
         PORTB &= 0x??;    // bin: PORTB & 1101 1111 = vynuluj PD5, LED ON


     } while(1);            // toto rob stale dokola
     } while(1);            // toto rob stale dokola
Riadok 35: Riadok 35:




[[CADRS_Cvi%C4%8Denie_8#Postup|Späť na cvičenie...]]
[[MMP_Cvi%C4%8Denie_2#Postup|Späť na cvičenie...]]


[[Category:AVR]][[Category:CAD_RS]]
[[Category:AVR]][[Category:MMP]]

Verzia z 09:30, 29. september 2010

/* ************************************************************************** */
/*                                                                            */
/*  Monoliticke mikropocitace - Priklad 1.1                                   */
/*                                                                            */
/*  Program zasvieti/zhasne LED na PD5 podla stavu prepinaca na PD2           */
/*                                                                            */
/*  Autor: Richard Balogh <balogh@elf.stuba.sk>                               */
/*  Historia:                                                                 */
/*            19.2.2006 prva pokusna verzia                                   */
/*  Prenositelnost:                                                           */
/*                                                                            */
/* ************************************************************************** */
#include <avr/io.h>         // spolu s -mmcu=atmega328 nahra spravny .h subor
                            // ktory potrebujeme kvoli PORTx, PINx a DDRx

int main (void)
{
                      
     DDRB = 0x??;           //  1 = out, 0 = in
    PORTB = 0x??;           //  1 = LED zhasni, 1 = pull-up ON

    do{
   
      if (PINB & 0x??)      // bin:  PINB & 0000 0100 = sw1 OFF?
         PORTB |= 0x??;     // bin:  PORTB + 0010 0000 = nastav PD5, LED OFF
      else                  // t.j. ak sw1 ON:
         PORTB &= 0x??;     // bin: PORTB & 1101 1111 = vynuluj PD5, LED ON

    } while(1);             // toto rob stale dokola

    return (0);             // formalita, nikdy sem neprideme
}


Späť na cvičenie...