Hi,
I'm porting C54 code on C55 simulator and below is an example of
where I'm having pbs.
XC #2, UNC ; prevent interrupt following STLM
STLM A, SP
SSBX SX...
Hi all,
The Cpu&Peripherals book says that there are some restricitons using
STLM when writing to an AR. One of these is that*
"the next instruction must write...
Dear all,
Should we use the "xc 1,unc" + "ssbx intm" instead of mere "ssbx intm"
to avoid a potential pipeline bug?
For those of you who happened to have re...
Hello Ulrich,
Saturday, January 04, 2003, 8:25:14 AM, you wrote:
It would be a solution to declare func as
func(int *x, int *a, int *y);
Then you'll ge...
Thanks for your repply Jeff.
The reason why I tried to keep the project with near calls as default was t=
hat I
wanted to avoid changing the assembly vocoder functions (I didn...
Hi
I am working on a code to convert float to Q15. I am working with just 4 samples. I have stored the 4 coefficients in coeff[4]. the converted value is going to get stored in...
I had much the same problem for a filter to downsample audio from 32kHz to
16kHz; here's my solution for C5402. The result runs about 14 times faster
than the origi...
Hi,
I'm trying to implement a simple FIR filter using circular buffers on
c54x dskplus. Below is my code modified from original c54x EVM code.
The main problem...
I am trying to implement a UART based on the TI app note:
Implementation of a Software UART on TMS320C54x Using General-Purpose I/O Pins
The receive part work...