Post Go back to editing

AD9371.H

Category: Software
Product Number: AD9371

Dear team,

I am using no os repository for ZC706+ADRV9371, I am trying to set custom Tx frequencies each time with the setup. But for the program to run , It requires AD9371.h, AD9371 initialising functions. Can anyone guide me with where to get these library files.

Regards,

Prakash

Thread Notes

Parents Reply
  • Yes, we can change the frequency during  runtime. Keep the radio in OFF state and then set the desired RF PLL frequency.

    Link.Mykonos.radioOff()

    Link.Mykonos.setRfPllFrequency(Link.Mykonos.PLLNAME.TX_PLL, 100000000)

    Link.Mykonos.radioOn()

    rfpll=Link.Mykonos.getRfPllFrequency(Link.Mykonos.PLLNAME.TX_PLL,1)
    print rfpll

Children