谁能告诉我用AVR单片机(ATmega16)怎么输出不同的波形,程序怎么写??先谢谢了,急用

 我来答
DY031DY
2011-06-28 · TA获得超过404个赞
知道小有建树答主
回答量:364
采纳率:0%
帮助的人:148万
展开全部
//PWM输出程序
//在端口PD4,PD5(led5,led6)输出PWM脉冲,可用示波器测量,或者外加一LED灯,可以看到LED由于脉宽的变化引起的灯的亮度不同
#include <iom16v.h>
#include <macros.h>

void port_init(void)
{
PORTA = 0x00;
DDRA = 0x00;
PORTB = 0x00;
DDRB = 0x00;
PORTC = 0x00; //m103 output only
DDRC = 0x00;
PORTD = 0xff;
DDRD = 0xff;
}

//TIMER1 initialize - prescale:64
// WGM: 10) PWM phz correct, TOP= ICRn
// desired value: 1000Hz
// actual value: 1000.000Hz (0.0%)
void timer1_init(void)
{
TCCR1B = 0x00; //stop
TCNT1H = 0xFF; //setup 255
TCNT1L = 0x83; //131
OCR1AH = 0x00;
OCR1AL = 0x5A; //占空比 100
OCR1BH = 0x00;
OCR1BL = 0x1E; //占空比 10
ICR1H = 0x00;
ICR1L = 0x7d;
TCCR1A = 0xA2;
TCCR1B = 0x13; //start Timer
}

//call this routine to initialize all peripherals
void init_devices(void)
{
//stop errant interrupts until set up
//CLI(); //disable all interrupts
port_init();
timer1_init();

MCUCR = 0x00;
GICR = 0x00;
TIMSK = 0x00; //timer interrupt sources
//SEI(); //re-enable interrupts
//all peripherals are now initialized
}
main()
{
init_devices();
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式