This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

DSP28335驱动DAC7724中的问题

Other Parts Discussed in Thread: DAC7724

我是用DSP28335驱动DAC7724芯片,12根数据线和2根地址线我是直接和DSP的外部接口相连,然后LDAC、RESET、CS、RW四个引脚是配置普通的IO口来控制,输出一直是-10V,请问这是什么情况?一下是我的IO口配置

   InitXintf();  

   RESET=LOW;   

 DELAY_US(10);

    RESET=HIGH;

  while(1)

   {      LDAC= HIGH ;    

 DELAY_US(10);  

 RW=LOW;    

CS=LOW;   

  CHA_DATA =3000; //写进数据

  DA_CHA = CHA_DATA;//  设置为通道A输出

  DELAY_US(2);   

  LDAC= LOW ;  //载入数据

  DELAY_US(5);

 LDAC= HIGH ; 

  DELAY_US(10);

   }