新聞中心

EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > TQ2440之最簡(jiǎn)串口傳輸數(shù)據(jù)

TQ2440之最簡(jiǎn)串口傳輸數(shù)據(jù)

作者: 時(shí)間:2016-11-21 來(lái)源:網(wǎng)絡(luò) 收藏
來(lái)個(gè)最簡(jiǎn)單的串口程序,添加2440lib.c,程序如下:
#include "2440addr.h"
#include "Option.h"
#include "def.h"
unsigned int PCLK;
extern void Uart_Printf(char *fmt,...);
extern void Uart_Init(int pclk,int baud);
extern void Port_Init(void);
extern void Uart_Select(int ch);//外部函數(shù)申明,不然一直有警告??粗凰?/div>
void delay(void)
{
unsigned int i,j;
for(i=0;i<1000;i++)
for(j=0;j<1000;j++)
;
}
void Main(void)
{
Uart_Select(0);//選擇串口0
Port_Init();
Uart_Init(50000000,115200);//串口初始化,時(shí)鐘參數(shù)當(dāng)為0時(shí)選擇的時(shí)候PCLK為50MHz,效果一樣
Uart_Printf("nn");
delay();
while(1)
{
Uart_Printf("I love caimanjun more than myselfn"); //打印字符串
delay();
Uart_Printf("yes I do! n");
delay();
}
}


關(guān)鍵詞: TQ2440串口傳輸數(shù)

評(píng)論


技術(shù)專(zhuān)區(qū)

關(guān)閉