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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 9308 - 9339 of 11639   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9308
I am working on a new training class session, to share best practice in TriMedia programming style. I've noted some practices in programming TriMedia that...
Chris Bore
chris_bore
Offline Send Email
Oct 4, 2005
9:22 am
9310
I dunno, Chris. You can get programmers to argue this one forever. You're getting awfully close to religion. We've tried publishing coding guidelines. Some...
Chuck Peplinski
chuckpeplinski
Offline Send Email
Oct 4, 2005
2:41 pm
9311
This is a bit more of method than style. I find in programming at the TSSA flow graph (IO descriptor level), especially if you developing and adding multiple...
Alfred Lee
alfred17330
Offline Send Email
Oct 4, 2005
4:25 pm
9312
Hi Chris, A TSSA application clarity issue: Prevent using these format structures (tmAvFormat_t and it's children) in a TSSA application as much as possible. ...
Wim Van Halen_2
wimvh2000
Offline Send Email
Oct 5, 2005
8:58 am
9313
Thanks Alfred Lee! As you said, my ISR poll each of the two devices to find out who issue the interrupt. If only one device, my system works better. But if I...
duwenyong2008
Offline Send Email
Oct 6, 2005
1:11 am
9314
Hello, Has anyone ever tried to call the function tmdlXioRead from an ISR? In debug mode this function will fail because it is calling tmosalMutexEnter, which...
landrieumerging
Offline Send Email
Oct 6, 2005
6:03 am
9315
I am a newbie here, and I find that it isn't a good idea to read messages on the web.Is there some software can login and read this group just like user net...
mingkai_du
Offline Send Email
Oct 6, 2005
6:52 am
9316
Chris Bore wrote ... ... You can find my contribution to this rather tricky subject at <http://www.doves.demon.co.uk/coding.html>. Hopefully, some of the code...
Jonathan Coxhead
jonathanrcox...
Offline Send Email
Oct 6, 2005
7:30 am
9317
Thanks, Jonathan. I especially like your suggestion to avoid 'neutral' advice which is really just personal preference. :-) It is in fact part of the ...
Chris Bore
chris_bore
Offline Send Email
Oct 6, 2005
10:29 am
9318
Hello Loïc, no solution for you, but a "me too". I tried an asynchonous iic request using tmdlIic from a timer interrupt. (This used to work on SDE 2.2 for...
Bauernoeppel, Frank
frank_bauern...
Offline Send Email
Oct 6, 2005
10:59 am
9319
On Thu, 06 Oct 2005 06:51:45 -0000, "mingkai_du" <mingkai_du@...> ... How are you reading the messages now? Through the Yahoo groups web site? Ick. ...
Tim Roberts
timriiacom
Offline Send Email
Oct 6, 2005
4:33 pm
9320
It is pretty dangerous to use a TSSA component without using "getInstanceSetup". I sure would not want to see the code to create all of those structures and...
Chuck Peplinski
chuckpeplinski
Offline Send Email
Oct 6, 2005
8:56 pm
9321
... Thanks! Hey!! (Almost??) Anyway ... ... Well, I'm a heretic there, I'm afraid. Interfaces can be designed to different "styles". The kind of interface you ...
Jonathan Coxhead
jonathanrcox...
Offline Send Email
Oct 7, 2005
5:01 am
9322
Hi, I am looking for a trimedia-objcopy tool Objcopy is a tool that is used to transform .elf image. The goal is to change some function calls that are made by...
Pascal Lotiquet
pascal_lotiquet
Offline Send Email
Oct 7, 2005
2:37 pm
9324
I am using the MDS L0 and L1 boot programs as a basis for developing some custom bootloaders for our target hardware. The PNX1500 has 8 signals that are...
nexperia_iq
Offline Send Email
Oct 7, 2005
4:06 pm
9325
We currently plan a TriMedia User Group (TMUG) meeting in: San Jose, CA, USA on: January 10th-11th 2006 Please reserve the date and tell colleagues. (Note I...
Chris Bore
chris_bore
Offline Send Email
Oct 7, 2005
4:15 pm
9326
TriMedia is supposed to be able to boot with or without EEPROM. Some of the functions of those pins are meant for booting without EEPROM. If you are using...
Alfred Lee
alfred17330
Offline Send Email
Oct 7, 2005
4:29 pm
9327
... I don't think you really mean that. One reason for having defaults is to eliminate extra code. If every (sub)system had no defaults every programmer would...
Frank Drobot
thedrobots
Offline Send Email
Oct 7, 2005
7:31 pm
9328
Does it perhaps also go beyond simply the defaults? Think about how one might modularise one's application. Many TSSA components cover multiple functionality...
Chris Bore
chris_bore
Offline Send Email
Oct 7, 2005
8:30 pm
9329
hello, I use "tmcc -K *.c" to compile my code, which can get *.s file(include all assemble language created by compiler). I try to optimization my C code by...
g tian
tiangang_com...
Offline Send Email
Oct 8, 2005
8:23 am
9330
Dear Tian, The usual method of optimizing the code for Trimedia is by modifying only the "C" code. You can easily reach the 90-95% efficiency without modifying...
Ahmad Hassan
ahmadhassanc...
Offline Send Email
Oct 8, 2005
8:55 am
9331
I know this can be done. The tools that you have are tmar, tmnm and tmld. First use tmnm to see what is in the library. You should be able to see what is...
Chuck Peplinski
chuckpeplinski
Offline Send Email
Oct 8, 2005
1:02 pm
9332
Read the "cookbook" chapter about optimizing for TriMedia. It is in the TCS portion of the NDK 4.3 docs tree. Chuck Peplinski TriMedian at MDS www.mds.com ...
Chuck Peplinski
chuckpeplinski
Offline Send Email
Oct 8, 2005
1:03 pm
9333
There are three main areas for optimization: 1) Parallelism (drive the scheduler properly): make sure your programs are highly parallel, and that the scheduler...
Chris Bore
chris_bore
Offline Send Email
Oct 8, 2005
6:56 pm
9334
In NDK4.1, we use tmbslAviRegisterComponent (tmUnit0, &gLcp1500Avi [0]); to Register the device interface for external components! And we can call the...
duwenyong2008
Offline Send Email
Oct 9, 2005
2:21 am
9335
Thanks greatly for you help, but i'm still comfused about the third area of optimization Chris pointd: 3) Custom ops (do more with each instruction) I don't...
tiangang_compute
tiangang_com...
Offline Send Email
Oct 9, 2005
6:14 am
9336
Hello, everyone. When I display yuv frames in memory to TV through PNX1500 QVCP, I need transfer yuv 4:2:0 or 4:2:2 format data to ITU 656 yuv data (Seen in...
haxianbiruilinglong
haxianbiruil...
Offline Send Email
Oct 9, 2005
6:25 am
9337
I am a graduate student. I want to experience trimedia SDE,of course I couldn't pay for it. Could anyone tell me where I could get a tryout edition? Thanks!...
iamyoyota
Offline Send Email
Oct 9, 2005
12:14 pm
9338
... Yes, exactly this. In the CookBook, there are various examples, look at the use of IFIR16 custop op which does add's and mul's in one op. Frank...
frank_bauernoeppel
frank_bauern...
Offline Send Email
Oct 9, 2005
12:59 pm
9339
... 656 ... format ... The memory based scaler MBS is the most flexible on-chip component doing many format conversions in hardware. If you program at the TSSA...
frank_bauernoeppel
frank_bauern...
Offline Send Email
Oct 9, 2005
1:42 pm
Messages 9308 - 9339 of 11639   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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