How to resolve error ‘Not enough memory on the target to

Technical Source
2 min readSep 17, 2021

--

How to resolve error ‘Not enough memory on the target to process the packet’ while working on TI C2000 in external mode?

I want to make a real-time trace of several signals in my model while running with a sample rate of 10 kHz on a TI C2000 in external mode. My problem is that the real-time trace doesn’t behave as expected, although I have set the heap_size to 0x4000.

  • Setting the duration in the “External Signal & Triggering” window of my model to 1000, works fine and I receive 1000 consecutive data points.
  • Setting the duration to 2000, produces the error message “Not enough memory on the target to process the packet: EXT_SELECT_SIGNALS “ in the Diagnostic Viewer when I press the “Arm Trigger” button in the “External Mode Control Panel” and no values are transferred from the C2000 to the host-PC. Note that I cannot reduce the sample rate as the controller must work in real-time

ANSWER

Matlabsolutions.com provide latest MatLab Homework Help,MatLab Assignment Help for students, engineers and researchers in Multiple Branches like ECE, EEE, CSE, Mechanical, Civil with 100% output.Matlab Code for B.E, B.Tech,M.E,M.Tech, Ph.D. Scholars with 100% privacy guaranteed. Get MATLAB projects with source code for your learning and research.

You have encountered two limitations with your application:

  1. Increasing the “Duration” allows the capture of large real-time buffers. These buffers use heap section to allocate memory. A high value of “Duration” may result in Not enough memory on the target to process the packet warning, and consequently cause no data to be uploaded from the target to the host computer.
  2. You are requesting for a higher heap size by using heap_size=0x4000. With this change the section that stores the heap section (.sysmem or .esysmem) is not big enough to satisfy your request, even though your target has sufficient memory.

To resolve the underlying problem, you need to provide more heap space to satisfy your request by adding more sections to the heap area (.sysmem/.esysmem) in your .cmd file. This can be done, by editing the linker file present in the location “matlab\toolbox\target\supportpackages\tic2000_concerto\src\c28335.cmd”.When you open the .cmd file, you will see something like the following:

SEE COMPLETE ANSWER CLICK THE LINK

--

--

Technical Source
Technical Source

Written by Technical Source

Simple! That is me, a simple person. I am passionate about knowledge and reading. That’s why I have decided to write and share a bit of my life and thoughts to.

No responses yet