//ICC-AVR application builder : 2007-5-6 21:30:57
// Crystal: 8.0000Mhz
//TIMER1 initialize – prescale:64
// WGM: 10) PWM phz correct, TOP= ICRn
// desired value: 1Hz
// actual value: 1.000Hz (0.0%)
#include
#include
#define PWM1A
#define PWM1B
unsigned char OCAH;
unsigned char OCAL;
unsigned char OCBH;
unsigned char OCBL;
void timer1_init(void)
{
TCCR1B = 0x00;
TCNT1H = 0x00;
TCNT1L = 0x01;
OCR1AH = OCAH;
OCR1AL = OCAL;
OCR1BH = OCBH;
OCR1BL = OCBL;
ICR1H = 0xff;
ICR1L = 0xFF;
TCCR1A = 0xA3;
TCCR1B = 0x0B;
}
void init_devices(unsigned char valueah,unsigned char valueal,unsigned char valuebh,unsigned char valuebl)
{
OCAH=valueah;
OCAL=valueal;
OCBH=valuebh;
OCBL=valuebl;
CLI();
timer1_init();
MCUCR = 0x00;
GICR = 0x00;
TIMSK = 0x04;
SEI();
}
void main(void)
{
PORTD&=(0<
while(1);
}
我爱avr,我爱虚拟仪器。