开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 1129|回复: 1
收起左侧

[精币悬赏] 第三方DLLzc调用 找个大佬指导一下这个烧录程序

[复制链接]
结帖率:0% (0/1)
发表于 2021-11-16 15:17:24 | 显示全部楼层 |阅读模式   广东省东莞市
60精币
zc这个DLL失败,百d什么办法都试过了,自己想研究一下这个高通API接口调用,后面往这方面发展,找个大神指导一下,可以现金报酬,附件为官方API说明和DLL文件,想用易语言实现
Example: CDA ICs - Programming a single device (legacy API)Below is a sample C++ program showing how to use the functions in the legacy API to program an NVM device for CDA ICs.
#include <iostream>#include <windows.h>#include "testflash.h"using namespace std;int main(int argc, char** argv){    int retVal = -1;    if (flOpen(1, 0, 0, TFL_USBDBG) != TFL_OK)    {        cout << "Failed to open TestFlash connection" << endl;    }    else    {        bool success = true;        if (flReadProgramFiles("C:\\temp\\prog.xuv") != TFL_OK)        {            cout << "Failed to read flash program files" << endl;            success = false;        }        if (success && flSetFlashType(TFL_TYPE_SQIF) != TFL_OK)        {            cout << "Failed to set flash type" << endl;            success = false;        }        if (success && flSetSubsysBank(4, 0) != TFL_OK)        {            cout << "Failed to set subsystem and bank" << endl;            success = false;        }        if (success && flProgramSpawn() != TFL_OK)        {            cout << "Failed to spawn flash program thread" << endl;            success = false;        }        if (success)        {            int32 progress = flGetProgress();            while (progress < 100)            {                cout << "Programming..." << progress << "%" << endl;                Sleep(1000);                progress = flGetProgress();            }            cout << "Completed" << endl;            int32 error = flGetLastError();            if (error != TFL_OK)            {                cout << "Programming failed with error: " << error << endl;                success = false;            }        }        if (success)        {            cout << "Successfully programmed device" << endl;            retVal = 0;        }        flClose();    }    return retVal;}

DLL.rar

670.25 KB, 下载次数: 2, 下载积分: 精币 -1 枚

dll与说明文档

结帖率:0% (0/1)
 楼主| 发表于 2021-11-16 15:19:57 | 显示全部楼层   广东省东莞市
附件是C语言例子,想用E语言实现 发现调用不了接口

C.txt

1.94 KB, 下载次数: 1, 下载积分: 精币 -1 枚

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 793400750,邮箱:wp@125.la
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

快速回复 返回顶部 返回列表