To LUGNET HomepageTo LUGNET News HomepageTo LUGNET Guide Homepage
 Help on Searching
 
Post new message to lugnet.robotics.rcx.legosOpen lugnet.robotics.rcx.legos in your NNTP NewsreaderTo LUGNET News Traffic PageSign In (Members)
 Robotics / RCX / legOS / *1344 (-20)
  Getting the Windows LegOS 0.2.3 compiler package to compile 0.2.4
 
I have been using Rossz Vámos-Wentworth's LegOS 0.2.3 distribution for Windows and it works beautifully. I was wondering if anyone has had any luck getting the new 0.2.4 release to work under this Windows distribution of LegOS? I copied the entire (...) (24 years ago, 3-Aug-00, to lugnet.robotics.rcx.legos)
 
  Re: Cygnus Installation troubles
 
tnx... finally got to borrow a clean machine and got it to work (0.2.4 really does do away with the need for perl)... yep, seems like mixing the two really did mess up my installation... chrís (...) (24 years ago, 2-Aug-00, to lugnet.robotics.rcx.legos)
 
  Re: dont't fear the reaper
 
(...) Jeeek. That did it, thank you. Got the new tm.c and now it all works. Mike (24 years ago, 1-Aug-00, to lugnet.robotics.rcx.legos)
 
  Multiple RCXs
 
In my latest and greatest idea I intend to run two RCXs together to control a fairly complicated arm. To do this I need to communicate with two RCXs from my PC (the program is actually going to be controlled from my PC). Now I haven't had much luck (...) (24 years ago, 2-Aug-00, to lugnet.robotics.rcx.legos)
 
  Re: Mindstorms firmware
 
(...) Thanks very much for everybodys help, I've got it sorted now. Rob. (24 years ago, 2-Aug-00, to lugnet.robotics.rcx.legos)
 
  Re: Mindstorms firmware
 
(...) I usually just pull out a battery for a second. Note that the RCX draws very little power when turned off, and thus can retain memory for a while even without any batteries (cacitance on the power supply rails hold the RAM for a while). A good (...) (24 years ago, 2-Aug-00, to lugnet.robotics.rcx.legos)
 
  Re: dont't fear the reaper
 
(...) You turned it off in between and by only having your mm.c patch zapped parts of legOS own memory. No program will survive an off/on with only your patch in 0.2.4. Eddie C. Dost ecd@skynet.be (24 years ago, 1-Aug-00, to lugnet.robotics.rcx.legos)
 
  Re: dont't fear the reaper
 
Michael and co.: If you want to do this type of testing, but don't want to mess with CVS, sourceforge automatically creates daily tarballs of the CVS tree, so that you can get a nearly completely up-to-date version of legOS from CVS without having (...) (24 years ago, 1-Aug-00, to lugnet.robotics.rcx.legos)
 
  Re: dont't fear the reaper
 
(...) Actually, I'm using 0.2.4, last downloadable version. With this, the memory eating problem is solved with my stated patch. Might be, that the new version has the tm.c changes? (I just press "run" to stop my program, then "run" to start it (...) (24 years ago, 1-Aug-00, to lugnet.robotics.rcx.legos)
 
  Re: Mindstorms firmware
 
(...) No idea why that wouldn't work, it always has for me. I hold down prgm and as soon as I hit on/off, there's a little beep and the thing shuts off. When I turn it back on, it's back to the regular stuff. Of course, you can always try taking out (...) (24 years ago, 1-Aug-00, to lugnet.robotics.rcx.legos)
 
  Mindstorms firmware
 
OK... Really DUMB question but I have to give my borrowed RCX back and buy my own so I went to remove legOS from my mates RCX to give it back and guess what... it won't go! :( I looked in the HOWTO and it says hold down Prgm and press the on.off (...) (24 years ago, 1-Aug-00, to lugnet.robotics.rcx.legos)
 
  Re: DJGPP firmdl
 
Try setting the environment variable RCXTTY (or RCX_TTY, I'm not sure) to your device name (e.g. RCXTTY=/dev/ttyS1; export RCXTTY). (...) (24 years ago, 1-Aug-00, to lugnet.robotics.rcx.legos)
 
  Re: solaris + legOS
 
(...) Actually you should refer to CVS files that are available from (URL) tree contains the Solaris patch too. Bye, Paolo. --- Gambling: The sure way of getting nothing for something. (24 years ago, 1-Aug-00, to lugnet.robotics.rcx.legos)
 
  DJGPP firmdl
 
I've been able to build all the tools under DJGPP, unfortunately, firmdl3.exe doesn't accept anything as a valid serial port name. I've tried "com1", "/dev/com1", /dev/ttyS0", etc, but nothing works. The message is either "not a tty" or "no such (...) (24 years ago, 1-Aug-00, to lugnet.robotics.rcx.legos)
 
  Re: questions, comments, and suggestions
 
(...) RCX_COMPILER is an internal gcc/egcs define, when patched correctly to support RCX interrupts. This is still used and useful, as it saves only the required registers, unlike the HANDLER_WRAPPER macro, which saves all volatile registers. (...) (...) (24 years ago, 1-Aug-00, to lugnet.robotics.rcx.legos)
 
  Re: dont't fear the reaper
 
(...) This change is correct, although it will not work by itself. Using only this all memory will be freed when the RCX is powered off, including program memory. To work correctly another change to tm.c is necessary, so memory allocated by kernel (...) (24 years ago, 1-Aug-00, to lugnet.robotics.rcx.legos)
 
  Re: Persistent globals
 
(...) Shure: static unsigned char matrix[100][100] __persistent = { { 0, }, }; Eddie C. Dost ecd@skynet.be (24 years ago, 31-Jul-00, to lugnet.robotics.rcx.legos)
 
  dont't fear the reaper
 
I've tried to test the maximum memory allocation possible in legOS. For that, I wrote the following test program: #include <conio.h> #include <unistd.h> #include <stdlib.h> int main( int argc, char **argv ) { int i; char *cp; i = 1; while( ( cp = (...) (24 years ago, 31-Jul-00, to lugnet.robotics.rcx.legos)
 
  questions, comments, and suggestions
 
Hello, I'm just rooting through the kernel code, and have a few questions: [note: after actually writing this, there not all questions, more comments, or suggestions. And there aren't just a few of them. Good luck getting through it! ;-) ] *) What (...) (24 years ago, 31-Jul-00, to lugnet.robotics.rcx.legos)
 
  Re: Persistent globals
 
(...) Hi again! I have found that this works with scalar variables. However, I need to make an array persistent. More specifically, I have a 100x100 matrix containing a population for use with genetic programming and I need to be able to keep this (...) (24 years ago, 31-Jul-00, to lugnet.robotics.rcx.legos)


Next Page:  5 more | 10 more | 20 more

Redisplay Messages:  All | Compact

©2005 LUGNET. All rights reserved. - hosted by steinbruch.info GbR