博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2017.11.15 Add a parameter –serial <serial no> to the Target field.
阅读量:6226 次
发布时间:2019-06-21

本文共 1979 字,大约阅读时间需要 6 分钟。

1 exe创建快捷方式,并且加后缀  program --serial 50114130   这是Win里面的一种调用说明。

Please note that the programming logs are saved in C:\Logs when the desktop shortcut is used to start the programmer.

In order to run programming from command line:
a) without specifying adapter serial number: C:\Scripts\program_.exe program
b) with adapter serial number (recommended), assuming serial is 12345

C:\Scripts\program_.exe program --serial 12345

c) with adapter serial, and program only one device, assuming serial is 12345: C:\NVirtualEnvs\Scripts\program_.exe program --serial 12345 --once

 

 

2 Keil +EFM32  

   ok....

 3 python 做批量烧录程序 

   pip install  (install whl file)

  

5  bat文件编程

   I find it :  http://www.jb51.net/article/49627.htm 

notes:  

@echo off

REM Current DevProg Version. Match the pip package version (x.y.z)      //当前版本号

SET currentversion=0.0.1

REM Installation paths. If copying this to a new product, you MUST edit the last parts of venvdir and shortcuts!   //这些是path和文件位置说明

SET basedir=C:\xxNVirtualEnvs
SET logdir=%basedir%\Logs
SET venvdir=%basedir%\xxx
SET scriptdir=%venvdir%\Scripts

SET shortcut=%userprofile%\Desktop\Program xxx.lnk    桌面快捷键

SET shortcuttargetdir=%scriptdir%\program_xxx.exe

if not exist %basedir% (                 如果不存在,报错退出
mkdir %basedir%
)

if not exist %logdir% (

mkdir %logdir%
)

if not exist %venvdir% (

python -m venv %venvdir%
)

if not exist %scriptdir%\activate.bat (

echo The virtual environment in %venvdir% appears to be invalid.
echo Delete the folder and run this script again.
exit /b 1
)

call %scriptdir%\activate.bat 

pip uninstall -y intelhex six xxx                        安装这三个WHL文件
pip install six-1.10.0-py2.py3-none-any.whl
pip install intelhex-2.0-py2.py3-none-any.whl
pip install ecu2te-%currentversion%-py3-none-any.whl

powershell "$s=(New-Object -COM WScript.Shell).CreateShortcut('%shortcut%');$s.TargetPath='%shortcuttargetdir%';$s.Arguments='program';$s.WorkingDirectory='%logdir%';$s.Save()"

%scriptdir%\jlink_driver_install.exe

6 J-link serial 

     

 

转载于:https://www.cnblogs.com/huangbaobaoi/p/7839786.html

你可能感兴趣的文章
新浪微博UWP UI意见征求
查看>>
使用ServiceStack构建Web服务
查看>>
Linqer工具
查看>>
table中超过长度的列,显示省略号
查看>>
Qtcreator中经常使用快捷键总结
查看>>
模块管理常规功能自己定义系统的设计与实现(16--模块数据的导出和打印[1])
查看>>
可扩展Web架构与分布式系统(转)
查看>>
KVM虚拟机的安装
查看>>
【转】PHP中require和include路径问题总结
查看>>
KS-检验(Kolmogorov-Smirnov test) -- 检验数据是否符合某种分布
查看>>
java 小数点取2位并且四舍五入
查看>>
web.xml 配置中classpath: 与classpath*:的区别
查看>>
osharp3引入事务后操作结果类别的调整
查看>>
[ZigBee] 6、ZigBee基础实验——定时器3和定时器4(8 位定时器)
查看>>
Jquery操作cookie
查看>>
Atitit 基于meta的orm,提升加速数据库相关应用的开发
查看>>
Spring:ApplicationContext (2)
查看>>
数据记录筛选
查看>>
windows 10专业版14393.447 64位纯净无广告版系统 基于官方稳定版1607制作 更新于20161112...
查看>>
Python正则表达式学习摘要及资料
查看>>