Beagleboard: How do I send/receive data to/from the DSP?
Posted
by
snakile
on Stack Overflow
See other posts from Stack Overflow
or by snakile
Published on 2011-01-15T10:14:09Z
Indexed on
2011/01/17
19:53 UTC
Read the original article
Hit count: 294
I have a beagleboard with TMS320C64x+ DSP. I'm working on an image processing beagleboard application. Here's how it's going to work:
- The ARM reads an image from a file and put the image in a 2D array.
- The arm sends the matrix to the DSP. The DSP receives the matrix.
- The DSP performs the image processing algorithm on the received matrix (the algorithm code uses about 5MB of dynamically allocated memory).
- The DSP sends the processed image (matrix) to the ARM. The arm received the matrix.
- The arm saved the processed image to a file.
I'v already written the code for steps 1,3,5. What is the easiest way to do steps 3+4 (sending the data)? Code examples are welcome.
© Stack Overflow or respective owner