To LUGNET HomepageTo LUGNET News HomepageTo LUGNET Guide Homepage
 Help on Searching
 
Post new message to lugnet.robotics.rcxOpen lugnet.robotics.rcx in your NNTP NewsreaderTo LUGNET News Traffic PageSign In (Members)
 Robotics / RCX / *3405 (-20)
  NQC and RCXCC
 
Using NQC together with RCXCC (by Mark Overmars) is a fine combination that fulfills my demands for writing software, debugging and testing. Unfortunately, Mark Overmars, the author of RCXCC will not do any further development for this product. (...) (24 years ago, 19-Oct-00, to lugnet.robotics.rcx.nqc)
 
  Connecting 2 RCXs
 
The IR interface is one way to establish a "connection" via messages between 2 RCXs and it works fine if both of the RCXs will receive a message - directly or by multiple reflections within the room. However, it is a slow communication. My problem (...) (24 years ago, 19-Oct-00, to lugnet.robotics.rcx.nqc)
 
  (canceled)
 
 
  Millenium and ActivePerl
 
Its been a while since I've posted in here, but I finally started my dissertation on Genetic Programming with Lego Mindstorms, and I'm already (day 1) having problems. I was ruuuunning Legos on a Win2K machine with no problems, however when I (...) (24 years ago, 19-Oct-00, to lugnet.robotics.rcx.legos)
 
  LNP Packet Handlers on RCX
 
I remember reading somewhere a while back, when I first started dabbling with LNP, that LNP handlers on the RCX side were called from interrupts and therefore doing things like memory allocation, msleep, heavy processing, etc. were not good ideas. (...) (24 years ago, 19-Oct-00, to lugnet.robotics.rcx.legos)
 
  Re: Vision Command
 
No. There isn't any. You cannot control the camera form NQC or the RCX for that matter. You can respond to the messages that the Camera sends to the brick via Message(). I hope this syntax is right.... until(Message)>0); switch(Message()) case 1: // (...) (24 years ago, 18-Oct-00, to lugnet.robotics.rcx.nqc)
 
  Vision Command
 
Is there syntax that I am missing to address the "Vision Command" camera? Thanx! Ed (24 years ago, 18-Oct-00, to lugnet.robotics.rcx.nqc)
 
  compiler problem - help needed please
 
Hello everybody I have installed the crosscompiler and legos 2.4 as descriped in the HOWTO. My system is redhat 7.0. The kernel seems to compile just fine, but whenever I try to compile one of the demo programs I get an error. Here is an output from (...) (24 years ago, 18-Oct-00, to lugnet.robotics.rcx.legos)
 
  text location for apps and q?
 
hi all, in Makefile.user there are BASE1 and BASE2 which point to 0xb000 and 0xb210. are those address changeable or are they defined by h8/300 platform? also what is makelx? what does it do with .ds1 and .ds2 which both are the same object file? (...) (24 years ago, 18-Oct-00, to lugnet.robotics.rcx.legos)
 
  RCX communication
 
Hi, (Sorry, my English is not good) I would like to know if it's possible to use legOS (LNP) to get communications between RCXs without the PC, I mean, without an intermediate between the RCXs. And, if it's possible, how can I do that ? I'm using 3 (...) (24 years ago, 17-Oct-00, to lugnet.robotics.rcx.legos)
 
  robotics competition
 
prizes: - three LEGO Droid Developer Kits - three LEGO Vision Comand - three Ultimate Accessory Sets Check it out under (URL) are: - Fred Martin MIT media lab - Scott Savage Marshal Space Flight Center, NASA - Dennis Clark Colorado State University (...) (24 years ago, 16-Oct-00, to lugnet.robotics.rcx.legos)
 
  LEGO robot competition
 
Hi LEGO robotics fans, I am organizing the “First Internet Robot Contest”, a robotics paper contest. Submit your bot in the “LEGO robot category” and win one of the following LEGO prizes: - three LEGO Droid Developer Kits - three LEGO Vision Comand (...) (24 years ago, 16-Oct-00, to lugnet.robotics.rcx)
 
  RE: Motion/Tilt Sensor from Analog Devices and the RCX
 
Not exactly.... The output is an analog voltage, meaning it's not exactly a digital TTL 0 volts or 5 volts, but ranges from 200mv (call this low) to Vcc-200mv (call this high). But this is a PWM output, meaning that with the chip stationary with (...) (24 years ago, 16-Oct-00, to lugnet.robotics.rcx, lugnet.robotics)
 
  Re: Motion/Tilt Sensor from Analog Devices and the RCX
 
Sorry for my ignorance, but doesnt the datasheets mention that it contains both analog and digital outputs and either may be used. Ram (...) (24 years ago, 16-Oct-00, to lugnet.robotics.rcx, lugnet.robotics)
 
  RE: Motion/Tilt Sensor from Analog Devices and the RCX
 
From looking at the data sheets, it's going to be a bit more of a project than just "hooking it up". At a minimum you'll need to have a small micro to decode the dual PWM outputs, and they (AD) have a data sheet describing the use of a Parallax (...) (24 years ago, 16-Oct-00, to lugnet.robotics.rcx, lugnet.robotics)
 
  Re: Memory Usage
 
(...) Ok, thanks. I'll try everything else first, then try this if I get desperate. The main thing I hit a wall with was when I switched to floating-point, which increased my .lx filesize by about 2k, so if I go back to fixed-point, turn sound off (...) (24 years ago, 15-Oct-00, to lugnet.robotics.rcx.legos)
 
  Motion/Tilt Sensor from Analog Devices and the RCX
 
Hi, I just order two free samples of Analog Devices ADXL202E at (URL) Anyone know if this can be hooked up to the RCX? Ram PS: Try to get a free subscription to "Sensors". It is a really cool magazine... (24 years ago, 15-Oct-00, to lugnet.robotics.rcx, lugnet.robotics)
 
  Re: Memory Usage
 
(...) changing (...) place for (...) program for (...) optimized for (...) working for (...) I've further investigated and you can gain some more bytes compiling kernel (and your programs) with -Os option instead of -O2 (Makefile.common, COPT (...) (24 years ago, 15-Oct-00, to lugnet.robotics.rcx.legos)
 
  Re: Memory Usage
 
(...) Well, I was thinking along the lines of having gcc optimize my program for space instead of speed. Of course, I'd be better off if *I* optimized for space instead of speed, but it can't hurt to have the compiler working for me, if it's (...) (24 years ago, 15-Oct-00, to lugnet.robotics.rcx.legos)
 
  Re: Memory Usage
 
(...) itself in (...) allocate (...) annoying, (...) You can test memory left using the routine from Eddie: (URL) Anyway, my question is, how can I reduce memory usage? I think cutting (...) HOWTO, (...) that (...) a (...) in (...) process is (...) (...) (24 years ago, 15-Oct-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