博客
关于我
51单片机串口的使用
阅读量:335 次
发布时间:2019-03-04

本文共 1674 字,大约阅读时间需要 5 分钟。

????????UART??????????????????????????????????????????????????????????????????????????????????????????????????1. ?????????????????????2. ????????????SBUF registers??????3. ???????????????????????????4. ?????????????????????????5. ?????????????1????2?????????6. ????????????????????????????????????????????????????????????????????????????????????????????```cvoid delay(long d) {    while(d--) ;}void uar1tByte(char byte) {    SBUF = byte;    while(!TI);    TI = 0;}void uart1String(char *s) {    while(*s) {        uar1tByte(*s++);    }}void uart1Figure(long figure) {    if(figure >= 100000000) uart1tByte('0' + figure/100000000%10);    if(figure >= 10000000) uart1tByte('0' + figure/10000000%10);    if(figure >= 1000000) uart1tByte('0' + figure/1000000%10);    if(figure >= 100000) uart1tByte('0' + figure/100000%10);    if(figure >= 10000) uart1tByte('0' + figure/10000%10);    if(figure >= 1000) uart1tByte('0' + figure/1000%10);    if(figure >= 100) uart1tByte('0' + figure/100%10);    if(figure >= 10) uart1tByte('0' + figure/10%10);    if(figure >= 0) uart1tByte('0' + figure/1%10);}void uart1TiINIT() {    unsigned int INITValue = 256 - (11059200/12/32/9600);    EA = 1; ES = 1; SCON = 0x50; TMOD = 0x0F;    TMOD |= 0x20; TH1 = TL1 = INITValue; ET1 = 0; TR1 = 1;}void uart1T2INIT() {    unsigned int INITValue = 65536 - (11059200/32/9600);    EA = 1; ES = 1; SCON = 0x50; T2CON = 0x34;    TH2 = RCAP2H = INITValue / 256; TL2 = RCAP2L = INITValue % 256; TR2 = 1;}int main() {    uart1T2INIT();    while(1) {        i++;        uart1String("i = ");        uart1Figure(i);        uart1String("\r\n");        delay(10000);    }}

????????UART?????????????????????????????

转载地址:http://fbrq.baihongyu.com/

你可能感兴趣的文章
ntko文件存取错误_苹果推送 macOS 10.15.4:iCloud 云盘文件夹共享终于来了
查看>>
ntp server 用法小结
查看>>
ntpdate 通过外网同步时间
查看>>
ntpdate同步配置文件调整详解
查看>>
NTPD使用/etc/ntp.conf配置时钟同步详解
查看>>
NTP及Chrony时间同步服务设置
查看>>
NTP服务器
查看>>
NTP配置
查看>>
NUC1077 Humble Numbers【数学计算+打表】
查看>>
NuGet Gallery 开源项目快速入门指南
查看>>
NuGet(微软.NET开发平台的软件包管理工具)在VisualStudio中的安装的使用
查看>>
nuget.org 无法加载源 https://api.nuget.org/v3/index.json 的服务索引
查看>>
Nuget~管理自己的包包
查看>>
NuGet学习笔记001---了解使用NuGet给net快速获取引用
查看>>
nullnullHuge Pages
查看>>
NullPointerException Cannot invoke setSkipOutputConversion(boolean) because functionToInvoke is null
查看>>
null可以转换成任意非基本类型(int/short/long/float/boolean/byte/double/char以外)
查看>>
Numix Core 开源项目教程
查看>>
numpy
查看>>
NumPy 库详细介绍-ChatGPT4o作答
查看>>