Spartan Edge Accelerator "vivado_tutorial" files

I’m going through the tutorials to try getting my Spartan Edge Accelerator working. I’ve gotten it connected via JTAG, but I’ve run into a snag with the demo code. The instructions say:

Where are these files? Which folder do I find them in? Is there a repo I should have downloaded?

While I’m still hoping to get the simple tutorial sources you refer to in the wiki, here’s a very very simple example I put together. It turns off LED1/2 based on USER1/2.



I used the constraints file from the spi2gpio example: <LINK_TEXT text=“https://github.com/sea-s7/Demo_project/ … i2gpio.xdc”>https://github.com/sea-s7/Demo_project/blob/master/spi2gpio/spi2gpio.xdc</LINK_TEXT>



This is my simple test.v module that seems to work fine:
[code]
`timescale 1ns / 1ps
module test(
input osc_clk,
input[4:5] gport_e, //buttons
output[6:7] gport_b //leds
);
reg clk;

always @(posedge osc_clk) begin
    clk = ~clk;
end

reg  [0:1] led_enable;
always @(posedge clk) begin
    led_enable = gport_e;
end
assign gport_b = led_enable;

endmodule
[/code]

Thanks for updating the wiki docs with the needed info and repo! <LINK_TEXT text=“https://github.com/SeeedDocument/wiki_e … 2a3f51d286”>https://github.com/SeeedDocument/wiki_english/commit/9581b9ee9668634eeb16e26158fb5e7115caf229#diff-e3e2a9bfd88566b05001b02a3f51d286</LINK_TEXT>



It would have been nice to get a message or reply when you brought it online!