Hi Guys, I am proud to tell you that linux on trimedia has passed LTP (Linux Test Project, see http://ltp.sourceforge.net/). I have validated tmlinux using LTP...
Hi all, I have built a git repos for linux kernel of tmlinux on github.com. You can get the whole linux kernel source code from github.com using the following...
Dear all experts and friends, I want to use PNX1700 output 2ch CVBS with SAA7121. So PNX1700 must output 2ch ITU-656 video stream. In datasheet, when...
Dear experts, I'm trying the execute the application *exolIRadio *with PNX1500, NDK5.5, TCS5.01 It compiled well, but during the execution I got this error...
The application 'exolRadio' is crashed, and therefore the connection to the host is broken. I did not try this example before. But from my experience, it maybe...
the assertion from freadInstanceSetup is likely "can't open file". That has an error code ending with 0x800. Chuck Peplinski Media Processing Software...
Hello, Thanks for your reply! I added some code to mount FAT32, but it still didn't work. tmErrorCode_t status; ptmFat32_Instance_t vol = Null; status =...
Hello, Really sorry for my last dumb email. It can read file smoothly now! However, I cannot hear anything from the speaker. Here is some debug-tracing...
... Hi Nasir, what platform are you working on ? PNX1500 / PNX1700 maybe ? And what FFT Size are you interested on ? I do have highly optimized FFT libraries...
There was formerly an FFT work group in this user group. I see that the directory is now empty. Maybe one of those members can post his latest? Looking at a...
I am sorry a spam message was sent through this group. We have been mercifully clear of spam for a long time but some will always get through. We get a lot of...
Hi, attached is my talk from the 2007 user group meeting. I must admit that I didn't made any progress with FFT since then. hth Frank [Non-text portions of...
Hi, I have developted a standalone PNX1300 board in a small scaled. I decided to product it as an industrial board. If anybody has a comment for making it more...
Hi, I'm just curious about the reasons you selected PNX1300 which is 3 generations behind the latest available PNX1005? Best Regards, Alfred Lee ... From:...
Hi dears, I have worked for years with TM1100 and TM/PNX1300 and now I have decided to upgrade to PNX1700. I do not know which board is more suitable and...
Hi Ehsan, First a disclaimer, I work for Momentum Data Systems. For what it's worth, there are a few MDS employees active on this list. One way or another you...
My suggestion is to contact your local NXP sales rep and ask him or her what it takes to get started on the newer PNX1005. Chuck Peplinski Media Processing...
Hi, I was looking for some help on tmact usage. Is it possible to generate data for particular frame from ctf file using tmact -r option. Like, I've ctf file...
The CTF file is in fact an instruction trace. If you can identify where the 5th and 7th frames start and end, you can edit that file. How about if you edit...
An array of size 6 Mbytes is gloabally declared in a C file (of course not initialized) & used also. If I run tmsize on .o of this file it doesn't show that...
I would make a guess that the compiler is smart and knows about the declaration without initialization and took a shortcut to save the address and size and...
I think Alfred is right. Why not figure out how much memory is used by seeing how much is available on the heap after the program starts? Call malloc with...
initialized data ends up in your .data segment uninitialized data ens up in you .bss segment. .data segment ends up taking space in your image. .bss does not...
Hello, Thanks for your responses, but I still have some doubts. ... But how can I initialize an array of 6 Mbytes. I tried that using static array_name[6MB]; ...
Thanks for your reply. But this is bit confusing. ... True. ... This is where I'm seeing problem. My 6MByte arrayis not initialized & is size is not reflected...
Hi Mahesh (and everyone else - I've been lurking quietly on this list for a long time now!), Chuck and Alfred are right that whether the array is initialised...
The formatting seemed to be lost last time I sent this message - so I'll try sending it again... Hi Mahesh (and everyone else - I've been lurking quietly on...
Hi, here are my 5 ct.: You can use tmcc -K and read the .s file to see what the compiler does. For Richard's declarations I get .data .global _inited .align 1 ...