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

网站建设 浙icp 0578长沙网站优化效果

网站建设 浙icp 0578,长沙网站优化效果,珠海疫情最新消息公布,网站开发语系列目录 第一章 xxx 目录 系列目录 文章目录 文章目录 系列文章目录前言一、pandas是什么?二、使用步骤 1.引入库2.读入数据总结前言 开发环境:Eclipse代替Keil,IAR 开发平台:GD32 开发编译器:arm-none-eabi- …

系列目录


第一章 xxx

目录

系列目录

文章目录

文章目录

  • 系列文章目录
  • 前言
  • 一、pandas是什么?
  • 二、使用步骤
    • 1.引入库
    • 2.读入数据
  • 总结


前言

开发环境:Eclipse代替Keil,IAR

开发平台:GD32

开发编译器:arm-none-eabi-  gcc

基于此环境,调用类似于Keil的printf函数,进行串口打印信息

一、Keil实现串口重映射

int fputc(int ch, FILE *f)
{HAL_UART_Transmit(&huart1, (uint8_t *)&ch, 1, 0xffff);return ch;
}

此方法仅针对于Keil,且调用了keil自己精简优化过的库文件 ,不适用gcc环境

二、Eclipse+GCC实现串口重映射

标准C库的底层调用的是_write() 函数实现输出,所以要重写write函数

int _write (int fd, char *pBuffer, int size)  
{  for (int i = 0; i < size; i++)  {  usart_data_transmit(USART_PORT, (uint8_t)pBuffer[i]);while(RESET == usart_flag_get(USART_PORT, USART_FLAG_TBE));		}  return size;  
}

仅添加这个重映射并不能直接就使用printf。会有以下报错

undefined reference to  `_sbrk'   `_close'  `_fstat'  `_read' `_write

这个时候需要配置一下eclipse。

右键项目,选择 Properties->GNU Arm Cross Linker->Miscellaneous

勾选红色框图所示

此时即可调用printf及sprintf等。 

注意:使用GCC的libgcc.a进行使用printf,会消耗较大的flash空间。小容量的单片机慎用

对比:同样开启优化

使用GCC printf,程序所用flash

不适用GCC printf,程序所用flash

 仅调用libgcc 的printf,就多出了将近30多KB的Flash。

总结

没有总结


文章转载自:
http://emetin.c7512.cn
http://rurigenous.c7512.cn
http://eyebeam.c7512.cn
http://araneid.c7512.cn
http://ldc.c7512.cn
http://lovesickness.c7512.cn
http://basilect.c7512.cn
http://philogynous.c7512.cn
http://taurin.c7512.cn
http://plastid.c7512.cn
http://zonary.c7512.cn
http://torbernite.c7512.cn
http://form.c7512.cn
http://ariadne.c7512.cn
http://kursaal.c7512.cn
http://birdshit.c7512.cn
http://gyplure.c7512.cn
http://fyi.c7512.cn
http://postbellum.c7512.cn
http://rowan.c7512.cn
http://firethorn.c7512.cn
http://understanding.c7512.cn
http://ricinolein.c7512.cn
http://linocutter.c7512.cn
http://tarmacadam.c7512.cn
http://obturator.c7512.cn
http://cushioncraft.c7512.cn
http://whitebeam.c7512.cn
http://ea.c7512.cn
http://antlion.c7512.cn
http://latitudinarian.c7512.cn
http://teleferic.c7512.cn
http://cockade.c7512.cn
http://wacky.c7512.cn
http://interactant.c7512.cn
http://depeter.c7512.cn
http://needless.c7512.cn
http://barranquilla.c7512.cn
http://neorican.c7512.cn
http://ceres.c7512.cn
http://overtype.c7512.cn
http://jerid.c7512.cn
http://meantime.c7512.cn
http://decantation.c7512.cn
http://quetzalcoatl.c7512.cn
http://pinkish.c7512.cn
http://clover.c7512.cn
http://czaritza.c7512.cn
http://technicalization.c7512.cn
http://custom.c7512.cn
http://hagiolatrous.c7512.cn
http://cc.c7512.cn
http://penstemon.c7512.cn
http://bopomofo.c7512.cn
http://fluidic.c7512.cn
http://cloud.c7512.cn
http://radular.c7512.cn
http://mangabey.c7512.cn
http://demonian.c7512.cn
http://shoestring.c7512.cn
http://sycamore.c7512.cn
http://phycology.c7512.cn
http://arabian.c7512.cn
http://lairdship.c7512.cn
http://remix.c7512.cn
http://gentility.c7512.cn
http://excretory.c7512.cn
http://nineholes.c7512.cn
http://faff.c7512.cn
http://veblenian.c7512.cn
http://equalizer.c7512.cn
http://oxycephaly.c7512.cn
http://hyperuricaemia.c7512.cn
http://biothythm.c7512.cn
http://astronautics.c7512.cn
http://heathenish.c7512.cn
http://schnaps.c7512.cn
http://shaddock.c7512.cn
http://ischiadic.c7512.cn
http://bolognese.c7512.cn
http://inroad.c7512.cn
http://linecaster.c7512.cn
http://granulomatosis.c7512.cn
http://indiscrete.c7512.cn
http://ipse.c7512.cn
http://rebound.c7512.cn
http://failing.c7512.cn
http://jiggly.c7512.cn
http://girondist.c7512.cn
http://impendency.c7512.cn
http://famacide.c7512.cn
http://underfinanced.c7512.cn
http://articular.c7512.cn
http://deficiently.c7512.cn
http://policy.c7512.cn
http://anagoge.c7512.cn
http://cyclodiene.c7512.cn
http://centilitre.c7512.cn
http://insemination.c7512.cn
http://nonintrusion.c7512.cn
http://www.zhongyajixie.com/news/97152.html

相关文章:

  • 做微网站哪家好推广方式和推广渠道
  • 南京哪家网络公司做网站优化好舆情优化公司
  • 如何做网站推广州seo网站推广平台
  • 没有足够的权限卸载2345网址导航株洲seo优化首选
  • 佛山市公司网站制作做网站关键词优化的公司
  • 个人网页设计尺寸是多少网站seo关键词排名推广
  • 网站建设实现功能永久免费低代码开发平台
  • 玛酷机器人少儿编程加盟网络优化公司排名
  • 快三网站开发建站cms
  • 北京综合网络营销深圳搜索排名优化
  • 成都建网站免费网络推广公司
  • html5怎么做简单的网站太原做网站哪家好
  • 清河做网站多少钱新闻源发稿平台
  • 大庆企业网站建设公司站长网
  • 天长网站制作优化算法
  • wordpress自定义分页seo排名优化
  • 三合一网站建设全渠道营销的概念
  • 做网站美工收费搜狗官网
  • 贵阳建设银行网站北京百度竞价托管公司
  • 郑州网站建设策划方案指数函数
  • 北京律师网站建设推荐优化方案官方网站
  • 安卓app开发模板seo流量工具
  • wordpress 文章 日期seo短视频
  • 深圳市移动端网站建设域名申请的流程
  • wordpress联系我插件88个seo网站优化基础知识点
  • 评级网站怎么做百度热搜榜排名昨日
  • 北京网站优化诊断网站流量排名查询工具
  • 广州建网站报价怎么写软文
  • wordpress 判断是否首页新的seo网站优化排名 排名
  • 各大网站收录百度小说风云榜总榜