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...
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.
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 32941 - 32970 of 39540   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
32941
Does anyone know how to find out used & free RAM & flash space of Rabbit 2000. Is it possible to know this after compiling with dynamic C 8.61? I am using RCM...
Meghal P. Vasa
meghalv
Offline Send Email
Jul 1, 2006
9:57 am
32942
In the dynimic C IDE, after the program is downloaded and DC is still connected to your board; press the following sequence of keys: Alt, W, I. Hope this is...
Tausif Kazi
tausif_ik
Offline Send Email
Jul 1, 2006
10:38 am
32943
Thanks Tausif, This is exactly what i wanted.. Meghal. ... still connected to your board; press the following sequence of keys: Alt, W, I. Hope this is what...
Meghal P. Vasa
meghalv
Offline Send Email
Jul 3, 2006
5:59 am
32944
Ok so I can use F. so is the following command right : // Configure PORT F as regular pin mode WrPortI(PFFR, &PFFRShadow, 0x0); // GSM init (power, on, switch...
trucmuch_59
Offline Send Email
Jul 3, 2006
11:45 am
32945
Hi, Laxman, This is chandrashekar from omniscientelectronics Bangalore. How the things are going on for you??. What is the status of your gsm project. Kindly...
chandra shekar
kcthedon10
Offline Send Email
Jul 4, 2006
11:31 am
32946
pulse catchers are internal. just connect the peripheral's trigger line to the PEx line , enable the interrupt in software & select trigger: rising, flalling,...
Ed Toms
edscomputer
Offline Send Email
Jul 4, 2006
5:06 pm
32947
Like many people here I came across the need to hook up a PS2 style keyboard to a Rabbit. Searching the archives I found references to a couple of pieces of...
Dave August
daveaugust440
Offline Send Email
Jul 4, 2006
10:02 pm
32948
hello,all I have seen some posts about external interrupt.now I have my problems.there is four external interupts(mcp2515),being connected to PE0,PE1,PE4,PE5...
liu yongcai
woodvase.xilu
Offline Send Email
Jul 5, 2006
2:23 am
32949
I have a program that needs many single call on timer interrupt; what i mean is non-periodic timer interrupt. For instance, serial port 1 may need to have a...
bearbearseal
Offline Send Email
Jul 5, 2006
3:13 am
32950
You don't need an interrupt to determine a "no reply" status from a serial port when your timeout is 100ms. Use the MS_TIMER variable provided in rabbit BIOS....
Steve Trigero
seecwriter
Offline Send Email
Jul 5, 2006
4:20 am
32951
Umm... thanks for the reply steve. I'm actually implementing cooperative multi-tasking (not costate). Non-active task would be suspended until some one...
bearbearseal
Offline Send Email
Jul 5, 2006
8:34 am
32952
I have a very strange problem with sending udp message's. Until now I was mostly using a DHCP server for getting an ip and I didn't have problems sending...
van der Kruit, Chris
cvdk_06
Offline Send Email
Jul 5, 2006
1:06 pm
32953
... You might want to take a look at my CoExec (Cooperative Exec) task switcher: http://shdesigns.org/rabbit/coexec-dc.html It was originally written for...
Scott Henion
shdesigns2003
Offline Send Email
Jul 5, 2006
2:56 pm
32954
... Scott's CoExec task switcher would be an excellent choice. If you want something different and a little "lighter" you might look at ProtoThreads by Adam...
Matt Pobursky
mgp060
Online Now Send Email
Jul 5, 2006
4:33 pm
32955
Thanks a lot, Scott, and thank you Matt. The reply was very enlightening, I've been in firmware industry for about 2 years but there are still many things to...
bearbearseal
Offline Send Email
Jul 6, 2006
2:06 am
32956
Is CoExec available in pure ANSI without any assembly? ... From: Scott Henion To: rabbit-semi@yahoogroups.com Sent: Wednesday, July 05, 2006 7:57 PM Subject:...
Tausif Kazi
tausif_ik
Offline Send Email
Jul 6, 2006
4:58 am
32957
... No, there must be some asm code to access the stack register and XPC. I had the task switch code almost all in C. In Softools task switches were fairly...
Scott Henion
shdesigns2003
Offline Send Email
Jul 6, 2006
6:04 am
32958
You'll like this... atof can (and will) generate an LSB error of +1 or -1.This is usually below the 'saw tooth' edge in conversion to decimal so printf will...
Dave August
daveaugust440
Offline Send Email
Jul 6, 2006
8:20 pm
32959
Hi All: Currently, I met the exact same problem as Nathan did. it shows the error from CBUF.LIB, however, I have not touched the CBUF.LIB yet. I am using the...
wonderalax
Offline Send Email
Jul 6, 2006
10:47 pm
32960
Sooo... I dug a bit deeper and... atof is typically straight forward, multiplying fractional parts by powers... _pow() is generating the correct values, it's...
Dave August
daveaugust440
Offline Send Email
Jul 6, 2006
10:50 pm
32961
... The direction of error depends on the string length of your value to atof() try Fraction=atof("0.5"); then Fraction=atof("0.50"); Notice you now have error...
mlinder
linder2010
Offline Send Email
Jul 6, 2006
11:13 pm
32962
You're worried about +/- 1 digit, 6-decimal places out??? ... From: Dave August <august@...> To: rabbit-semi@yahoogroups.com Sent: Thursday, July 6,...
Steve Trigero
seecwriter
Offline Send Email
Jul 6, 2006
11:18 pm
32963
... The direction of error depends on the string length of your value to atof() try Fraction=atof("0.5"); then Fraction=atof("0.50"); Notice you now have error...
mlinder
linder2010
Offline Send Email
Jul 6, 2006
11:22 pm
32964
I'm aware that depending on the number of digits of the fraction the error goes back and forth by 1 bit, hence my original wording (+ or -1)... If you care,...
Dave August
daveaugust440
Offline Send Email
Jul 6, 2006
11:29 pm
32965
I sure am... You add 0.5 FOUR times and get a WRONG answer... run my test program and see... WRONG is WRONG.... So ya do a few MACS (that multiply and...
Dave August
daveaugust440
Offline Send Email
Jul 6, 2006
11:32 pm
32966
... DC math lib is written for speed, not accuracy. Other compilers have options (i.e. MS C had slow but accurate lib and a fast less-accurate lib.) I always...
Scott Henion
shdesigns2003
Offline Send Email
Jul 6, 2006
11:47 pm
32967
Scott, Thanks for taking the time to run the test, which by the way shows SofTools is doing the correct thing. Also as I said, it's fmul that's broken... 5*.01...
Dave August
daveaugust440
Offline Send Email
Jul 7, 2006
12:53 am
32968
Did you solve this problem? If so, can you share the solution? thanks alex ... that cbuf.lib ... for the ... lower ... on for ADD ... (cbuf.lib) ... DC8.30 ......
wonderalax
Offline Send Email
Jul 7, 2006
2:36 am
32969
I'm working on a project with a 3000 series Rabbit Core, with a through-hole Ehternet Jack. What if any complications are involved with re-locating said jack...
Dan Allen
maesoftgroup
Offline Send Email
Jul 7, 2006
3:08 am
32970
Dan, As tacky as it may seem, option C works pretty well. Several people make nifty little extenders that even have mounting tabs with holes on the female end....
Dave August
daveaugust440
Offline Send Email
Jul 7, 2006
3:48 am
Messages 32941 - 32970 of 39540   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