X-Git-Url: http://cloudbase.mooo.com/gitweb/irmp.git/blobdiff_plain/b743217bc6b049961dae327ede0744e07a56ec99..66f8fd9354d919880cc818da81ce9ad13c4002b9:/irsndmain.c diff --git a/irsndmain.c b/irsndmain.c index 3aab539..ae918ec 100644 --- a/irsndmain.c +++ b/irsndmain.c @@ -1,11 +1,10 @@ /*--------------------------------------------------------------------------------------------------------------------------------------------------- - * irsndmain.c - demo main module to test irmp decoder + * irsndmain.c - demo main module to test IRSND encoder on AVRs * - * Copyright (c) 2010-2011 Frank Meyer - frank(at)fli4l.de + * Copyright (c) 2010-2013 Frank Meyer - frank(at)fli4l.de * - * ATMEGA88 @ 8 MHz - * - * Fuses: lfuse: 0xE2 hfuse: 0xDC efuse: 0xF9 + * ATMEGA88 @ 8 MHz internal RC Osc with BODLEVEL 4.3V: lfuse: 0xE2 hfuse: 0xDC efuse: 0xF9 + * ATMEGA88 @ 8 MHz external Crystal Osc with BODLEVEL 4.3V: lfuse: 0xFF hfuse: 0xDC efuse: 0xF9 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -13,18 +12,10 @@ * (at your option) any later version. *--------------------------------------------------------------------------------------------------------------------------------------------------- */ - -#include -#include -#include -#include -#include -#include "irmp.h" -#include "irsndconfig.h" #include "irsnd.h" #ifndef F_CPU -#error F_CPU unkown +# error F_CPU unkown #endif void @@ -45,11 +36,17 @@ timer1_init (void) #endif } +#ifdef TIM1_COMPA_vect // ATtiny84 +#define COMPA_VECT TIM1_COMPA_vect +#else +#define COMPA_VECT TIMER1_COMPA_vect // ATmega +#endif + /*--------------------------------------------------------------------------------------------------------------------------------------------------- * timer 1 compare handler, called every 1/10000 sec *--------------------------------------------------------------------------------------------------------------------------------------------------- */ -ISR(TIMER1_COMPA_vect) +ISR(COMPA_VECT) // Timer1 output compare A interrupt service routine, called every 1/15000 sec { (void) irsnd_ISR(); // call irsnd ISR // call other timer interrupt routines here... @@ -64,18 +61,18 @@ main (void) { IRMP_DATA irmp_data; - irsnd_init(); // initialize irsnd - timer1_init(); // initialize timer - sei (); // enable interrupts + irsnd_init(); // initialize irsnd + timer1_init(); // initialize timer + sei (); // enable interrupts for (;;) { - irmp_data.protocol = IRMP_NEC_PROTOCOL; - irmp_data.address = 0x00FF; - irmp_data.command = 0x0001; - irmp_data.flags = 0; + irmp_data.protocol = IRMP_NEC_PROTOCOL; // use NEC protocol + irmp_data.address = 0x00FF; // set address to 0x00FF + irmp_data.command = 0x0001; // set command to 0x0001 + irmp_data.flags = 0; // don't repeat frame - irsnd_send_data (&irmp_data, TRUE); + irsnd_send_data (&irmp_data, TRUE); // send frame, wait for completion _delay_ms (1000); } }