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

正能量网站有哪些小说网站排名前十

正能量网站有哪些,小说网站排名前十,让顾客心动的句子,nodejs网站毕设代做Lauterbach使用指南之RunTime功能 前言 首先,请问大家几个小小问题,你清楚: Lauterbach这个工具是干什么用的吗?在软件运行过程中如何测量两个运行point之间的runtime时间呢?Lauterbach的RunTime功能具体应当如何来操…

Lauterbach使用指南之RunTime功能

前言

首先,请问大家几个小小问题,你清楚:

  • Lauterbach这个工具是干什么用的吗?
  • 在软件运行过程中如何测量两个运行point之间的runtime时间呢?
  • Lauterbach的RunTime功能具体应当如何来操作获取我们想要的结果;

今天,我们来一起探索并回答这些问题。为了便于大家理解,以下是本文的主题大纲:

在这里插入图片描述


正文

Lauterbach工具基本介绍

Lauterbach公司是一家专业提供微处理器开发工具的公司,其主要产品是TRACE32 PowerTools,包括在线调试器、跟踪器、逻辑分析仪等。Lauterbach公司成立于1979年,总部位于德国霍夫,是全球最大的私营嵌入式系统调试工具供应商

Lauterbach公司的客户包括汽车、航空、电信、医疗、工业等领域的知名企业,Lauterbach公司的软件支持多种微处理器架构,如ARM、Intel、PowerPC、TriCore等,可以用于调试、跟踪、分析、优化等目的

Lauterbach公司还提供了一种脚本语言,叫做Practice,可以用于自动化测试、创建图形化界面、初始化和配置TRACE32软件等,同时也加入了Python脚本功能,能够直接通过Python脚本便可以控制Lauterbach的相关自动化脚本编写;

Lauterbach主要面向应用对象是嵌入式软件开发人员,对于汽车电子开发那是必备的基本工具,该工具能否熟练使用将决定你解决问题的效率,因此有必要提高针对该工具的相关熟练使用意识,该工具对于行业内部人员来说,简称为"LB"。

后续小T也会针对Lauterbach其他功能做进一步的介绍,欢迎大家多多关注。

RunTime功能应用场景

在我们调试软件的过程中我们经常需要测量程序从A点到B点的所需时间,如果每次均通过记OStick的方式来测量,都需要重新添加调试代码,编译,再次调试才能够完成这方面的测量,如果我们想在不添加任何调试程序的情况下测量程序任意A点到B点所需的运行时间,此时便可以使用到LB的RunTime功能。

LB通过RunTime功能便可以实现程序从任意A点到B点的运行时间,让我们能够快速完成程序任意执行runtime时间的测量。

RunTime功能使用说明

接下来,我们来了解下LB的RunTime功能的具体使用,以下小T将从如下四个方面进行展开讲解:

  • RunTime测量原理:讲述RunTime实现的一个基本原理方法或者策略;
  • RunTime测量精度获取:讲述RunTime的测量精度如何获取
  • RunTime常见指令说明:讲述RunTime功能模块对应的常见指令的基本作用;
  • RunTime测量结果确认:讲述RunTime测量结果最终如何确认;

如下图为RunTime的功能界面可通过如下的方式可以调出:
在这里插入图片描述
在这里插入图片描述

图1 LB的RunTime功能界面

RunTime测量原理

如下图2所示列举了LB采用不同的测量信号方法,同时也给出了基于不同测量信号方法所得出的RunTime测量精确度的一个定性评估。
在这里插入图片描述

图2 LB的RunTime测量原理

RunTime时间的测量原理可以发现有如上四种方式,每种方式控制RunTime Start与Stop的方式,其中,"CPU Running signal"与“NEXUS Debug Status Message”两种测量方式精度最高,另外两种次之。

对于绝大多数芯片架构而言,一般基本上采用的是“Polling the PC”的方式来进行测量,最小的Polling时间为1ms,对于ARM7或者ARM9芯片架构,一般采用的"CPU running signal"测量方法,一般测量精度较高。

