TA的每日心情 | 开心 2022-9-8 15:14 |
|---|
签到天数: 12 天 [LV.3]偶尔看看II
|
EDA365欢迎您登录!
您需要 登录 才可以下载或查看,没有帐号?注册
x
本帖最后由 liuyidao 于 2025-9-16 23:12 编辑
尝试用axlRunBatchDBProgram调用nctape ncroute artwork,前两个都正常了,参考artwork.txt里描述的格式改了几次,但是artwork仍然无法正常导出,诉求是所有的gerber film都导出,请大佬指点。
sprintf(strartwork, "artwork -$ %s %%s" axlCurrentDesign())
res2= axlRunBatchDBProgram("Generating Artwork Files... " "strartwork" ?logfile "photoplot" ?warnProgram t ?noExitMsgs t)
- <blockquote><span style="white-space: normal;"><span style="white-space:pre"> </span>sprintf(strartwork, "artwork -$ %s %%s" axlCurrentDesign())</span>
复制代码
-------------------------------------------------------------------------------
-------------------------------------------------------------------------------
感谢大佬指点,问题已经解决。
命令字符串有如下两种写法:
sprintf(strartwork "artwork %s.brd", axlCurrentDesign())
sprintf(strartwork "artwork %%s");这个依据在help文档里对axlRunBatchDBProgram参数里有说明,由于某些原因就不贴图了
执行
res2= axlRunBatchDBProgram("Generating Artwork Files... " strartwork ?logfile "photoplot" ?warnProgram t ?noExitMsgs t)
|
|