Other Parts Discussed in Thread: LMK04828, LMX2582, ADC12DL3200
I am able to read/write ADC registers using the 8510.ADC12DL3200EVM.zip I downloaded from a previous thread.
I also would like to configure the clock chips so I do not need to use the ADC12DLxx00EVM GUI at all.
The example code only read/write from the ADC but it does set up handles to the LMK04828 LMX2582 devices
so I tried to use them to read a few registers but did not get the same values as seen in the ADC12DLxx00EVM GUI.
value = adcReadRegs(TI_FTDI,ADC12DL3200,addr_list) # returns list of integers
print('readReg(TI_FTDI,ADC12DL3200,addr_list): ',value)
addr_list = [0x000,0x002,0x100,0x103]
value = adcReadRegs(TI_FTDI,LMK04828,addr_list) # returns list of integers
print('readReg(TI_FTDI,LMK04828,addr_list): ',value)
addr_list = [0x000,0x009,0x00a,0x00b]
value = adcReadRegs(TI_FTDI,LMX2582,addr_list) # returns list of integers
print('readReg(TI_FTDI,LMX2582,addr_list): ',value)
readReg(TI_FTDI,ADC12DL3200,addr_list): [48, 0, 3, 34, 0, 160] readReg(TI_FTDI,LMK04828,addr_list): [255, 255, 255, 255] readReg(TI_FTDI,LMX2582,addr_list): [0, 0, 0, 0]