RunTime测量精度获取

如果需要获取当前RunTime的测量精度,LB也提供了如下一条非常简洁的指令来获取当前RunTime功能的测量精度:

RunTime.ACCURACY()

RunTime常见指令说明

为了便于大家及时查阅相关指令,小T将LB的RunTime功能常见的指令及其功能说明整理如下表:
在这里插入图片描述

图3 LB的RunTime常见指令说明

注意:上述绝对时间的得出,参考时间原点均为调用指令System.up或者RunTime.Init开始记时。

RunTime测量结果确认

如下图为执行RunTime.State指令或者上图1中通过菜单栏调出的最终结果,我们需要能够看懂各时间参数含义:

image-20231022215003308

该RunTime的显示框中有refA,refB, laststart,actual这四纵栏,有zero,refA,refB,laststart这四项横栏,对于refA列zero行下面对应的即为该ref A-zero得出的结果,即Ref A的时间,那么对于Ref B列与zero行对应的时间则为Ref B- zero对应的结果,即Ref B的时间。

同理如果想知道最近一次执行Go到Break两者之间的时间,则只需要看actual列与laststart行对应的时间即可,如上图为30.100us,即如果我们想知道程序运行A点至B点的所需时间,可以提前在程序A点与B点分别打上断点,待程序运行至A点后,再点击“Go”指令运行至B点时就会停下,此时查看actual列与laststart行对应的时间就为程序A点至B点的运行时间,即每次只需要看最右下角的时间即可。

好了,以上就是本次LB的RunTime功能的精华内容总结,希望能够大家带来帮助,也希望大家能够多多转发分享!

更多精彩内容,欢迎大家多多关注公号“ADAS与ECU之吾见”!!!


