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...
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 12906 - 12935 of 39539   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
12906
take a look in the samples dir http , you must find some example wich do this I use http handler with costate witnout any problems send your code if you want...
René Lefebvre
renewebdyn
Offline Send Email
Apr 1, 2003
9:08 am
12907
Just a part of my code with costate and http_handler I have more than 6 tasks and 20 html pages and all work fine Bye // boucle des taches loopinit();...
René Lefebvre
renewebdyn
Offline Send Email
Apr 1, 2003
9:23 am
12908
Hi all, In my project, I used RCM3100 core with DC7.32 and uCOS-II RTOS. Since the RCM3100 core has got watch crystal + cicruitry, I was happy enough to use ...
dAVE-PCS
david@...
Send Email
Apr 1, 2003
9:40 am
12909
Please, could anybody tell me for what is TIMEZONE macro?. Perhaps for automatically change time when pass from Summer-Winter and viceversa?.. Thanks. Jess....
jesconsa22
Offline Send Email
Apr 1, 2003
11:49 am
12910
Using a BL2100 has anyone successfully used the anaIn() function whilst an external interrupt is set up? I do not call anaIn() from the isr - it gets executed...
activeemjmilne
Offline Send Email
Apr 1, 2003
12:43 pm
12911
I ran into a similar problem with _anaIn(); the problem is it uses the following: push ip ipset 1 . . . pop ip What you need to do is add a ipres before the...
Robert Richter
robertbrichter
Offline Send Email
Apr 1, 2003
1:17 pm
12912
Why put your initialization in a costate; why not wait until initialization is complete before allowing any other costates to run? If necessary because...
Robert Richter
robertbrichter
Offline Send Email
Apr 1, 2003
1:21 pm
12913
Thanks, Robert but this doesn't seem to have helped. I actually read your recent discussion and came to the same conclusion this time. The thing is I'm not...
James Milne
activeemjmilne
Offline Send Email
Apr 1, 2003
2:16 pm
12914
Yes , I have cofunc in my init task ( cof_serBread(...) in fact ) I use the mode : "init_on" for the initialization task for execute it only one time it's a...
René Lefebvre
renewebdyn
Offline Send Email
Apr 1, 2003
2:50 pm
12915
Hello Guys, I wuld like to know if do you have some way to convert integer value to its representation in ASCII table?. Example: Now: int i = 1; ...
tgabo2000
Offline Send Email
Apr 1, 2003
6:12 pm
12916
If you just change it's cast into a char, that should work. int i = 1; serBwrite(i,(char)1); // print the byte 49. -Jess ... From: tgabo2000...
Jess Stock
sithlord1232003
Offline Send Email
Apr 1, 2003
6:21 pm
12917
If you are adding it to a string, you can do this: sprintf(MyString, "%d", (int) i); ... value...
Robert Richter
robertbrichter
Offline Send Email
Apr 1, 2003
6:30 pm
12918
... read ... The ... Try this band-aid: anaIn(); asm ipset 0; If it works to set the interrupt priority back to zero, you know you have a problem to track...
Robert Richter
robertbrichter
Offline Send Email
Apr 1, 2003
6:32 pm
12919
I´ve also got this timeout message. Normaly it runs a while after this, if I close the serial port and compile again. I´am using DC733P3 on an 1.6 GHz Athlon...
vmstom
Offline Send Email
Apr 1, 2003
6:36 pm
12920
Did you use a serial to IR converter or the integrated IR interface of a laptop ? I need raw data transmission between PC and Rabbit only. Can I get my on...
vmstom
Offline Send Email
Apr 1, 2003
6:43 pm
12921
Is this what you want to do? int i; i = '1'; // load i with ASCII value of char '1' serBwrite(&i, 1); // write only a single byte, the LSB of i! Or are you...
Bruce Isted
sser2k
Offline Send Email
Apr 1, 2003
6:45 pm
12922
Guy, it does not work: before: int i = 1; ... after your recomendation: int i = 1; sprintf(MyString, "%d", (int) i); serBwrite(MyString,1); /// prtinf the byte...
tgabo2000
Offline Send Email
Apr 1, 2003
6:49 pm
12923
If you are just trying to do an ASCII representation of a single integer just add 48 to the value before you send it. Hope I'm not over simplifying your...
Lance Beck
ltbeck1
Offline Send Email
Apr 1, 2003
6:56 pm
12924
This FAQ is on the Z-World bulletin board, and may help: http://www.zworld.com/support/bb/messages/14/3530.html? WednesdayMay2920020221pm Dick ... Since the ...
engrmanager
Offline Send Email
Apr 1, 2003
6:56 pm
12925
... This macro is used by the HTTP server so that the correct date formats may be generated. Basically, you just #define TIMEZONE at the top of your main...
Steve Hardy
mean_taipan
Offline Send Email
Apr 1, 2003
6:57 pm
12926
Guys, I have a Float value and I wanna send it trought te serial port? I did that: float t; serBwrite(t,sizeof(t)); But I got a lot of trash there. What I can...
tgabo2000
Offline Send Email
Apr 1, 2003
9:12 pm
12927
If what you want is a "human readable" output (i.e. something line 1.325E6) use char buf[50]; // A place to hold the ASCII representation of fvalue float...
William C. Landolina
billalltrade
Offline Send Email
Apr 1, 2003
9:21 pm
12928
Well, I see quite a bit of info flying around here, so let me throw in my 2 cents , and hope this helps... Syntax: serBwrite( void *data , int length ) so, if...
Wolf Scott
wolfgangscott
Offline Send Email
Apr 1, 2003
9:27 pm
12929
try this: char myfloat[20]; sprintf(myfloat,"%f",t) serBwrite(myfloat,sizeof(myfloat)); this transform your float in a string with the format that you want bye...
René Lefebvre
renewebdyn
Offline Send Email
Apr 1, 2003
9:28 pm
12930
Thanks it works. Do you remember how cut the decimals number: Example: 8.890000 to 8.89 Thanks Again, Gabriel ... of ... buf ... ole "C" ... port?...
tgabo2000
Offline Send Email
Apr 1, 2003
9:30 pm
12931
The problem results from the way the float is stored in memory in a coded format and we are desiring ASCII output. So, first we need to convert it to ASCII...
Wolf Scott
wolfgangscott
Offline Send Email
Apr 1, 2003
9:35 pm
12932
Off the top of my head: "%4.2f" - Should force the output to be four characters total, two behind the decimal point. "%.2f" - Just limits the number of places...
William C. Landolina
billalltrade
Offline Send Email
Apr 1, 2003
9:35 pm
12933
sprintf( buffer , "%6.2f" , t ); 6 leading characters 2 trailing ... Regards, \\//\\//olf ... It's short, do you know for sure? ...
Wolf Scott
wolfgangscott
Offline Send Email
Apr 1, 2003
9:36 pm
12934
Using "sizeof(myfloat)" is wrong - That will send all 20 bytes out the serial port, even if sprintf only produced a much shorter result such as "1.0". That's...
William C. Landolina
billalltrade
Offline Send Email
Apr 1, 2003
9:40 pm
12935
Thanks a lot to everyone. Gabriel...
tgabo2000
Offline Send Email
Apr 1, 2003
9:52 pm
Messages 12906 - 12935 of 39539   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