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 / *985 (-20)
  Re: legOS-0.2.1
 
Hi Jeffrey, that's an OS issue - your host system should define O_ASYNC. Some older systems define FASYNC instead, try that one. You can work around this more elegantly, too: #ifndef O_ASYNC #define O_ASYNC FASYNC #endif And hope for the best. (...) (26 years ago, 2-Nov-99, to lugnet.robotics.rcx.legos, lugnet.robotics.rcx)
 
  Re: idiot's guide to programming the rcx
 
(...) The almost universal answer to the question "what is the best/easiest alternative programming language for the RCX" is three little letters: "NQC." If you are at all comfortable with programming in a "scripted" language like BASIC, then you (...) (26 years ago, 2-Nov-99, to lugnet.robotics.rcx)
 
  idiot's guide to programming the rcx
 
Can anyone tell me the EASIEST alternate programming language to use for the rcx. I mean, back in the days of BASIC, I was one of my state's top student programmers. But that was in the eighties. (26 years ago, 2-Nov-99, to lugnet.robotics.rcx)
 
  RS232 Communication
 
Has anyone read data into an RCX from an external device using an RS232 serial connection? The device I'd like to use might be spitting out data at about 16Hz. Any information at all will be a help. Cheers, Barry. (26 years ago, 1-Nov-99, to lugnet.robotics.rcx)
 
  Re: legOS-0.2.1
 
(...) ==bulk of message removed (...) I'm getting a compile error when building the dll utility - an undefined symbol 'O_ASYNC' forgive my ignorance but how do I fix this? Thanks in advance, -=RoboCoder=- (26 years ago, 1-Nov-99, to lugnet.robotics.rcx.legos, lugnet.robotics.rcx)
 
  Re: Sharing variables and using expressions (was Re: NQC 2.0 and some math questions
 
Thanks, Dave! It will be good to have that in the manual, because it is a very confusing behavior that is difficult to track down. Variables take on values that are completely different from the values that the programmer is setting them to. Most (...) (26 years ago, 1-Nov-99, to lugnet.robotics.rcx.nqc)
 
  Using ROBOLAB for FIRST LEGO League
 
(An earlier version of this email was initially posted on thursday october 28th to lugnet.robotics) SLIGHTLY UPDATED FROM LAST WEEK: If your kids are using ROBOLAB in this years FIRST LEGO League, I've written a replacement for pages 27-36 in the (...) (26 years ago, 1-Nov-99, to lugnet.robotics.rcx.robolab)
 
  RE: fast firmware downloader
 
(...) Great! I was using Borland C++ 3.0 because I happened to have the diskettes around. Remember when a C++ compiler fit on 5 (five) 3.5 diskettes? I have no problem with keeping the existing filename structure. It's readable, it serves the (...) (26 years ago, 1-Nov-99, to lugnet.robotics.rcx)
 
  Re: fast firmware downloader
 
(...) I agree with your reasoning. The compiler I have decided to use (Watcom C/C++ v.11 from Powersoft) will compile from the platform I am developing on (NT 4) to the desired executing platform (DOS) and will use long file names just fine. Other (...) (26 years ago, 1-Nov-99, to lugnet.robotics.rcx)
 
  Re: fast firmware downloader
 
(...) Sorry, but I'm going to be stubborn on this one. I abhor short (often cryptic) filenames. In the NQC source tree, almost every class is in its own file, which is of course named after the class. So in a sense, truncating the filenames is more (...) (26 years ago, 1-Nov-99, to lugnet.robotics.rcx)
 
  New newsgroup lugnet.robotics.rcx.robolab
 
A new newsgroup/mailing-list lugnet.robotics.rcx.robolab has just been created. ROBOLAB is a cross-platform (PC & Mac) graphical environment for programming the LEGO® MINDSTORMS™ Robotics Invention System (e.g., RCX). ROBOLAB, like NQC, does not (...) (26 years ago, 1-Nov-99, to lugnet.announce, lugnet.robotics, lugnet.robotics.edu, lugnet.robotics.rcx.robolab, lugnet.loc.us.ma.bos, lugnet.admin.general)
 
  ------( Terms of use for lugnet.com )------
 
TERMS OF USE FOR LUGNET.COM OVERVIEW AND DEFINITIONS lugnet.com ("LUGNET") is a privately owned Internet site designed and run primarily for the benefit of those who enjoy building with, discussing, collecting, buying & selling, trading, and (...) (26 years ago, 1-Nov-99, to lugnet.robotics.rcx.robolab)
 
  ------( Welcome to lugnet.robotics.rcx.robolab )------
 
Welcome to lugnet.robotics.rcx.robolab, a LUGNET discussion group. CHARTER/PURPOSE: lugnet.robotics.rcx.robolab (group): Focused discussion group for ROBOLAB, a graphical environment for programming the LEGO® MINDSTORMS™ RIS: questions, comments, (...) (26 years ago, 1-Nov-99, to lugnet.robotics.rcx.robolab)
 
  Re: RCX 1.0 availablilty
 
(...) That and Lego must be investing in battery companies ... :) -Lee. (26 years ago, 31-Oct-99, to lugnet.robotics.rcx)
 
  Re: fast firmware downloader
 
I hate to admit it, but the version of Turbo C++ I just pulled out is 1.00. I departed from the Borland compiler shortly after acquiring this version and did not keep up with advances. Would I gain any advantages by finding a later version, or (...) (26 years ago, 31-Oct-99, to lugnet.robotics.rcx.legos, lugnet.robotics.rcx, lugnet.robotics.rcx.pbforth)
 
  RE: fast firmware downloader
 
(...) Yeah. Not sure about the hardware interface, though. Would it be possible to run the DOS executable to generate a binary and then download it otherwise? I too am not sure what this whole discussion is about- if it is just NQC, then it is (...) (26 years ago, 30-Oct-99, to lugnet.robotics.rcx.legos, lugnet.robotics.rcx, lugnet.robotics.rcx.pbforth)
 
  RE: fast firmware downloader
 
(...) I tried to do a DJGPP build of binutils and it didn't work for me. I really didn't want to spend more time futzing with the tools, and I was already using Cygwin, so I used one of the precompiled toolsets. I think you are just a lazy typer, (...) (26 years ago, 30-Oct-99, to lugnet.robotics.rcx)
 
  Re: fast firmware downloader
 
(...) Actually, lots of packages try to deal with filenames intelligently. QT, for example, has normal C++ NamingConventions, but uses lowercaseonly file names. I try to do the same. Notice how direct-sensor.h became dsensor.h in 0.2.0, as well as (...) (26 years ago, 30-Oct-99, to lugnet.robotics.rcx)
 
  RE: fast firmware downloader
 
(...) Wes and Dave, I pulled out an ancient copy of Turbo C++ 3.0 for DOS. It compiles most of the code but chokes on the >8 character file names. I might have to try Microsoft VC++ next....to make a DOS executable. I also found a DOS C Comm library (...) (26 years ago, 30-Oct-99, to lugnet.robotics.rcx.legos, lugnet.robotics.rcx, lugnet.robotics.rcx.pbforth)
 
  Re: fast firmware downloader
 
(...) Wes, A good place to start with the porting is to grab the latest NQC source code from www.enteract.com/~dbaum/nqc and take a look at the family of PSerial classes in the platform directory. Create a new class (e.g. PSerial_dos) that (...) (26 years ago, 30-Oct-99, to lugnet.robotics.rcx.legos, lugnet.robotics.rcx, lugnet.robotics.rcx.pbforth)


Next Page:  5 more | 10 more | 20 more

Redisplay Messages:  All | Compact

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