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 38249 - 38278 of 39539   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
38249
Is this listserv still active? I haven't seen any messages. Chuck...
robertsck listserv
robertsck.listserv@...
Send Email
Oct 1, 2008
1:45 pm
38250
Yep. Just kinda quiet right now. If you check the group's home page you'll see that for the month of September there were 82 posts, and 94 for the month of...
Steve Trigero
seecwriter
Offline Send Email
Oct 1, 2008
2:02 pm
38251
Hello, I'm puzzling over a strange problem on an RCM4100 DC10.21. I have two char arrays: char ROVDATA_raw[20]; char HDUDATA_raw[20]; I fill them and I'll have...
Marco Trapanese
iw2nzm
Offline Send Email
Oct 2, 2008
4:42 pm
38252
Your for loop won't do anything when using a "greater than" sign. Are you sure that's what you want? ... From: Marco Trapanese <marcotrapanese@...> To:...
Steve Trigero
seecwriter
Offline Send Email
Oct 2, 2008
5:15 pm
38253
List Does anyone have some sample code or a link to a web page on how to set up an RCM4210 External I/O port? The R4000UM.pdf is a bit ambiguous as to what ...
robertsck listserv
robertsck.listserv@...
Send Email
Oct 2, 2008
6:41 pm
38254
Hi Marco, ROVDATA and HUDATA are named type definitions, not variables. Since they are both the same structure you could simply do this.... struct { char...
Kenny Millar
kennymillar2000
Offline Send Email
Oct 2, 2008
8:51 pm
38255
... most certainly creates two "variables" (i.e. allocates storage) for structures, with the names ROVDATA and HDUDATA. Presuming those two names are in scope,...
Don Starr
donstarr
Offline Send Email
Oct 2, 2008
9:33 pm
38256
Hi, Im designing a motherboard PCB for the RCM3000 to plug into as part of a university poject. I just want to check that what I am doing is correct. I am...
Jonathan Loechel
jonathan_loe...
Offline Send Email
Oct 3, 2008
4:14 am
38257
... names ... Actually, the two structs are slightly different (there are few other fields of integer type). So I don't use a typedef but create on-the-fly the...
Marco Trapanese
iw2nzm
Offline Send Email
Oct 3, 2008
5:53 am
38258
Guys, I solved. The code was ok. I had to delete all files in the source folder and compile again the code. Now it works. Perhaps some files was locked and not...
Marco Trapanese
iw2nzm
Offline Send Email
Oct 3, 2008
7:33 am
38259
Yes - sorry you are dead right! In my haste I read it as typdef struct. I certainly appologise! -K From: rabbit-semi@yahoogroups.com...
Kenny Millar
kennymillar2000
Offline Send Email
Oct 3, 2008
9:17 am
38260
Jon, If the parallel ports are not doing anything you don't need to set them to anything. If you have the space, you should make provisions on your ...
Fournier, Pete
pfournier_as...
Offline Send Email
Oct 3, 2008
12:07 pm
38261
I'll answer my own question. No, DC 9.25 does not support the RCM3900 module. If I compile the same code using DC 9.62 it compiles without error. But this has...
Steve Trigero
seecwriter
Offline Send Email
Oct 3, 2008
6:30 pm
38262
Hello, I can't handle Timer C interrupt correctly. The code below will hang the CPU at power-up. The example provided from Rabbit (located in the Sample...
Marco Trapanese
iw2nzm
Offline Send Email
Oct 4, 2008
5:19 pm
38263
I've had no problems letting unused pins float on my applications. Shawn Upton, KB1CKT ... From: Jonathan Loechel <jonathan_loechel@...> To:...
Shawn Upton
kb1ckt
Offline Send Email
Oct 5, 2008
1:54 am
38264
You don't say what happens to let you know the program hangs. I've never worked with the 4000 or DC10, but I am guessing that you need to take some action in...
mehiegl
Offline Send Email
Oct 5, 2008
11:22 am
38265
... It doesn't execute anything. Whatever I write in the code won't be executed. ... If so I should see the led turn on and off repeatedly. But it doesn't ...
Marco Trapanese
iw2nzm
Offline Send Email
Oct 5, 2008
12:23 pm
38266
I may be wrong about all of the following, but one other problem I noticed when reading your code is an error in the led toggle macro. You cannot read back the...
mehiegl
Offline Send Email
Oct 5, 2008
1:48 pm
38267
... Ops! I always used this macro without problems. Anyway, I'll try to improve it. ... I'm sure of that. For two reason. 1) The macro *toggles* the led each...
Marco Trapanese
iw2nzm
Offline Send Email
Oct 5, 2008
3:46 pm
38268
Hello! I'm experiencing a strange behavior. After few downloads (about 10-15) I can't reprogram anymore my RCM4100 modules. Just now I "burned" the third...
Marco Trapanese
iw2nzm
Offline Send Email
Oct 6, 2008
4:21 pm
38269
One difference between the RCM3900 and the RCM3000 is that the RCM3900 runs out of ram. So there must be a boot loader that copies the code from flash to ram....
Steve Trigero
seecwriter
Offline Send Email
Oct 6, 2008
4:35 pm
38270
You're enabling the interrupt before setting up the interrupt vector... it's jumping off into la-la-land the first time the interrupt goes off. -Lynn BTW, you...
lwoodzw
Offline Send Email
Oct 6, 2008
5:17 pm
38271
It's best not to let unused pins sit around as floating inputs, it's possible for them to float to a mid-range voltage and cause unnecessary current draw....
lwoodzw
Offline Send Email
Oct 6, 2008
5:22 pm
38272
... It is part of the bios, it copies the flash to the fast RAM then remaps the lower 512k to the fast RAM. You can use the settings for the RCM3200 on the...
Scott Henion
shdesigns2003
Offline Send Email
Oct 6, 2008
6:24 pm
38273
... So, what's the purpose of the Interrupt Priority option in the IO Config utility? Tomorrow I'll try to enable the interrupt after the interrupt vector ...
Marco Trapanese
iw2nzm
Offline Send Email
Oct 6, 2008
7:00 pm
38274
Using RCM3000, DC 9.25. I want to use bit 2 of port D as an output. Using this code produces no results. The bit never changes state, it's always 0. Adding a...
Steve Trigero
seecwriter
Offline Send Email
Oct 6, 2008
8:19 pm
38275
Setting the interrupt priority in TCCR simply enables the interrupt, and setting bit 1 of TCCSR enables the clock to timer C. Once those two are set, the...
lwoodzw
Offline Send Email
Oct 6, 2008
8:19 pm
38276
What I've found so far is, this statement WrPortI( PDB2R, NULL, 1 ); does not work. But this statement does work WrPortI( PDB2R, NULL, 0 ); I can reset bit 2...
Steve Trigero
seecwriter
Offline Send Email
Oct 6, 2008
11:24 pm
38277
... try: WrPortI( PDB2R, NULL, 4 ); to set bit 2. Could probably also be: WrPortI( PDB2R, NULL, 0xff ); If I remember right, you have to write to the bit #n...
Scott Henion
shdesigns2003
Offline Send Email
Oct 6, 2008
11:46 pm
38278
... Marco Hi, I have been having the same trouble on and off for years! It has happened to several of my RCM2000, 2200, 3200 and 4100 modules. I have never...
eilidhs_daddy
Offline Send Email
Oct 7, 2008
8:19 am
Messages 38249 - 38278 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