CANoe中使用CAPL函数接口调用Vflash文件
创始人
2024-06-02 21:07:04
0
  • 🍅 我是蚂蚁小兵,专注于车载诊断领域,尤其擅长于对CANoe工具的使用
  • 🍅 寻找组织 ,答疑解惑,摸鱼聊天,博客源码,点击加入👉【相亲相爱一家人】
  • 🍅 玩转CANoe,博客目录大全,点击跳转👉

在这里插入图片描述

  • CAPL中集成了下面那么多调用vFlash的相关函数,其实实际用到的,可能就三五个函数

  • 使用这些函数接口必须要在测试模块里面加载VFLASHNODELAYER.DLL
    在这里插入图片描述

  • Vector官方有Demo可以学习: C:\Users\Public\Documents\Vector\vFlash\8\Examples\vFlash with CANoe\vFlashViaNodeLayer

  • 打开之后,CANoe和Vflash的通道都配置一样(这个工程需要真实总线环境,simulation不行)

在这里插入图片描述

  • 直接运行测试用例,可以看到Trace有数据,测试pass

在这里插入图片描述

  • 为什么即使没接真实的件,他也能有报文和刷写呢?因为simulation中它模拟节点做了应答
    在这里插入图片描述
  • Demo中的测试用例呢,就调用了"vFlash\Utilities.cin"中的 TestWaitForvFlashPackReprogrammed函数就完成了刷写

在这里插入图片描述

  • 再看下TestWaitForvFlashPackReprogrammed函数按照下面步骤完成的刷写
  • TestWaitForvFlashInitialized:初始化vFlash
  • TestWaitForvFlashProjectLoaded :加载.vflashPack工程
  • TestWaitForvFlashProjectLoaded :开始刷写
  • TestWaitForvFlashProjectUnloaded:卸载工程文件
  • TestWaitForvFlashDeinitialized:xxx
// Performs all necessary steps to reprogram the passed vFlashPack
// This function will wait until reprogramming has completed (it cannot be used in a simulation node)
enum vFlashStatusCode TestWaitForvFlashPackReprogrammed(char flashpack[])
{
// Test functions are only available in test modules!
#if TEST_NODEenum vFlashStatusCode lastStatusCode;enum vFlashStatusCode resultCode;char errorText[gkMaxErrorTextLength];int hasProjectLoaded = 1;if (!ProcessPathName(flashpack)) {snprintf(errorText, gkMaxErrorTextLength, "FATAL ERROR: No path to flashpack given!");write(errorText);   TestStepFail("TestWaitForvFlashInitialized", errorText);return FR_FileNotFound; }//----- Initialize vFlash Library -----lastStatusCode = resultCode = (enum vFlashStatusCode) TestWaitForvFlashInitialized();if (lastStatusCode != Success){TestWaitForvFlashLastErrorMessage(errorText, 1024);snprintf(errorText, gkMaxErrorTextLength, "vFlash initialization error: %s", errorText);write(errorText);TestStepFail("TestWaitForvFlashInitialized", errorText);return resultCode;}else{TestStepPass("TestWaitForvFlashInitialized", "vFlash initialized successfully");}// from here on, return statements are not possible, because we have to call the "teardown" methods as well!// ==> how much complicated want we to be...//----- Load Project ----lastStatusCode = resultCode = (enum vFlashStatusCode) TestWaitForvFlashProjectLoaded(_gFlashpack);if (lastStatusCode != Success){hasProjectLoaded = 0;TestWaitForvFlashLastErrorMessage(errorText, 1024);snprintf(errorText, gkMaxErrorTextLength, "vFlash load project error: %s", errorText);write(errorText);TestStepFail("TestWaitForvFlashProjectLoaded", errorText);}else{TestStepPass("TestWaitForvFlashProjectLoaded", "Successfully loaded project: %s", _gFlashpack);}//----- Activate Network// Activation of this function call is only required in case of flashing a FlexRay ECU // and vFlash has to do Network Managementif (lastStatusCode == Success){lastStatusCode = resultCode = (enum vFlashStatusCode) TestWaitForvFlashNetworkActivated();if (lastStatusCode != Success){TestWaitForvFlashLastErrorMessage(errorText, 1024);snprintf(errorText, gkMaxErrorTextLength, "vFlash activate network error: %s", errorText);TestStepFail("TestWaitForvFlashNetworkActivated", errorText);write(errorText);}else{TestStepPass("TestWaitForvFlashNetworkActivated", "Network activated successfully");}}//----- Start Reprogramming ----if (lastStatusCode == Success){lastStatusCode = resultCode = (enum vFlashStatusCode) TestWaitForvFlashReprogrammed();if (lastStatusCode != Success){TestWaitForvFlashLastErrorMessage(errorText, 1024);snprintf(errorText, gkMaxErrorTextLength, "vFlash reprogramming error: %s", errorText);TestStepFail("TestWaitForvFlashReprogrammed", errorText);write(errorText);}else{TestStepPass("TestWaitForvFlashReprogrammed", "ECU reprogrammed successful");}}//----- Unload Project ----if (hasProjectLoaded){lastStatusCode = (enum vFlashStatusCode) TestWaitForvFlashProjectUnloaded();if (lastStatusCode != Success){    TestWaitForvFlashLastErrorMessage(errorText, 1024);snprintf(errorText, gkMaxErrorTextLength, "vFlash unload project error: %s", errorText);TestStepFail("TestWaitForvFlashProjectUnloaded", errorText);write(errorText);}else{TestStepPass("TestWaitForvFlashProjectUnloaded", "Project unloaded successfully");}   }//----- Deinitialize vFlash Library ----lastStatusCode = (enum vFlashStatusCode) TestWaitForvFlashDeinitialized();if (lastStatusCode != Success){TestWaitForvFlashLastErrorMessage(errorText, 1024);snprintf(errorText, gkMaxErrorTextLength, "vFlash deinitialization error: %s", errorText);TestStepFail("TestWaitForvFlashDeinitialized", errorText);write(errorText);}else{TestStepPass("TestWaitForvFlashDeinitialized", "vFlash deinitialized successfully");}return resultCode; // last result is of TestWaitForvFlashReprogrammed; result of Unload/Deinitialize ignored
#else // simulation nodewrite( "ERROR: the function TestWaitForvFlashPackReprogrammed is only available in a test module!");return TestFunctionInSimulationCalled;
#endif // TEST_NODE
}
  • 如果想要刷写自己的vFlash文件,简单的话就是把 gFlashpack给个自己文件的路径即可;想要集成在自己工程中用的话,要引用 #include "vFlash\Utilities.cin",调用 TestWaitForvFlashPackReprogrammed函数即可。

  • 自己调用的时候,别忘了要在测试模块中加载下面的DLL
    在这里插入图片描述

