InTime 配置

通过编辑整体配置文件,如何为所有用户添加/删除/更改FPGA工具配置?

219 views 11月 24, 2016 Michael 0

简介:

有时需要编辑整体配置文件,以正确设置来运行inTime。

更多信息:

查找plunify.settings文件。在Windows系统中,此文件应该位于 \bin,而在Linux系统中位于
该设置为JSON文件格式。以下示例显示了该设置的形式:

ORIGINAL 

"toolchains": [
{
"os": "Linux",
"vendor": "Altera",
"toolchain": "QuartusII",
"path": "/mnt/opt/Altera/15.1.0/quartus",
"license_file": "1234@samplelicenseserver.com"
},
{
"os": "Linux",
"vendor": "Xilinx",
"toolchain": "Vivado",
"path": "/mnt/opt/Xilinx/Vivado/2014.2",
"license_file": "1234@samplelicenseserver.com"
}
],
"timestamp": "2016-06-24T17:15:50"

复制并粘贴一个新工具链接。 编辑 “path”和“license_file”值。 下面示例显示了如何将一个新FPGA软件(QuartusII 16.1)添加至现有文件。

AFTER

"toolchains": [
{
"os": "Linux",
"vendor": "Altera",
"toolchain": "QuartusII",
"path": "/mnt/opt/Altera/15.1.0/quartus",
"license_file": "1234@samplelicenseserver.com"
},
{
"os": "Linux",
"vendor": "Altera",
"toolchain": "QuartusII",
"path": "/mnt/opt/Altera/16.1/quartus",
"license_file": "1234@samplelicenseserver.com"
},
{
"os": "Linux",
"vendor": "Xilinx",
"toolchain": "Vivado",
"path": "/mnt/opt/Xilinx/Vivado/2014.2",
"license_file": "1234@samplelicenseserver.com"
}
],
"timestamp": "2016-06-24T17:15:50"

添加信息后,保存文件。根据以下命令检查是否存在错误。

telnet 127.0.0.1 39942
user> .admin
admin> .global.settings
admin> .global.toolchain
admin> .global.refresh

适用于:

  • Linux 操作系统
  • Windows 操作系统

知识库编号:181820 - 最终审查:2016年09月24日- 修订:1.0

对你有帮助吗?

Leave A Comment

*
*