User`s guide
Reported Issues Using Embedded IDE Link™ CC Software
1.0000000e+020
and
result2 = read(ptr1)
returns
1.000000020040877e+020
The results appear to differ after the seventh decimal place. If you go to the
MATLAB workspace browser to look at the values, you see that
result1 and
result2 are the same. The apparent difference occurs because the syntax
result1 = read(cc, ptr1.address, 'single')
explicitly states that result1 is returned in single format, as controlled by
the
single input a rgum ent. On the other hand,
result2 = read(ptr1)
converts the data from ptr1 on the processor to double-precision format.
That is,
result2 = double(result1)
In general, use read() when yo u w ant t o access the data on the processo r.
Use the
read(object,...) syntax when you are manipulating data on the
processor.
Using Function Call with C28x Processors
WhenyouusethefunctioncallcapabilitywithanyC28xprocessor,youmust
disable the watchdog timer or the function call process doe s not work.
RTDX Demos Do Not Run on C6727 PADK
Limitations in the demo files prevent you from running the RTDX demos on
your C6727 Professional Audio Development Kit (PADK).
B-13