Sign in

username or email:

password:



Not a member?
Forgot your password?

Search c6x



Search tips

Subscribe to c6x



Ads

Discussion Groups

See Also

Embedded SystemsFPGA

Discussion Groups | TMS320C6x

Technical discussions about the TI C6000 DSPs (including the c62x, c64x and c67x DSPs).

Search Results for "mem_alloc"

  

Post a new Thread

Re: malloc   [2 Articles]
0

- Jun 22 2003
If you are using BIOS you should use MEM_alloc(). I had problems when I used malloc along with MEM_alloc(). You have to be careful when using the BIOS configuration... Re:  malloc

Example on MEM_alloc OR MEM_calloc OR MEM_valloc   [2 Articles]
0

norr...@yahoo.co.uk - May 17 2006
Hi guys, Really appreciate this forum since the first time I join this forum :) We always found in this forum about the issue of allocating memory dynamically. Can anyone give ... Example on MEM_alloc OR MEM_calloc OR MEM_valloc

MEM_alloc   [6 Articles]
0

Alexandre Freire da Silva Osorio - Oct 1 2002
Hi, My application allocates large buffers dinamycally so it should be placed in off-chip memory. In CCS help I read about MEM_alloc and MEM_free and I used it ... MEM_alloc

memory allocastions in DSP/BIOS   [5 Articles]
0