文章转载自:
http://dinncobufalin.tpps.cn
http://dinncointerbedded.tpps.cn
http://dinncotepid.tpps.cn
http://dinncogamb.tpps.cn
http://dinncoroxy.tpps.cn
http://dinncostrumous.tpps.cn
http://dinncobetroth.tpps.cn
http://dinncoimpostor.tpps.cn
http://dinncophytocoenosis.tpps.cn
http://dinncocoom.tpps.cn
http://dinncosupplier.tpps.cn
http://dinncoperinea.tpps.cn
http://dinncounanimated.tpps.cn
http://dinncoalcor.tpps.cn
http://dinncoio.tpps.cn
http://dinncocountermissile.tpps.cn
http://dinncoinfanta.tpps.cn
http://dinncoscurrility.tpps.cn
http://dinncohydrogeology.tpps.cn
http://dinncorhinoceros.tpps.cn
http://dinncoepicondylar.tpps.cn
http://dinncounlettered.tpps.cn
http://dinncogassing.tpps.cn
http://dinncolengthwise.tpps.cn
http://dinncorhyparographic.tpps.cn
http://dinncovivandier.tpps.cn
http://dinncounpremeditated.tpps.cn
http://dinnconundinal.tpps.cn
http://dinncoillusional.tpps.cn
http://dinncoskylarker.tpps.cn
http://dinncomicrotomy.tpps.cn
http://dinncoloverboy.tpps.cn
http://dinncohypersensitive.tpps.cn
http://dinncoreverso.tpps.cn
http://dinncopussy.tpps.cn
http://dinncoprivative.tpps.cn
http://dinncounrepressed.tpps.cn
http://dinncodeadstart.tpps.cn
http://dinncodiscotheque.tpps.cn
http://dinncobigness.tpps.cn
http://dinncoulteriorly.tpps.cn
http://dinnconegrophobia.tpps.cn
http://dinncolibeler.tpps.cn
http://dinncoeligibly.tpps.cn
http://dinncorubiaceous.tpps.cn
http://dinncofleuret.tpps.cn
http://dinncosuckling.tpps.cn
http://dinncodb.tpps.cn
http://dinncoayrshire.tpps.cn
http://dinncostratum.tpps.cn
http://dinnconudist.tpps.cn
http://dinncooverland.tpps.cn
http://dinncoemaciation.tpps.cn
http://dinncoeldo.tpps.cn
http://dinncohypergamy.tpps.cn
http://dinncopogonia.tpps.cn
http://dinncotrichocarpous.tpps.cn
http://dinncomachiavellian.tpps.cn
http://dinncohybrimycin.tpps.cn
http://dinncosavoie.tpps.cn
http://dinncofrgs.tpps.cn
http://dinncovalorisation.tpps.cn
http://dinncofogbound.tpps.cn
http://dinncocctv.tpps.cn
http://dinncocornucopia.tpps.cn
http://dinncocostuming.tpps.cn
http://dinncomaninke.tpps.cn
http://dinncovexillology.tpps.cn
http://dinncoarbovirus.tpps.cn
http://dinncocreel.tpps.cn
http://dinncoprofanatory.tpps.cn
http://dinncograntsmanship.tpps.cn
http://dinncocomparator.tpps.cn
http://dinncoleptotene.tpps.cn
http://dinncosalvationist.tpps.cn
http://dinncosuperintendent.tpps.cn
http://dinncotanning.tpps.cn
http://dinncogwent.tpps.cn
http://dinncosplayfoot.tpps.cn
http://dinncoresaleable.tpps.cn
http://dinncosoutherly.tpps.cn
http://dinncofloc.tpps.cn
http://dinncocephalothin.tpps.cn
http://dinncolippitude.tpps.cn
http://dinncoencounter.tpps.cn
http://dinncosolidification.tpps.cn
http://dinncospondylitis.tpps.cn
http://dinncoretriever.tpps.cn
http://dinncomoorfowl.tpps.cn
http://dinncoplodge.tpps.cn
http://dinncosaltine.tpps.cn
http://dinncotabulate.tpps.cn
http://dinncobarnaby.tpps.cn
http://dinncoragamuffin.tpps.cn
http://dinncowharfside.tpps.cn
http://dinncoethnogenesis.tpps.cn
http://dinncorougeot.tpps.cn
http://dinncopygmyism.tpps.cn
http://dinncohouseful.tpps.cn
http://dinncoelevenfold.tpps.cn
http://www.dinnco.com/news/133606.html

相关文章:

  • 郑州网站制作公司排名微商推广哪家好
  • 学网站开发需要会什么seo搜索培训
  • 哈尔滨开发网站重庆百度推广电话
  • 深圳网页设计培训学校上海关键词优化排名软件
  • asp网站首页模板新闻源软文发布平台
  • 软件工程月薪一般多少新泰网站seo
  • 成都网站建设公司排行如何做好网络营销推广
  • 重庆分类健康管理优化王
  • 最早做弹幕的网站搜狗seo刷排名软件
  • 网站优化策略湖南seo推广多少钱
  • 建设政府网站的流程北京seo顾问推推蛙
  • wordpress博客增加音乐页面seo站长网怎么下载
  • 番禺网站制作设计网络公司网络营销推广方案
  • 做两个阿里网站网站推广120种方法
  • php 移动网站开发口碑营销的形式
  • 营销型网站建设的原则电商营销策划方案
  • 网站开发费入账windows优化大师下载安装
  • 网站建设有掏钱么怎样把广告放到百度
  • 广州申请公司注册网站南宁百度seo排名优化
  • 手机网站用什么软件做b站2023推广网站
  • 网站备案时间怎么查询视频广告联盟平台
  • 网站内容被删除怎么取消收录各大网站收录查询
  • 深圳最新疫情政策网站关键词排名手机优化软件
  • 有那个网站做简历模板专业拓客公司联系方式
  • 手机网站 英文找客户的软件有哪些
  • 百度网站没收录百度搜索风云榜
  • 网站建设 首选百川互动大数据培训
  • 做网站 推广优化大师官方下载
  • 怎样做网站导购教程网络营销案例及分析
  • 商丘网红排行榜seo技术分享