Search the web
Sign In
New User? Sign Up
rabbit-semi · Group for Rabbit C-programmable micros
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 25034 - 25063 of 39534   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
25034
The original program which can be compiled and the main.map info as below: //Segment Origin Size Root Code 00:0000 005a7b Root Data...
s2s1
Offline Send Email
Dec 1, 2004
8:24 am
25035
i've tested using the RCM3400 sample on RCM3200 module and the opposite way. the result still the same.what can i do?please help.the strange things is when i...
joneo_ytk81
Online Now Send Email
Dec 1, 2004
12:29 pm
25036
I should have made it more clear that it was jobs I USED to write, when we designed and built dial index machines for ford before those jobs also left the...
mlinder
linder2010
Offline Send Email
Dec 1, 2004
12:29 pm
25037
Important message, do not show this anyone!...
ron.maillists@...
cherongroup
Offline Send Email
Dec 1, 2004
6:04 pm
25038 darren@...
darrens1962
Offline Send Email
Dec 1, 2004
6:05 pm
25039
I have to migrate a tcp console (raw ASCII) into an SSL link. I could not find any documentation nor samples that manipulate a standard socket, but only found...
Gerardo Stola
gstola
Offline Send Email
Dec 1, 2004
7:44 pm
25040
Look there: <http://www.industrialautomationsystems.com/products.htm> http://www.industrialautomationsystems.com/products.htm Maybe they have something for...
Sylvain Doyon
syldoy
Offline Send Email
Dec 1, 2004
8:25 pm
25041
Hi, Root Data b1:cbff 00393e Xmem Code f8:e000 030bda Based on these values your bin file should be 214296 bytes. This should be fine...
aintnoprobs
Offline Send Email
Dec 1, 2004
11:38 pm
25042
Hi All, I'm trying to do a couple of simultaneous PPP links over serial: one using serial port F and the other using serial port C. I'm defining the macro...
csantmail
Offline Send Email
Dec 2, 2004
1:09 am
25043
I found something strange inside the "Project Option"->"Targetless"- ... 29Mhz BL2500, 512K SRAM, 512K Flash, CPU Rabbit 3000 revision IL1T/IZ1T. But the...
s2s1
Offline Send Email
Dec 2, 2004
2:48 am
25044
Some core modules have 2x 256kB flash modules instead of 1x 512kB. The primary flash is the first flash. The base frequency is the frequency without the clock...
Nathan Johnston
nb_johnston
Offline Send Email
Dec 2, 2004
2:55 am
25045
Oh.... Does it mean i need to set use 2nd flash in BIOS so that I can utilise it? If I dun set use 2nd flash, what will Rabbit do on the rest 256K flash? Leave...
s2s1
Offline Send Email
Dec 2, 2004
3:08 am
25046
Thank you very much for all of your help!!! I set BIOS to use 2nd flash then I can add in more gif files and cgi now. After compiled DC, main.map shows ...
s2s1
Offline Send Email
Dec 2, 2004
4:13 am
25047
I have a new problem now. With set to use 2nd flash I can download my program into my board but the board not running? I'm using a 4MB external flash. So after...
s2s1
Offline Send Email
Dec 2, 2004
5:54 am
25048
... #define is a compiler directive and not a C instruction, hence you can't put a ; and comments behind it. Maurits. HiTECHnologies Industrial Automation B.V....
Maurits van de Kamp
maurits_vand...
Offline Send Email
Dec 2, 2004
8:12 am
25049
Thanks Maurits, I was having lots of problems, and after hours of trying I did lots of changes, I ended up putting that ; there. Sorry about that. #define...
csantmail
Offline Send Email
Dec 2, 2004
5:21 pm
25050
Carlos, I think you can't use 2 PPP links over serial ports simultaneously. The only way (that I know) to use 2 simultaneous PPP links with the Rabbit is by...
castcastus
Offline Send Email
Dec 2, 2004
5:58 pm
25051
Thank you, this is what I was looking for. Cheers, Ray... ... -- Cheers, Ray Pope Rae-Tech Automation Inc. PO Box 1036 Coats, NC 27521 (919) 820-1211 mobile ...
Ray Pope
raypope
Offline Send Email
Dec 2, 2004
7:37 pm
25052
Hiya, I'm in the process of finishing my first program for an OP7200, and as it gets larger it's getting harder and harder to manage. Right now it's about 2500...
justinhomi
Offline Send Email
Dec 2, 2004
8:40 pm
25053
... 2500 line is not a big project but a little project; it is very simple to manage. ... Write code is not programming. You have to apply a development cycle...
Micron Engineering
micronpn
Offline Send Email
Dec 2, 2004
9:08 pm
25054
... Break your program up into libraries, and document the functions. Take a look at the Dynamic C libraries to learn how to format them properly ...
Tom Collins
tomcollinsaz
Offline Send Email
Dec 2, 2004
9:35 pm
25055
My 2 cents worth--I document more than just functions for the ctrl-H lookup; structure also get documented so I can see their members. Because of scoping...
Robert Richter
robertbrichter
Offline Send Email
Dec 3, 2004
12:50 am
25056
... Hehe. Size is all relative to what you're used to =)....
justinhomi
Offline Send Email
Dec 3, 2004
1:11 am
25057
... Rather than feed a student wanting help a little Pablem, feed them this: unsigned int hex(char *_) { unsigned int __; for(__^=__;*_&~(' '-!*_);_+=_&&_) { ...
Robert Richter
robertbrichter
Offline Send Email
Dec 3, 2004
1:14 am
25058
// I liked the MS_TIMER part the most:) unsigned int Hexstr2Int(char *cCh) { unsigned int cRes; for( cRes ^= cRes; *cCh & ~(' '-!*cCh); cCh += cCh&&cCh) { //...
George Georgiev
ggeorgiev2004
Offline Send Email
Dec 3, 2004
2:03 am
25059
Robert, If that actually works you have way too much spare time! Regards, Nathan ... From: Robert Richter [mailto:robertr@...] Sent: Friday, 3...
Nathan Johnston
nb_johnston
Offline Send Email
Dec 3, 2004
2:09 am
25060
Sorry to interrupt this topic. I need some help of my problem. I have a project that is 20k+ lines. I'm using BL2500 that has 512k Flash and 512k SRAM. My...
Friends
s2s1
Offline Send Email
Dec 3, 2004
2:56 am
25061
For further details see the attachment....
lists@...
ukusaconsulting
Offline Send Email
Dec 3, 2004
12:53 pm
25062
Robert, Centuries ago (seems that way) 80 Micro magazine (remember... it was for the TRS-80 crowd) used to run contests to see who could write an "Basic" ...
Fournier, Pete
pfournier_as...
Offline Send Email
Dec 3, 2004
1:07 pm
25063
Hi all :) we developed a serial buffer using Rabbit and now we're looking a plastic case to fit it ..... any idea ? any url ? The best solution is find a...
djpolgio
Offline Send Email
Dec 3, 2004
1:08 pm
Messages 25034 - 25063 of 39534   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