15 lines
427 B
Matlab
15 lines
427 B
Matlab
%% Manual Board Solution Files Download
|
|
h = zynq('linux','192.168.1.101');
|
|
h.putFile('design_1_wrapper.bit','/mnt');
|
|
h.putFile('soc_prj.output.dtb','/mnt');
|
|
h.putFile('RF_Init.cfg','/mnt');
|
|
h.putFile('init.sh','/mnt');
|
|
|
|
%%
|
|
h.system('fw_setbitstream /mnt/design_1_wrapper.bit');
|
|
h.system('fw_setdevicetree /mnt/soc_prj.output.dtb');
|
|
|
|
pause(0.1)
|
|
h.system('cp /mnt/RF_Init.cfg /mnt/hdlcoder_rd/RF_Init.cfg');
|
|
|
|
h.system('reboot'); |