Page 1 of 1

FPGA Project permanently implementation on RP

Posted: Fri Jul 03, 2015 9:57 am
by Erzengel
Hello,

I have designed a little FPGA Project. I can make a bin file and copy this file to Red Pitaya /tmp.
After cat /tmp/*.bin >/dev/xdevcfg it works fine.
I know this is only a temporary inclusion, but how can I implement the fpga project permanantyl?

Re: FPGA Project permanently implementation on RP

Posted: Fri Jul 03, 2015 12:35 pm
by Arnold
use another directory instead /tmp ? e.g. /home ...

Re: FPGA Project permanently implementation on RP

Posted: Fri Jul 03, 2015 8:25 pm
by Nils Roos
You basically have two options, either store your bin file in a permanent location - ie somewhere under /opt - and then put the cat command into /opt/etc/init.d/rcS, or build a new boot.bin file and replace the original with that.

The second is the cleaner method. You can find more info on how to achieve it for example in this thread.

Re: FPGA Project permanently implementation on RP

Posted: Tue Jul 07, 2015 7:55 am
by Erzengel
Oh Thank you very much!

It helps me al lot. Now I have a new boot.bin and it works :) .