Effacer les filtres
Effacer les filtres

Connecting Two Zynq706 on Single PC for Synchronized output

2 vues (au cours des 30 derniers jours)
Hassan Khan
Hassan Khan le 22 Août 2022
Commenté : Hassan Khan le 30 Août 2022
I want to connect two Zynq on sigle PC . I have implemented the same model on both ZYNQ706 on seprate PC but now i want to operate both zynq board simultaneously for a synchronized output. how is it possible to communicte two ZYNQ 706 on same PC . Simply i m trying to to use the shared resources of two ZYNQ board .

Réponse acceptée

Abhijeet Gadkari
Abhijeet Gadkari le 26 Août 2022
Modifié(e) : Abhijeet Gadkari le 26 Août 2022
Hello Hassan,
The IP Address for Zynq hardware is set when you create the zynq object.
If you want to communicate to two different Zynq boards using MATLAB, you can call the zynq function with different arguments right before you want to connect to a different board.
zc7061 = zynq('linux','192.168.1.10','root','root')
zc7062 = zynq('linux','192.168.1.20','root','root')
You can possibly do the same by calling this function, in InitFcn callback of your Simulink model, that will update the IP Address for that run.
-Abhijeet

Plus de réponses (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by