AVR Example2.c: Rozdiel medzi revíziami
Zo stránky SensorWiki
Bez shrnutí editace |
Bez shrnutí editace |
||
Riadok 13: | Riadok 13: | ||
/* */ | /* */ | ||
/* ************************************************************************** */ | /* ************************************************************************** */ | ||
#include <avr/io.h> // spolu s -mmcu= | #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 | ||
#define SW1 ( | #define SW1 (PINB & 0x??) | ||
#define LEDon | #define LEDon PORTB &= ~(_BV(PB5)) // cbi(PORTB,PB5); ale cbi je nepodporovane | ||
#define LEDoff ( | #define LEDoff (PORTB |= _BV(PB5)) // sbi(PORTB,PB5); ale sbi je nepodporovane | ||
int main (void) | int main (void) | ||
{ | { | ||
DDRB = 0x??; // bin: 1010 0010 1 = out, 0 = in | |||
PORTB = 0x??; // bin: 1x11 110x 1 = LED zhasni, 1 = pull-up ON | |||
do{ | do{ | ||
if ( SW1 ) // bin: | if ( SW1 ) // bin: PINB & 0000 0100 = sw1 OFF? | ||
LEDoff; // bin | LEDoff; // bin PORTB + 0010 0000 = nastav PB5, LED OFF | ||
else // t.j. ak sw1 ON: | else // t.j. ak sw1 ON: | ||
LEDon; // bin: | LEDon; // bin: PORTB & 1101 1111 = vynuluj PB5, LED ON | ||
} while(1); // toto rob stale dokola | } while(1); // toto rob stale dokola |
Verzia z 09:31, 29. september 2010
/* ************************************************************************** */
/* */
/* Monoliticke mikropocitace - Priklad 1.2 */
/* */
/* Program zasvieti/zhasne LED na PD5 podla stavu prepinaca na PD2 */
/* Ako Priklad 1.1, len doplnene o makra ktore (mozu) program sprehladnit */
/* */
/* 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
#define SW1 (PINB & 0x??)
#define LEDon PORTB &= ~(_BV(PB5)) // cbi(PORTB,PB5); ale cbi je nepodporovane
#define LEDoff (PORTB |= _BV(PB5)) // sbi(PORTB,PB5); ale sbi je nepodporovane
int main (void)
{
DDRB = 0x??; // bin: 1010 0010 1 = out, 0 = in
PORTB = 0x??; // bin: 1x11 110x 1 = LED zhasni, 1 = pull-up ON
do{
if ( SW1 ) // bin: PINB & 0000 0100 = sw1 OFF?
LEDoff; // bin PORTB + 0010 0000 = nastav PB5, LED OFF
else // t.j. ak sw1 ON:
LEDon; // bin: PORTB & 1101 1111 = vynuluj PB5, LED ON
} while(1); // toto rob stale dokola
return (0); // formalita, nikdy sem neprideme
}