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...
Show off your group to the world. Share a photo of your group with us.

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 29694 - 29723 of 39539   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
29694
HI EVERYONE, I am prototyping a Rabbit 2000 system which uses external I/O that is accessed by a custom address decoder and the data bus. The I/O read/write...
bmatr003
Offline Send Email
Oct 2, 2005
9:21 pm
29695
... the ioe instruction changes the memory access of an instruction to I/O. I.e ld hl,0x2000 ld a,(hl) // read memory location 0x2000 ioe ld a,(hl) //...
Scott Henion
shdesigns2003
Offline Send Email
Oct 2, 2005
9:29 pm
29696
But you still need to Port A for the data bus, and port B (I think its B) for the address bus. No getting around that....
Steve Trigero
seecwriter
Offline Send Email
Oct 2, 2005
11:28 pm
29697
... I think it was Rabbit 2000 mentioned, so no external address&data buses out there. Just the need for a bit of Port E as the strobe....
Jaroslav Nemec
sopheco
Offline Send Email
Oct 2, 2005
11:40 pm
29698
... The 2000 does not use any ports for the address/data bus. The 3000 uses B2-7 for address and can use port A for. ... today's fortune Electrocution, n.: ...
Scott Henion
shdesigns2003
Offline Send Email
Oct 2, 2005
11:43 pm
29699
Which is the highest transfer rate possible between the master and the slave module? Does anyone has the source or a sample to do it? THANKS......
pampa1814
Offline Send Email
Oct 3, 2005
1:58 am
29700
Is there any way to produce rellocatable code with Dynamic C? if not, then how about softools? I've heard that it is ANSI compliant. Regards, Tausif....
Tausif
tausif@...
Send Email
Oct 3, 2005
5:47 am
29701
You're right. Sorry for the confusion....
Steve Trigero
seecwriter
Offline Send Email
Oct 3, 2005
6:04 am
29702
... Not really, it does not optimize well enough. The Rabbit does not do relocatable code well as it only has a +/- 128 byte relative jump. I have not seen DC...
Scott Henion
shdesigns2003
Offline Send Email
Oct 3, 2005
6:12 am
29703
On Mon, 03 Oct 2005 02:13:20 -0400, Scott Henion <shenion@...> ... Yes. I am trying to write a custom flash routine....
Tausif
tausif@...
Send Email
Oct 3, 2005
7:47 am
29704
Ok, well, I thought I was pretty much done with the Rabbit for my project for school. But come to find out, we met with the company we are doing our project...
james_r_hebert
Offline Send Email
Oct 3, 2005
8:39 am
29705
On Mon, 03 Oct 2005 08:38:36 -0000, james_r_hebert ... rabbit boards typically have atleast 256k flash and 128k ram. Looking at the tasks that you want to...
Tausif
tausif@...
Send Email
Oct 3, 2005
8:57 am
29706
Thank you for the suggestions. I will take a look at these. What is the difference between volatile and non-volatile storage? How much data woud I be able to...
james_r_hebert
Offline Send Email
Oct 3, 2005
4:46 pm
29707
I would think you could make a deal with Rabbit to get a restricted version of the compiler cheap. Norm Rogers...
norm10rogers
Offline Send Email
Oct 3, 2005
6:16 pm
29708
Hey Norm, ... It's not clear to me if Phil wants a cheap/free compiler, or the source code to a compiler. Is Rabbit/DIGI willing to provide or license source...
Kelly
unarmed_pilo...
Offline Send Email
Oct 3, 2005
6:29 pm
29709
Volatile means that you will lose the memory contents when power is removed from the RCM. If you are logging data I would assume you would not want this to...
Nathan Johnston
nb_johnston
Offline Send Email
Oct 3, 2005
10:42 pm
29710
On Mon, 03 Oct 2005 16:40:10 -0000, james_r_hebert ... Nathan answered this question. ... Well. You cant really find an exact figure of how much data can be...
Tausif
tausif@...
Send Email
Oct 4, 2005
4:02 am
29711
... What about softools? Or are they stuck due to some agreement with zworld?...
Tausif
tausif@...
Send Email
Oct 4, 2005
4:16 am
29712
Just started to get runtime error in IDE Xmem allocation failed (out of memory) address 35:e41a. Not seen this error before looking in the listing does not...
Darren Simons
darrens1962
Offline Send Email
Oct 4, 2005
1:34 pm
29713
... Xmem is not allocated for a socket until it is opened. You must make sure that you leave enough xmem available for the sockets to open. Also, you must make...
Scott Henion
shdesigns2003
Offline Send Email
Oct 4, 2005
1:52 pm
29714
I am unable to send an email via SMTP when I attempt to configure the TCP/IP settings in the program. //Defaults //charStaticIP = 192.168.0.200 //charNetMask =...
David Troike
wd8cxb1
Offline Send Email
Oct 4, 2005
2:10 pm
29715
Error = out of SRAM during runtime Cause = probably to much buffers allocated for network Not related to the stack. If you really want to find check your .map...
xgraph1
Offline Send Email
Oct 4, 2005
2:19 pm
29716
Thanks for the quick feedback I will have a check on my socket allocation, and a look at the map file. ... causing ... the ... common. ... (out ... to ... ...
Darren Simons
darrens1962
Offline Send Email
Oct 4, 2005
2:36 pm
29717
... You're on different subnets. You sure your subnet mask is supposed to be 255.255.255.0 and not 255.255.0.0 or 255.255.240.0? What is the SMTP server IP...
Dave Moore
questdavemoore
Offline Send Email
Oct 4, 2005
3:07 pm
29718
I will try changing the subnet. However it works fine using tcpconfig 1. With the subnet being the same. It also works without a gateway which I found to be...
David Troike
wd8cxb1
Offline Send Email
Oct 4, 2005
3:37 pm
29719
... Don't know the internals, but without a gateway the stack may just ship everything out the default interface (causing it to just work.) If you've got...
Dave Moore
questdavemoore
Offline Send Email
Oct 4, 2005
3:56 pm
29720
Hello All, Would any of our Gurus please be so kind as to confirm the fact that the TCP stack must/should only be called from a single task when using UCOS...
pplegrub
Offline Send Email
Oct 4, 2005
4:28 pm
29721
Thanks, I need to look into the libraries. I am using an external mailserver so I need the gateway. I must be missing something somewhere. Just one of those...
David Troike
wd8cxb1
Offline Send Email
Oct 4, 2005
5:42 pm
29722
... using ... There used to be a limitation of one socket per uC/OS-II task many Dynamic C versions ago, but no more. But Z-World\Rabbit never relased a DC...
bmurthazw
Offline Send Email
Oct 4, 2005
6:49 pm
29723
... that ... most ... Thanks for the response, but this version 1.03 is the latest version as sold on the Z-World website....
pplegrub
Offline Send Email
Oct 4, 2005
8:23 pm
Messages 29694 - 29723 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