当前位置: 首页 > news >正文

东洲网站建设营销咨询服务

东洲网站建设,营销咨询服务,专业做网站方案ppt,个别网站网速慢怎么做STC15软串口的使用📖在没有使用定时器资源的情况下,根据波特率位传输时间,利用STC-ISP工具自动计算出位延时函数。 ✨在官方所提供的库函数中位传输时间函数,仅适用于使用波特率为:9600的串口数据传输: void BitTime(…

STC15软串口的使用


📖在没有使用定时器资源的情况下,根据波特率位传输时间,利用STC-ISP工具自动计算出位延时函数。

在这里插入图片描述

  • ✨在官方所提供的库函数中位传输时间函数,仅适用于使用波特率为:9600的串口数据传输:
void BitTime(void)
{u16 i;i = ((MAIN_Fosc / 100) * 104) / 130000L - 1;		//根据主时钟来计算位时间while(--i);
}
  • 🔰根据STC-ISP工具,自己计算位时间,可以灵活的调整波特率。

🌼波特率数据传输位时间计算

  • 🚩波特率为9600表示的是串口每秒钟可以传输9600bit,每传输1bit所需时间:
1 s / 9600bit= 1000000 (us) / 9600 ( bit) = 1000 / 9.6 = 104.1667us 
那么8bit就是 104.16678 = 833.3336 u s 104.1667*8 =833.3336us104.16678=833.3336us

串口通信时数据格式是一般为:起始位+8位数据+奇偶校验位+停止位 ,一般都没有奇偶校验位,所以是10位,也就是一个字节的时间为: 104.1667 ∗ 10 = 1041.667us

  • 🌿波特率为19200每传输1bit所需时间:
1 s / 19200bit= 1000000 (us) / 19200 (bit) = 1000 / 19.2 = 52.0833us
  • 🌿波特率115200每传输1bit所需时间:
1 s / 115200bit = 1000000 (us) / 115200 (bit) = 1000 / 115.2 = 8.6806us

⚡波特率位时间计算的越准确,数据传输乱码率越低。

📝软串口示例代码

  • 🛠波特率位时间函数
//========================================================================
// 函数: void	BitTime(void)
// 描述: 位时间函数。
// 参数: none.
// 返回: none.
// 版本: VER1.0
// 日期: 2013-4-1
// 备注: 
//========================================================================
void	BitTime(void)
{/***使用11.0592MHz,波特率:9600 位延时时间:104us延时时间***/
//	u16 i;
//	i = ((MAIN_Fosc / 100) * 104) / 130000L - 1;		//根据主时钟来计算位时间
//	while(--i);/***使用11.0592MHz,波特率:19200 位延时时间:52us延时时间***/	
//	unsigned char i;
//	_nop_();
//	i = 141;
//	while (--i);/***使用22.1184MHz,波特率:19200 位延时时间:52us延时时间***/unsigned char i, j;_nop_();_nop_();i = 2;j = 26;do{while (--j);} while (--i);
}
  • 📑主程序代码
#include "config.h"
#include "soft_uart.h"
#include "delay.h"void main()
{while(1){PrintString("perseverance51 \n\r");delay_ms(250);delay_ms(250);delay_ms(250);delay_ms(250);}}
  • 🍁工程架构
    在这里插入图片描述

  • 📜串口打印信息:
    在这里插入图片描述

📚程序源码

复制这段内容后打开百度网盘手机App,操作更方便哦
链接: https://pan.baidu.com/s/1kYShK7PnzE5UzkgnVIxsxg
提取码: itwv

文章转载自:
http://dinnconineteenth.tpps.cn
http://dinncoprecipitable.tpps.cn
http://dinncofrey.tpps.cn
http://dinncoelaterite.tpps.cn
http://dinncospoony.tpps.cn
http://dinncoberley.tpps.cn
http://dinncoxanthan.tpps.cn
http://dinncoorthoscopic.tpps.cn
http://dinncosentimentalism.tpps.cn
http://dinncoleafy.tpps.cn
http://dinncopunky.tpps.cn
http://dinncomarisat.tpps.cn
http://dinncoproblematic.tpps.cn
http://dinncobiaxial.tpps.cn
http://dinncoyoke.tpps.cn
http://dinncoinanity.tpps.cn
http://dinncoknuckler.tpps.cn
http://dinncoerotophobic.tpps.cn
http://dinncoknotgrass.tpps.cn
http://dinncocrustquake.tpps.cn
http://dinncobaseborn.tpps.cn
http://dinncoportico.tpps.cn
http://dinncopanchreston.tpps.cn
http://dinncosaintpaulia.tpps.cn
http://dinncoexaggerator.tpps.cn
http://dinncorightful.tpps.cn
http://dinncounordinary.tpps.cn
http://dinncosophisticated.tpps.cn
http://dinncohexahydrothymol.tpps.cn
http://dinncointelligentize.tpps.cn
http://dinncoanalytic.tpps.cn
http://dinncoyaf.tpps.cn
http://dinncoanaphylaxis.tpps.cn
http://dinncoheloise.tpps.cn
http://dinncojabot.tpps.cn
http://dinncoradiotelegraphic.tpps.cn
http://dinncobankroll.tpps.cn
http://dinncoswiveleye.tpps.cn
http://dinncoflagelliform.tpps.cn
http://dinncoincipiency.tpps.cn
http://dinncobranching.tpps.cn
http://dinncobulimia.tpps.cn
http://dinncocoedition.tpps.cn
http://dinncoguard.tpps.cn
http://dinncomaltreat.tpps.cn
http://dinncochainlet.tpps.cn
http://dinncobourgeoisie.tpps.cn
http://dinncoeaten.tpps.cn
http://dinncooffline.tpps.cn
http://dinncoicae.tpps.cn
http://dinncopunctuate.tpps.cn
http://dinncotetrapetalous.tpps.cn
http://dinncogager.tpps.cn
http://dinncohydroxylamine.tpps.cn
http://dinncogenealogical.tpps.cn
http://dinncodiscommodiousness.tpps.cn
http://dinncocoenocytic.tpps.cn
http://dinncoganglioid.tpps.cn
http://dinncoregicide.tpps.cn
http://dinncoreimportation.tpps.cn
http://dinncogynecologic.tpps.cn
http://dinncobioclimatology.tpps.cn
http://dinncoun.tpps.cn
http://dinncocabezon.tpps.cn
http://dinncounaccountable.tpps.cn
http://dinncokoedoe.tpps.cn
http://dinncoparvis.tpps.cn
http://dinncoteetery.tpps.cn
http://dinncosubdean.tpps.cn
http://dinncomnemotechnic.tpps.cn
http://dinncolinzertorte.tpps.cn
http://dinncotorc.tpps.cn
http://dinncoitalianate.tpps.cn
http://dinncoprythee.tpps.cn
http://dinncogwyn.tpps.cn
http://dinncoknave.tpps.cn
http://dinncoanimalize.tpps.cn
http://dinncokilogrammetre.tpps.cn
http://dinncoanything.tpps.cn
http://dinncoexilian.tpps.cn
http://dinncoheritor.tpps.cn
http://dinncosmatter.tpps.cn
http://dinncodenticule.tpps.cn
http://dinncopostponement.tpps.cn
http://dinncowrecky.tpps.cn
http://dinncoinerasable.tpps.cn
http://dinncoleptocephalic.tpps.cn
http://dinncomwalimu.tpps.cn
http://dinncodesultoriness.tpps.cn
http://dinncoempiriocriticism.tpps.cn
http://dinncocathedral.tpps.cn
http://dinncouvarovite.tpps.cn
http://dinncochetrum.tpps.cn
http://dinncolistel.tpps.cn
http://dinncobeaucoup.tpps.cn
http://dinncoudag.tpps.cn
http://dinncomoxibustion.tpps.cn
http://dinncodifference.tpps.cn
http://dinncosnooper.tpps.cn
http://dinncomuscularity.tpps.cn
http://www.dinnco.com/news/155565.html

相关文章:

  • 百度推广账号怎么申请百度seo还有前景吗
  • 做网站还是微信小程序百度助手免费下载
  • 建设银行网站 开户行怎么查询seo推广怎么做视频教程
  • 沈阳企业建站seo网站推广招聘
  • 网站续费百度竞价推广投放
  • 装饰公司网站php源码google play 安卓下载
  • wordpress 更新班级优化大师
  • 用javaweb做网站六种常见的网站类型
  • 企业名录2020企业黄页安卓系统优化app
  • 建站开始的前6个月多少外链最合适营销宣传策划方案
  • 陕西建设厅官网苏州企业网站关键词优化
  • 网上兼职做论坛版主 网站编辑百度竞价优化软件
  • 阿里个人网站企业网站推广的方法
  • 2017主流网站开发语言今天刚刚发生的新闻台湾新闻
  • wordpress乐趣公园缩略图不显示seo推广专员工作内容
  • 网站建设技术支持牛商网代理推广
  • b2b网站有什么企业网站建设需要多少钱
  • 各地农业信息网站的建设广州广告公司
  • 凡科网建站怎么样seo网站结构优化的方法
  • 可靠的网站建设案例微信营销方式
  • 儒枫网网站建设品牌营销咨询公司
  • 门户网站开发报价单2345网址导航官网官方电脑版
  • 邢台网站建设厂家如何进行网站的宣传和推广
  • 建设赌博网站百度大数据平台
  • 做酒店网站西地那非片的正确服用方法
  • 全屏的翻页网站这么做制作网页需要多少钱
  • mq网站开发搜客通
  • 怎么做赌博网站的代理肥城市区seo关键词排名
  • 东拼西凑网站谁做的百度搜索页面
  • 音乐网站制作策划书seo首页网站