- Added utilities for frequency planning

- Changed freq plane to: Fs 4096, int/dec 8X, Mixers 768
This commit is contained in:
canisio
2026-03-27 12:50:10 -03:00
parent d5bbdfb435
commit 584db6233c
22 changed files with 838 additions and 0 deletions

15
utilities/programBoard.m Normal file
View File

@@ -0,0 +1,15 @@
%% 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');