Skip to search.
rabbit-semi · Group for Rabbit C-programmable micros

Group Information

  • Members: 3907
  • Category: Microcontrollers
  • Founded: Oct 3, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

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

Messages

  Messages Help
Advanced
Messages 1878 - 1907 of 41585   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1878 rgb@... Send Email Oct 1, 2001
12:31 pm
Thanks for your help, as I've gone further into the project it looks workable (though much different from standard C). I can see the problems that you point...
1879 rgb@... Send Email Oct 1, 2001
12:55 pm
Thanks for your response. I was aware that you could use libraries as additional source files, it is just a little awkward since it is slightly different...
1880 James
wolftalonjj@... Send Email
Oct 1, 2001
8:03 pm
Hello. I'm working on a panel with 12 lights (6 upper and 6 lower) and 6 button/switches. I have written a program to control the lights in every way that I...
1881 arm@... Send Email Oct 1, 2001
8:17 pm
Thanka. Apparently, the same is not true for the SE edition. -- Andy ... located in ... SPI.LIB ... Microwire...
1882 Lynn Wood
lwood@... Send Email
Oct 1, 2001
8:17 pm
... The kbhit() function will return a nonzero value if a key has been pressed, or a zero otherwise. It's not a documented function (the implementation is a...
1883 James
wolftalonjj@... Send Email
Oct 1, 2001
8:25 pm
... The reason I have that put in there is to give me a signal that will tell the program to turn on the lower light. That signal, when the project is...
1884 Lynn Wood
lwood@... Send Email
Oct 1, 2001
8:30 pm
... Which is exactly what it is geared towards, i.e. debugging. I wasn't trying to tell you that it was a bad idea, just coming up with excuses why it isn't...
1885 nc_media_vision@... Send Email Oct 1, 2001
10:27 pm
Hi, Do you remember the European version of ZX Spectrum which was a Z80 Computer based. If You want to develop some hardware i can give you some schematics. CJ...
1886 barry gordon
javida12@... Send Email
Oct 2, 2001
1:52 am
kbhit() is a documented function. It returns True(non-zero) if there is a character in the input buffer, otherwise false (zero). Use google and search for...
1887 barry gordon
javida12@... Send Email
Oct 2, 2001
1:52 am
kbhit() is a documented function. It returns True(non-zero) if there is a character in the input buffer, otherwise false (zero). Use google and search for...
1888 rgb@... Send Email Oct 2, 2001
3:00 am
Brenton Thanks for your response! The project I'm working on will probably end up about the size of your project. I wasn't expecting the development...
1889 James
wolftalonjj@... Send Email
Oct 2, 2001
3:19 am
... Well, thanks to your little explanation of how to use kbhit() above I figured out a way to do what I want it to do. I made a completely separate costate...
1890 Tom Collins
tom@... Send Email
Oct 2, 2001
5:02 am
I'm experiencing some weirdness in my 100 kbyte program, and I think it might be related to the uCOS stack management. It's running on an RCM2200... ...
1891 nc_media_vision@... Send Email Oct 2, 2001
6:22 am
I am a new user and I would like to change the baud rate to 250000. Is it posible for 11.05 Mhz Clock? CJ...
1892 Lynn Wood
lwood@... Send Email
Oct 2, 2001
3:32 pm
... Here's the calculation to determine the baud rate divider, which will tell you if the baud rate is possible or not -- the divider must be an integer value:...
1893 James
wolftalonjj@... Send Email
Oct 2, 2001
3:33 pm
Hello again. This should have been a really simple program to do. I don't know why it's not working though. I have to write to three pins only, to make the...
1894 Ing. Petr Fiedler
fiedlerp@... Send Email
Oct 2, 2001
3:39 pm
Hello, I need to invoke software reset, not just jump to address 0. I need to perform almost real reset that will load the Rabbit 's internal registers with...
1895 Lynn Wood
lwood@... Send Email
Oct 2, 2001
3:47 pm
... The quickest way to do this is force a watchdog timeout. The following chunk of assembly will prevent the periodic interrupt from hitting the watchdog and...
1896 Tom Collins
tom@... Send Email
Oct 2, 2001
4:15 pm
... One place to start would be to fix the last line -- it won't make any changes to PDDR. key1 is '7', '8', or '9' which correspond to (from memory) 0x37, ...
1897 sk.1@... Send Email Oct 2, 2001
5:11 pm
I am using a Rabbitcore RCM2100 in a project and I can't locate the module next to the front panel because I need the panel space for other connectors....
1898 sk.1@... Send Email Oct 2, 2001
5:37 pm
Thanks for the suggestion Darrin to overcome "socket lock". However, I am still getting the same problems even with tcp_listen() added as you suggested. I've...
1899 sk.1@... Send Email Oct 2, 2001
5:52 pm
... conflict? ... IO devices should only drive the data bus when the Rabbit commands them to via the IOEN, IORD, IOWR, and the address lines. The rabbit will...
1900 dhansen@... Send Email Oct 2, 2001
6:47 pm
Not sure exactly what might be happening, but as this is occurring on task delete, it doesn't sound like a stack issue to me. Probably some errant pointer...
1901 dhansen@... Send Email Oct 2, 2001
7:19 pm
I think you're still going to experience this problem: As you haven't #defined MAX_TCP_SOCKET_BUFFERS in your program, net.lib has the ... /* * Determines the...
1902 GarTech Engineering
h.e.moore@... Send Email
Oct 2, 2001
7:54 pm
Try L-com, www.l-com.com PN series ECF504. ... From: sk.1@... [mailto:sk.1@...] Sent: Tuesday, October 02, 2001 12:12 PM To:...
1903 dhansen@... Send Email Oct 2, 2001
9:35 pm
If you're looking for high-end (i.e. expensive but industrial-class) you can check out Woodhead's new products: http://www.rjlnxx.com ... ...
1904 andronicsuk@... Send Email Oct 3, 2001
2:24 pm
I would like to know if anyone has tried using the Rabbit 2000 processor for counting digital inputs. The length of the input is 40ms and I believe that there...
1905 Hans W
xyz@... Send Email
Oct 3, 2001
3:15 pm
Use one of the interrupts. Just do as little in the ISR as possible, just increment the counter and perhaps set a global flag to tell some other function that...
1906 Lynn Wood
lwood@... Send Email
Oct 3, 2001
3:34 pm
... That should be fine, although you will actually need to use both external interrupts; see Technical Note 301, located at ...
1907 Lynn Wood
lwood@... Send Email
Oct 3, 2001
3:53 pm
Hey everyone- I keep unofficial stats on the rabbi-semi eGroup for Z-World, and just wanted to wish the mailing list a happy first birthday! It was created on...
Messages 1878 - 1907 of 41585   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help