Hi, I'm beginner in this field so i need some help.
I created simple schematic project, added I/O pins to markers, and successfully compiled it (synthesize).
Next i generated XSVF file, and download it to my XC9572XL with buspirate without any issue.
But it is not working in real world.
I probably miss something.
Whole project is located in attachment.
And any help is appreciated.
Best Regards
Marko
Hi Marko,
Sorry it took me a while to respond, I had to update to v13 to open your files.
I compiled and ran the simulation. It simulates ok, but I noticed a XLN_3 in the sim - the compiler is turning youir schematic into this:
module main(XLXN_1,
XLXN_2);
input XLXN_1;
output XLXN_2;
wire XLXN_3;
IBUF XLXI_1 (.I(XLXN_1),
.O(XLXN_3));
(* SLEW = "SLOW" *)
OBUF XLXI_2 (.I(XLXN_3),
.O(XLXN_2));
endmodule
wire XLXN_3;
For some reason it is creating a third pin. The compiler eliminates it, but this could be an issue. I'm going to try it out on my dev board now.
My own compile worked fine (attached). I'll test yours now too.
Your compile did not work. I'd guess that it was a problem with the XSVF export. I notice that it was automated in your project, so I ran IMPACT and did a manual export and it worked. When you setup the XSVF export be sure to specify the .jed file for the correct project. Impact likes to select some strange default directory on my system and it has caused me problems in the past.
Hello,
I tried again but it is not working.
Here is step by step how i export xsvf file.
- open iMPACT > file > new project
- create new project > Select prepare boundary scan > drop down select XSVF for output
- write name for XSVF file
- add correct JAD file (double checked path to file, so correct jed file is selected)
- select XC9572XL as target> right click on target > program
After that i receive message that XSVF is generated
Maybe this new ISE Suite isn't working properly....
Thanks
Marko
Hi Marko,
That sounds perfect. Make sure the erase/verify options are selected when you target->program.
Yup, I checked that.
Definitely there is problem in ISE...
Tomorrow i will try it on other computer.
Maybe it is not compatible with Windows 7 64 bit...
Regards
Marko