2019-07-15 17:33发布
chenwei6991627 发表于 2016-7-14 10:35 系统时钟初始化了吗?在实际应用中你的程序问题很大
Giliable 发表于 2016-7-14 20:30 多谢分享!多谢分享!多谢分享!
kongxiaohan 发表于 2016-7-15 08:49 你看明白问题出在哪了吗??还是只是回复赚积分的啊??
最多设置5个标签!
我做的这个程序是好使的,11.0592mhz。
#include <iolpc2134.h>
void UART0_Int(void)
{
PINSEL0=0x00000005;
PINSEL1=0x00000000;
U0LCR=0x83;
U0DLL=0x12;
U0DLM=0x00;
U0LCR=0x03;
}
void UART0_SendByte(unsigned char data)
{
U0THR=data;
while((U0LSR&0x40)==0);
{
unsigned char i;
for(i=0; i<5; i++);
}
}
void UART0_SendStrings(unsigned char *Data)
{
while(*Data != ' ')
UART0_SendByte(*Data++);
}
void main(void)
{
PLLCON = 0;
PLLCFG = 0x30;
PLLFEED = 0xAA;
PLLFEED = 0x55;
while((PLLSTAT & 0x10) == 0);
UART0_Int();
UART0_SendStrings("hello");
while(1);
}
程序是在iar上调试的。 最佳答案
这个对不对?求大神详解,完全的菜鸟。谢谢
你看明白问题出在哪了吗??还是只是回复赚积分的啊??
仿真软件的问题。
一周热门 更多>