alon...@rafael.co.il - Nov 15 2005
Hi all, Using the DSP/BIOS operatinf system, I have hard times with the memory allocations. I want to use 'MEM_alloc' / 'MEM_free' instead of using 'new' and 'delete' (I ... memory allocastions in DSP/BIOS

Mem_Alloc and tsk 62x   [3 Articles]
0

sophisblu - Apr 22 2007
What is the problem? I'm trying to allocate external SDRAM memory in a TSK function defined in a Configuration CDB file. However Mem_alloc in TSK function fails. To test Mem_allo... Mem_Alloc and tsk 62x

Mem_Alloc and tsk 62x
0

sophyan - Apr 23 2007
Thanks for your help Jeff, I've created a 5sec timer that "simulates" the interrupt that you suggested. In the timer function I am able to call the Mem_alloc and Mem_free with ... Mem_Alloc and tsk 62x

how to use MEM_alloc without opening a DSP/BISO Config !   [4 Articles]
0

shia_son - Oct 24 2003
MEM_alloc(SEG0, BUFSIZE, 0); i dont want to open DSP/BISO Config to specify the SEG0 is there any other way !! ... how to use MEM_alloc without opening a DSP/BISO Config !

MEM_alloc( ) - unidentified item   [4 Articles]
0

".dorian" - Nov 5 2007
hi everybody, in the DSP/BIOS settings I defined a heap in the ISRAM memory (right click > properties) and gave it a label (_intHeap). I try to allocate some memory on that ... MEM_alloc( ) - unidentified item

Memory allocation in C6711
0

motti_ch1 - Aug 16 2004
Hello. How do I allocate memory in the SDRAM? Is this example correct: extern far Int SDRAM; void main(void) { float *p1,*p2; p1=(float *) MEM_al... Memory allocation in C6711

MEM_alloc + pci.h   [2 Articles]
0

cesa714 - Apr 22 2003
I've attempted to use DSP/BIOS since i need to use MEM_alloc my problem is that when i try to use pci.h from communcation, pci transfers don't work. When i don't us... MEM_alloc + pci.h

MEM_alloc arbitration   [3 Articles]
0

pablo fraile - Jan 28 2002
Hi all, I'm developing an app with a few tasks; one of them initializes some buffers in IDRAM and SDRAM using MEM_alloc during task initialisation, and then uses ... MEM_alloc arbitration

Re: Monitoring Memory usage in Code Composer Studio
0

- May 12 2003
In a message dated 5/11/2003 10:19:35 PM Eastern Daylight Time, writes: > Thanks.. > > But sorry I didnt the put the question right..I want to dynamically w... Re:  Monitoring Memory usage in Code Composer Studio

Initializing memory   [4 Articles]
0

Bushnaq - May 21 2008
Hello, I am working on a project that compares the performance of FPGA's to DSP kits. I am implementing a 2D 5/3 DWT using both kits. I am using TMS320C6416 DSK and CCS 2.... Initializing memory

RE: Fragmentation problem at dynamic memory allocation   [2 Articles]
0

Mohsin - Jun 9 2005
Hi Alon, Its better to use MEM_alloc function to allocate memory under DSP/BIOS environment. MEM_alloc provides option to specify which segments of the memory should be us... RE:  Fragmentation problem at dynamic memory allocation

MEM_alloc problems
0

kbre...@mail.utexas.edu - Mar 6 2008
Here is my code: #include #include #include "shared.h" #include #include #include #include #include #define SDRAM 0x80000000 interrupt void tx_... MEM_alloc problems

Why can't we use MEM_alloc in SWI?
0

vuongtuyettien - May 25 2005
Hi all, I mistakenly used MEM_alloc in a PRD function (which is considered SWI). What happen was MEM_free later called in another TSK blocked the caller forever. I used... Why can't we use MEM_alloc in SWI?

Re: aligned malloc
0

Guy Eschemann - May 2 2006
If you're using DSP/BIOS, have a look at the MEM_alloc() function in the DSP/BIOS API. Its third parameter allows you to specify the alignment. Regards, Guy. On 4/29/06, esbn... Re:  aligned malloc

memory alloc from HWI or SWI
0

tino...@yahoo.it - Nov 16 2006
Hi all, I read that MEM_alloc can't be used from HWI or SWI... and also BUF_create can't be used from HWI or SWI. So I'm searching info about allocating memory from HWI or SWI... memory alloc from HWI or SWI

Dynamic memory allocation - help!   [2 Articles]
0

motti_ch1 - Aug 16 2004
Hi there! How do I allocate memory in DSK C6711? I've to allocate a large amount of memory (about 100-500 thousands of KB).. Do I have to use the mem_alloc i... Dynamic memory allocation - help!

RE: EMIF read and SDRAM
-6

Jean-Michel MERCIER - Sep 24 2003
Werner wrote : > #pragma DATA_SECTION(image_1,"SDRAM$heap"); and then in my main > after the while Arg! Very bad usage of this. 1/ If you want to al... RE:  EMIF read and SDRAM

Problems with Dynamic Memory Allocation in 64x   [3 Articles]
0

Ramkumar R - Nov 9 2005
Hi   I use a 64x processor. My application involves the usage of upto 4 buffers each of size 5120 bytes. Basically these buffers contain the data for EDMA t... Problems with Dynamic Memory Allocation in 64x

malloc, free and SWI's
0

Brad Cadle - Aug 3 2001
Okay Folks,     I had used SPRU403A for a long time as my DSP/BIOS reference.  I recently downloaded SPRU403C and noticed a few things.    ... malloc, free and SWI's

Re: c6400 2D FFT using dsplib
0

Peter Bone - Jul 17 2007
> With C64x devices DMA can be useful for both int-ext and int-int mem transfers. > > On any DSP, 2D FFT is not going to be difficult -- DSP devices are built for FFTs > ... Re: c6400 2D FFT using dsplib

fread into SDRAM   [4 Articles]
0

limc...@gmail.com - Nov 15 2009
Hi guys, I'm using DSK6713 to read a data(WAV) file and produce the audio via aic23. The problem i facing is that the data file is too big to store in IRAM. I'm trying to read t... fread into SDRAM

Using DSP/BIOS for Speech recognition
0

abdul muqeet - Feb 21 2007
hi ,this is muqeet pursuing my mtech n working on a project that is Speech recogniton using DSK 6713.I ve used the audio example as a reference.which is using the DSP/BIOS.This aud... Using DSP/BIOS for Speech recognition

Re: how to ensure that the free fucntion is freeing the memory
0

Sri - Apr 27 2006
Hi Bharath, You can do a couple of things- 1. First ensure that you are making the call of free function in your whole code, normally programmers keep in view the success case... Re:  how to ensure that the free fucntion is freeing the memory

MEM_calloc and it's return value
0

NOR RIZUAN MAT NOOR - May 23 2006
Hi everybody! I have a few questions about MEM_alloc (again!). :D I have write one simple program to allocate memory to store pixel coordinate in memory. I used DSP/BIOS, a... MEM_calloc and it's return value

Re: Memory Allocation :Help
0

Sukesh - May 8 2007
Deepti, The error "stack overflow " you are getting is due to use of stack more than specified in the linker command file. Stack has critical role at the time of context switc... Re:  Memory Allocation :Help

Memory Copy on DM642   [3 Articles]
0

Imran Akthar - Jul 3 2004
Hi all, m using DM642 board and CCS 2.21 version. I m reading a file whose size is 1MB(uinsg fread()in host PC) and writing it to the External RAM ..SDRAM . wha... Memory Copy on DM642

Issue understanding this code   [7 Articles]
0

balasubramanian vaidhyanathan - Sep 24 2008
Hi     Below is the code I yanked out of TI BIOS User guide. Now what i cant understand is this, the writer task has an id. In the document it says there are three writers. So do... Issue understanding this code

Re: Doubts in JPEG project
0

Giovanni Parodi - Oct 23 2007
Hi I'm sorry but I forgot to explain in detail the structure of my code. In fact the internal memory is used by heap and 64 KB of L2 cache. However in order to correctly allocat... Re:  Doubts in JPEG project

RE: DSP/BIOS and Heap
0

Maughan, Thomas - Oct 29 2003
The recommendation is to use the thread safe MEM_alloc() that is included with BIOS instead of malloc(). You would then remove the -heap0xA... and define your heap ... RE:  DSP/BIOS and Heap

Optimization Hints needed
0

".dorian" - Dec 16 2007
first call: (file encoder.c) ------------ static inline void x264_reference_update( x264_t *h ) { int i; x264_fdec_deblock( h ); /* expand border */ x264... Optimization Hints needed

Re: Cache with DMA
0

Jagadeesh Sankaran - Nov 20 2003
#YEO HAN KWANG# wrote: > > Hi, > > The question I'm trying to figure out is: "Why the need to invalidate the * source * ?" > > The need to invalidate the ... Re:  Cache with DMA