Skip to content

Commit

Permalink
Set correct data types for board_device_index and speed
Browse files Browse the repository at this point in the history
  • Loading branch information
olofk committed Sep 22, 2022
1 parent 00ea427 commit 8dbae8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions edalize/ise.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,12 @@ def get_doc(cls, api_ver):
},
{
"name": "speed",
"type": "String",
"type": "Integer",
"desc": "FPGA speed grade (e.g. -2)",
},
{
"name": "board_device_index",
"type": "String",
"type": "Integer",
"desc": "Specifies the FPGA's device number in the JTAG chain, starting at 1",
},
],
Expand Down
2 changes: 1 addition & 1 deletion edalize/quartus.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def get_doc(cls, api_ver):
},
{
"name": "board_device_index",
"type": "String",
"type": "Integer",
"desc": "Specifies the FPGA's device number in the JTAG chain. The device index specifies the device where the flash programmer looks for the Nios® II JTAG debug module. JTAG devices are numbered relative to the JTAG chain, starting at 1. Use the tool `jtagconfig` to determine the index.",
},
{
Expand Down

0 comments on commit 8dbae8c

Please sign in to comment.