The ti-dsp tag has no wiki summary.
2
votes
1answer
313 views
How do I write a memory barrier for a TMS320F2812 DSP?
I've looked through the TI C/C++ compiler v6.1 user's guide (spru514e) but didn't find anything.
The asm statement doesn't seem to provide anything in this regard, the manual even warns against ...
0
votes
2answers
322 views
ARM/DSP Linux toolchain kernel setup
We have a project that requires a setup with an environment to develop embedded system as host on FC17 AMD64 and target ARM/DSP Omap l138.
So, the kernel headers have to be generated in order to bind ...
0
votes
0answers
250 views
DVSDK OMAPL138 Software Developer
I want to develop and run a program on the development kit "Zoomâ„¢ OMAP-L138 EVM"
with the DVSDK, but I can not boot the Linux image from the SD Card.
I followed the guide "OMAPL138 Software ...
0
votes
1answer
249 views
how to compile dsplink application in android ndk to develop jni wrapper
I have the dsplink application running on android omapl138 board.I can run the application in the terminal.
I have included the dsplink application in ndk and tried to compile using following ...
0
votes
2answers
536 views
How can I speed up packet capturing and packet send with jpcap
DSP send raw ethernet packets to PC than PC capturing these packets and send ack response. They are messaging MAC to MAC so there are no ip layer. I want to make real-time messaging in every 1ms. DSP ...
0
votes
3answers
808 views
How ARM and DSP processor work together?
How do an ARM and DSP processor work together , there instruction set being different , how can one write a code which is supposed to work on DSP processor such as FFT , Video Processing etc. How do ...
0
votes
4answers
251 views
Write values of different data types in sequence in memory? or, Array with multiple data types?
I am relatively new to writing in C. I have self taught myself using what resources I have found online and in print. This is my first real project in C programming. Gotta love on-the-job training.
I ...
0
votes
1answer
367 views
Code Composer and Real Time Data Exchange: problems in Target to Host communication
dear fellow programmers!
I'd really appreciate a few answers or hints concerning following problem:
The topic is Digital Signal Processing (DSP), Code Composer Studio 3.1 and Real Time Data Exchange ...
2
votes
1answer
161 views
How to use the C64x+ GMPY instruction to compute a CRC32?
How can I use the Galois Field Multiply (GMPY) instruction featured in TI C64x+ DSPs to efficiently compute a CRC32?
1
vote
2answers
3k views
Generating C code from a Matlab-Simulink model for DSP C6748
I'm trying to generate C code from a Matlab-Simulink simple model (eg.: sine wave generator with a DAC at the output). This code must be executed with Code Composer Studio
for TMS320C6748 DSP (Texas ...
4
votes
2answers
1k views
Fixed Point MATLAB DSP Algorithm
I've got a question about coding an algorithm for a Texas Instruments TMS320C64xx DSP in MATLAB:
I've got a working sloppy implementation of my filter in MATLAB. My goal is to use MATLAB Embedded ...
1
vote
0answers
54 views
Re. pcm3002 configured for 16 bit data transfers
I am trying to do a loopback program (get data in, and send it out
without any processing) on a 5416 DSK. I am using the on board
PCM3002 codec and it is configured for 16-bit data transfer. I also
...
1
vote
1answer
116 views
How to communicate between 2 DSP in TI6488
hey i am new to DSP. i have given a task to communicate between 2 DSP i.e. inter DSP communication.. for TI6488. i have some examples codes for loop back. but for non loopback how to proceed i have no ...
2
votes
1answer
482 views
Intel atom or ARM for heavy Signal processing workload
I would like to know which is a better (in performance) option :
To get a Intel Dual core atom based board
To get a Arm cortex A9 based board (pandaboard etc)
I would like to run some light ...
1
vote
1answer
513 views
OMAP 3530: How fast can I toggle an IO?
I am putting together an application for OMAP 3530 SoC. This application will run some user interface code on embedded linux and invoke waveform generation code on the DSP. The DSP and Linux sides ...
5
votes
1answer
269 views
TMS320C64x Quick start reference for programmers
Is thare any quickstart guide for programmers for writing DSP-accelerated appliations for TMS320C64x?
I have a program with custom algorythm (not the fft, or usial filtering) and I want to accelerate ...
1
vote
1answer
120 views
TI TMS320C64xx : add a PRD function
I have to add a function that will run every specified period. it seems straight forward as Code composer has a GUI tool to do that : DSP/BIOS Condig->PRD->
in the properties form I can fill in the ...
1
vote
1answer
414 views
How to program the TI TMS320C674x real-time clock using C
Intense googeling failed to turn out a single decent example of how to program the RTC.
all I could find were examples for the C5000/4000 models, which seems work differently as I was unable to ...
4
votes
3answers
747 views
TI DSP: interfacing C++ and assembly
I posted this Q to TI's 28xx DSP forum but haven't heard a response and figured maybe someone here might know.
I know how to write functions in assembly so that they are C-callable; if the ...
1
vote
1answer
149 views
TI C2800 DSPs: troubleshooting linker problems between C++ and assembly code
I have a function sincos_Q15_asm() in assembly, in file sincos_p5sh.asm with directives as follows:
.sect ".text"
.global _sincos_Q15_asm
.sym _sincos_Q15_asm,_sincos_Q15_asm, 36, 2, 0
.func 1
...
3
votes
2answers
1k views
Warning when type-casting between pointer and pointer-to-function
I am porting some C code to a TI DSP chip environment. I'm grappling with the C compiler.
I have a data structure that includes a pointer to a function. I have a function that initializes the data ...
1
vote
1answer
418 views
scons help for alternate build tools
I'm using a compiler for TI DSPs, so the default CC and LINK and AS tools make no sense. Below is an SConstruct file that works for me, I'm wondering if anyone has suggestions to make it better. Some ...