Hello,
beagle@BeagleV:/usr/share/beagleboard/gateware$ sudo ./change-gateware.sh ~/artifacts/bitstreams/my_custom_fpga_design
Changing gateware.
No gateware file found.
This is where I am at currently. The fire-gate
repo clone from gitlab has not created the gateware
so far.
Seth
P.S. If you need additional data, please let me know:
#-------------------------------------------------------------------------------
# Import HDL source files
#-------------------------------------------------------------------------------
import_files -hdl_source {script_support/components/CAPE/fire-cape/HDL/motors.v}
import_files -hdl_source {script_support/components/CAPE/fire-cape/HDL/P8_IOPADS.v}
import_files -hdl_source {script_support/components/CAPE/fire-cape/HDL/P9_11_18_IOPADS.v}
import_files -hdl_source {script_support/components/CAPE/fire-cape/HDL/P9_21_31_IOPADS.v}
import_files -hdl_source {script_support/components/CAPE/fire-cape/HDL/P9_41_42_IOPADS.v}
import_files -hdl_source {script_support/components/CAPE/fire-cape/HDL/CAPE.v}
and… motors.v
`timescale 1ns/100ps
module motors(
input clk,
input resetn,
output motor
);
reg [22:0] counter;
assign motor = counter[22];
always@(posedge clk or negedge resetn)
begin
if(~resetn)
begin
counter <= 16'h0000;
end
else
begin
counter <= counter + 1;
end
end
endmodule
and CAPE.v
//--------P9_41_42_IOPADS
P9_41_42_IOPADS P9_41_42_IOPADS_0(
// Inputs
.GPIO_OE ( GPIO_OE_const_net_3 ),
.GPIO_OUT ( GPIO_OUT_const_net_3 ),
// Outputs
.GPIO_IN ( ),
// Inouts
.P9_41 ( P9_41 ),
.P9_42 ( P9_42 )
);
//--------motors
motors motors_0( //
.clk ( PCLK ), //
.resetn ( PRESETN ), //
.motor ( MOTOR ) //
);
endmodule
wire PCLK;
wire PRESETN;
wire MOTOR;
wire [31:0] APB_SLAVE_PRDATA_net_0;
wire [27:0] GPIO_IN_net_1;
//--------------------------------------------------------------------
// Concatenation assignments
//--------------------------------------------------------------------
assign GPIO_OE_net_0 = { 16'h0000 , GPIO_OE[27:6], 1'b1, GPIO_OE[4:0] };
assign GPIO_OUT_net_0 = { 16'h0000 , GPIO_OUT[27:6], MOTOR, GPIO_OUT[4:0] };
My busted config. in the artifacts.zip
file seems to be done and over because of me but I do not see where I made this error.
Seth
P.S. Please send guidance.