在这里插入图片描述

🌎总结

23

7

  • 🚩要有最朴素的生活,最遥远的梦想,即使明天天寒地冻,路遥马亡!

  • 🚩如果这篇博客对你有帮助,请 “点赞” “评论”“收藏”一键三连 哦!码字不易,大家的支持就是我坚持下去的动力。
    18

相关内容

热门资讯

linux 只读文件系统-Li... 哎呀,今天真是倒霉透顶!早上兴冲冲地打开我的宝贝Linux系统,准备开始一天的工作,结果它竟然给我摆...
weblogic权威指南-We... 哎呀,说到Weblogic,这可不是一般的软件哦!它就像那个总是在背后默默支持你的朋友,虽然平时不太...
得了肺炎吃什么好-肺炎患者吃什... 哎呀,说到肺炎,真是让人头疼啊!不过啊,别担心,我这就告诉你,得了肺炎吃什么好,让你快点恢复元气!首...
windows应用商店打不开-... 哎呀,真是气死我了!今天兴冲冲地想在Windows应用商店下载个新游戏,结果一打开,页面就卡在那儿转...
gta5解压-GTA5 解压,... 哦,天哪,说到GTA5解压,我的心就忍不住激动得跳出来!你知道那种感觉吗?当你终于按下那个“解压”按...
satall接口的硬盘-SAT... 嘿,朋友们!今天咱们聊聊那些藏在电脑里的小宝藏——SATAll接口的硬盘。这玩意儿,别看它小巧玲珑,...
selenium做爬虫-Sel... 哎呀,说到用Selenium做爬虫,我这心里就激动得不行!你知道吗,Selenium就像是个超级英雄...
怎样偷电不让电力知道-如何偷电... 嘿,伙计们!今天咱们来聊聊一个超级刺激的话题——怎样偷电还不被电力公司发现!我知道这听起来有点儿不地...
无线gps定位器工作原理-探索... 大家好,我是你们的小侦探,今天我要带你们一起探索一下那些看似不起眼,实则功能强大的无线GPS定位器,...
win7雨林木风装机教程-雨林... 嘿,各位电脑小能手们,今天我要带你们走进一个超级简单的世界——用雨林木风的系统装个Win7!是不是听...
qq空间应用无法打开-QQ 空... 哎呀,真是气死我了!今天一早想看看QQ空间,结果怎么都打不开!每次点进去都是一片空白,或者直接弹出个...
tabbar图标-Tabbar... 哎呀,说到这个Tabbar图标啊,真是让人又爱又恨!你知道的,每次打开手机,那几个小图标就像老朋友一...
达思数据恢复软件使用-达思数据... 嘿,各位数据拯救者们,今天我要和你们聊聊我的那位“数据救星”——达思数据恢复软件!这玩意儿,简直就是...
一定程度上能防范缓冲区溢出攻击... 大家好!今天咱们来聊聊一个超级重要,但又有点儿枯燥的话题——缓冲区溢出攻击。别急着打哈欠,我保证这会...
bootproto dhcp-... 大家好呀!今天我要来聊聊一个超级激动人心的话题——bootprotodhcp!可能有些人听到这个名字...
手机损坏图片修复软件:拯救你的... 哎呀,你说说这年头,手机里存的可都是我们的宝贝记忆啊!但有时候,天不遂人愿,手机一摔,照片就黑屏了,...
mallbuilder下载-M... 哎呀,说到这个Mallbuilder下载,我可是有一肚子的话要说!首先,这个Mallbuilder,...
win10直通车好不好-Win... 嘿,各位小伙伴,今天我得好好聊聊这Win10直通车。哎呀,这玩意儿,我得说,真是让人又爱又恨啊!首先...
展讯win7 64位驱动-展讯... 哎呀,说到这个展讯Win764位驱动,我这心里头五味杂陈啊!你知道吗,我这电脑可是我的宝贝,自从用了...
decrypt病毒吧-解密病毒... 大家好,我是个普通的电脑用户,今天我要跟大家聊聊最近让我们大家都头疼不已的那个“decrypt”病毒...