EDA365电子工程师网

标题: 用skill 调用select后,退不出来的问题 [打印本页]

作者: skill_rc    时间: 2016-6-3 11:16
标题: 用skill 调用select后,退不出来的问题
axlCmdRegister("stop_command" 'stop_command ?cmdType "general")

procedure(stop_command()
    axlShell("done")
    axlUIWPrint(nil "----exited current command----")
)

在allegro的菜单上作了一个菜单项调用这个skill的函数封装,来退出所有的axlselect。调用完,也打印了退出当前命令了,但是实际上并没有退出,是什么原因?


作者: hoo    时间: 2016-6-3 11:37
axlCmdRegister("stop_command" 'stop_command  ?doneCmd "axlFinishEnterFun()  axlUIPopupSet(nil)")
作者: skill_rc    时间: 2016-6-3 13:50
hoo 发表于 2016-6-3 11:37
axlCmdRegister("stop_command" 'stop_command  ?doneCmd "axlFinishEnterFun()  axlUIPopupSet(nil)")

好像不行。报错:E- Finish current command before starting new command.


作者: 86232648    时间: 2016-6-3 18:59
"general"改为“interactive”试试。
作者: skill_rc    时间: 2016-6-6 09:29
86232648 发表于 2016-6-3 18:59
"general"改为“interactive”试试。

改完之后,提示E- Finish current command before starting new command.

作者: skill_rc    时间: 2016-6-6 11:40
改成如下:
(报错:----stoped current command----
E- No command active)

axlCmdRegister("stop_command" 'stop_command  ?cmdType "general")

procedure(stop_command()
        ;axlCancelEnterFun()
        axlShell("done")
        axlUIWPrint(nil "----stoped current command----")
)
作者: deargds    时间: 2016-6-6 14:16
skill_rc 发表于 2016-6-6 11:40
改成如下:
(报错:----stoped current command----
E- No command active)

axlSelect放在while里面了吧


作者: skill_rc    时间: 2016-6-7 09:11
deargds 发表于 2016-6-6 14:16
axlSelect放在while里面了吧

没有 ,只有一个axlSelect。我通过在allegro命令行上输入一个axlSelect,然后通过skill调用这个函数,也退出不了。
但是在allegro命令行上直接输入axlShell("done"),可以退出。不知什么原因。

作者: deargds    时间: 2016-6-7 09:56
skill_rc 发表于 2016-6-7 09:11
没有 ,只有一个axlSelect。我通过在allegro命令行上输入一个axlSelect,然后通过skill调用这个函数,也 ...

再执行axlCancelEnterFun就可以退出

作者: skill_rc    时间: 2016-6-7 11:00
这个函数改成如下?
procedure(stop_command()
        axlShell("done")
        axlCancelEnterFun()
        axlUIWPrint(nil "----stoped current command----")
)
还是报错如下:
----stoped current command----
E- No command active




欢迎光临 EDA365电子工程师网 (https://bbs.elecnest.cn/) Powered by Discuz! X3.2