Closed ozzyrob closed 4 months ago
thanks, have adding new option to the boardconfig:
"clock": {
"speed": "50000000",
"pin": "p55",
"startup": "CClk"
},
if you send me your .ucf file, maybe i can add the missing stuff to the generator 'riocore/generator/pins/ucf/pins.py'
Dude you are awesome ! Thank you so much Something may seem a little different in this file as I'm using a different Spartan 6 board pins.ucf.txt
New Board for Mimas Mimas Spartan 6 Product Page Mimas.json.txt
Basic config for the board config-test.json.txt
I have to thank you :)
I have added an option for the pins, at least for ISE for now, to be able to set my own values for "screw", "drive" and "iostandard": Example:
{
"type": "stepdir",
"name": "Joint0",
"pins": {
"step": {
"pin": "BOB_A:P2",
"screw": "FAST",
"drive": 24,
"iostandard" = "LVTTL"
},
"dir": {
"pin": "BOB_A:P3"
"drive": 24,
"iostandard" = "LVTTL"
}
},
"is_joint": true
},
now it is also possible now to set this values in the plugin.py files and i will try to set some good defaults there:
self.NAME = "blink"
self.VERILOGS = ["blink.v"]
self.PINDEFAULTS = {
"led": {
"direction": "output",
"drive": 8,
},
}
defaults for outputs are :
IOSTANDARD = LVTTL | DRIVE = 4 | SLEW = SLOW
for inputs:
IOSTANDARD = LVTTL
Once again that's great work, and fast. Should "screw" be "slew" ?
There is also a PULLUP or PULLDOWN attribute, would it be worth including it for the Spartan 6 Spartan-6 FPGA SelectIO Attributes/Constraints
sorry, 'slew' :)
pullup/pulldown support for ucf is added
pullup/pulldown are two boolean options now, i think i rewrite this part:
from:
pullup: true pulldown: false
->
pullmode: "UP" pullmode: "DOWN" pullmode: "NONE"
Perfect, man you work fast.
Just a little off topic if that's ok, with UDP what's the better option WT32_ETH0 bridge solution or a Wiznet W5500 module ? I have both modules available for use.
at the moment i think WT32_ETH0, it's little bit slower but rock solid (last test: zero packet loss in 2days)
but the W5500 is well suited for testing, no real problems, no connection interruptions
Okay I'll give it a go. Thanks
Gave the W5500 ago, ping times about half of WT32_ETH01, but connection not as stable, once again SPI cables were not the best, long and floaty. Once I get my preferred dev board back I'll give it a proper try.
Just a heads up, no need to act on it right away as I'm still slowly experimenting with the spartan6. Had to change the startup clk in the Makefile as the jtag clk option wouldn't config when writing to flash (found this out while using your FPGA-Blinky repo, gotta get the first flashing LED to appease the Gods). Have also been setting the Pin specs in the pins.ucf file, have been taking these from the Mesa ucf files.