Hello everyone,
I am using McBSP0 on the C6713 to drive an SPI DAC (TI's DAC8501).
I noticed that if I do the following:
while(!MCBSP_xrdy(DAC_McBSP_Handle));
MCBSP_write(DAC_McBSP_Handle, 0x2222);
while(1);
The McBSP keeps writing the value out repeatedly. Is is supposed to do this? or is it something in the configuration?
Any help will be very much appreciated.