fusesoc / blinky

Example LED blinking project for your FPGA dev board of choice
MIT License
164 stars 71 forks source link

Opos6ul sp #5

Closed Martoni closed 5 years ago

Martoni commented 5 years ago

OPOS6UL_SP is an i.mx6ul board made by Armadeus System that include a Spartan6 fpga.

This is a pin-to-pin compatible APF27 board.

I managed to generate the bitstream blinky.bit but the line :

fusesoc run --target=opos6ul_sp fusesoc:utils:blinky

End with an impact error :

   drivers. See Answer Record 22648.
Cable connection failed.
Connecting to cable (Parallel Port - parport3).
 Linux release = 3.16.36-falcot.
WARNING:iMPACT -  Module windrvr6 is not loaded. Please reinstall the cable
   drivers. See Answer Record 22648.
Cable connection failed.
Cable autodetection failed.
ERROR: Failed to run fusesoc:utils:blinky:0 : 'impact' exited with an error code
olofk commented 5 years ago

Thanks! This looks good to me. The error you see is because FuseSoC also tries to program the board after creating the bitstream. Long story behind that, but it is likely that this will be changed in the future so that it stops after creating the bitstream instead. You can get rid of this by running fusesoc run --setup --build --target=opos6ul_sp fusesoc:utils:blinky instead.

Picked and pushed!