I think I am having an issue with the logic diagram of how the data is shifted in and out of the DAC. I am using the Load controlled update method and sending 255 to the DAC so it should report the full reference voltage. Below is a 'generic' program of what I am telling the DAC to do, can anyone enlighten me as to whether or not I am sending the data incorrectly?
---INITIALIZE---
HIGH LOAD
LOW LDAC
---SENDING DATA---
DO
LOW LOAD (allows data to be sent from the serial input to the desired DAC?)
HIGH LOAD
#255 being sent out
LOOP
Any suggestions?