Search the web
Sign In
New User? Sign Up
trimedia · TriMedia User Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 11792 - 11822 of 11824   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11792
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...
Guo Hongruan
cameguo
Offline Send Email
May 18, 2009
1:11 am
11793
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...
Guo Hongruan
cameguo
Offline Send Email
May 26, 2009
2:51 am
11794
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...
chying_shi
Offline Send Email
Jun 7, 2009
7:01 am
11795
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...
Vy Hua
vyhlt
Offline Send Email
Jul 2, 2009
2:18 am
11796
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...
yangalvin
Offline Send Email
Jul 2, 2009
5:30 am
11797
the assertion from freadInstanceSetup is likely "can't open file". That has an error code ending with 0x800. Chuck Peplinski Media Processing Software...
Chuck Peplinski
chuckpeplinski
Online Now Send Email
Jul 2, 2009
8:11 am
11798
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 =...
Vy Hua
vyhlt
Offline Send Email
Jul 6, 2009
4:36 am
11799
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...
Vy Hua
vyhlt
Offline Send Email
Jul 14, 2009
4:53 am
11800
Please help me to optimize c code for FFT implementation. Thanks...
Nasir Mahmood
hi_whataboy
Offline Send Email
Jul 29, 2009
7:29 pm
11801
... 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...
a.santilli
Offline Send Email
Jul 31, 2009
2:17 pm
11802
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...
Chuck Peplinski
chuckpeplinski
Online Now Send Email
Jul 31, 2009
3:13 pm
11804
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...
chris_bore
Offline Send Email
Aug 23, 2009
9:18 pm
11805
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...
Bauernoeppel, Frank
frank_bauern...
Offline Send Email
Aug 25, 2009
8:44 am
11806
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...
ehsantelex
Offline Send Email
Sep 16, 2009
8:20 am
11807
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:...
Alfred Lee
alfred17330
Offline Send Email
Sep 16, 2009
4:18 pm
11808
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...
ehsan k
ehsantelex
Offline Send Email
Sep 28, 2009
10:14 am
11809
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...
Alfred Lee
alfred17330
Offline Send Email
Sep 30, 2009
9:48 pm
11810
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...
Chuck Peplinski
chuckpeplinski
Online Now Send Email
Sep 30, 2009
10:16 pm
11811
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...
Mahesh
mahesh_nxp
Offline Send Email
Oct 23, 2009
5:45 am
11812
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...
Chuck Peplinski
chuckpeplinski
Online Now Send Email
Oct 23, 2009
2:27 pm
11813
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...
Mahesh
mahesh_nxp
Offline Send Email
Oct 27, 2009
3:38 pm
11814
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...
Alfred Lee
alfred17330
Offline Send Email
Oct 27, 2009
4:44 pm
11815
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...
Chuck Peplinski
chuckpeplinski
Online Now Send Email
Oct 27, 2009
5:51 pm
11816
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...
harm_verhagen
Offline Send Email
Oct 28, 2009
8:37 am
11817
... should be int temp[10]; // .bss are all zeros too. zero bytes...
harm_verhagen
Offline Send Email
Oct 28, 2009
8:40 am
11818
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]; ...
Mahesh
mahesh_nxp
Offline Send Email
Oct 28, 2009
9:18 am
11819
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...
Mahesh
mahesh_nxp
Offline Send Email
Oct 28, 2009
9:33 am
11820
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...
Richard Miller-Smith
richardmms
Offline Send Email
Oct 28, 2009
10:08 am
11821
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...
richardmms
Offline Send Email
Oct 28, 2009
10:17 am
11822
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 ...
Bauernoeppel, Frank
frank_bauern...
Offline Send Email
Oct 28, 2009
11:18 am
Messages 11792 - 11822 of 11824   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help