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 / *6750 (-20)
  Re: link error with binutils 2.13
 
Hi, (...) I'm running 3.1 and binutils 2.12.1. Did you have a 3.2 rpm-package? (...) You can get rid of these by making the #error string in config.h smaller. (...) Had the same problem with binutils 2.12.1-1. After a downgrade back to 2.12.1 all (...) (22 years ago, 2-Sep-02, to lugnet.robotics.rcx.legos)
 
  link error with binutils 2.13
 
hi, after a long time having a running legos 0.2.5, with gcc 2.95.2 and binutils 2.9.1, i decided to get legos 0.2.6 and use the opportunity to upgrade gcc to 3.2 and binutils to 2.13. Everything went smoothly (even the firmware seems to load (...) (22 years ago, 2-Sep-02, to lugnet.robotics.rcx.legos)
 
  Re: Vision Command and Visual Basic
 
Well, the truth is that managing VB, as you may agree is a breeze, so I couldn't find the password on time, but I did find the Logitech SDK which happens to be a quite good tool for VB and VC++, and everything went fine. You should be more (...) (22 years ago, 1-Sep-02, to lugnet.robotics.rcx.nqc)
 
  Re: Help with Clock
 
Hi Scott, (...) yes. It is like a big wall clock that shows milliseconds. (...) System.currentTimeMillis(); Note that this is a long integer. If you need more than one timer you can remember the time in variables and then compute the difference, (...) (22 years ago, 1-Sep-02, to lugnet.robotics.rcx.java)
 
  Re: Sensor Sampling
 
every time no ? nanobapt ----- Original Message ----- From: Steve Hassenplug <hassenplug@mail.com> To: <lugnet.robotics.rcx...ugnet.com> Sent: Friday, August 30, 2002 3:14 PM Subject: Sensor Sampling (...) measurement time (so I'm told) and I need (...) (22 years ago, 30-Aug-02, to lugnet.robotics.rcx.legos)
 
  Latest Firmware
 
Hey, does anyone have the latest firmware for NQC!! Please attach it to me or anyone else! Carson Au (22 years ago, 31-Aug-02, to lugnet.robotics.rcx.nqc)
 
  Sensor Sampling
 
Can anyone tell me how often the sensors are sampled in BrickOS? In the standard firmware, they are sampled every 3ms with a .02 measurement time (so I'm told) and I need to know if BrickOS is the same. Thanks Steve (22 years ago, 30-Aug-02, to lugnet.robotics.rcx.legos)
 
  Re: librcx & interrupt handler
 
Hi (...) i thought of that... but it seemed too easy... (...) here's what I wrote, and so far it seems to work proprly (tell me if I'm wrong): #include <timer.h> #include <null.h> #include <irq.h> static char _timer_data[64]; #define save_reg() (...) (22 years ago, 30-Aug-02, to lugnet.robotics.rcx)
 
  Re: javastorms
 
It would appear that javastorms is a project which allows a computer, running java applications to read/write to the RCX (using a BrickOS application on the RCX). leJOS differs in that the java run-time is loaded onto the RCX and the java code is (...) (22 years ago, 30-Aug-02, to lugnet.robotics.rcx.legos)
 
  javastorms
 
Hello everybody, someone here know what is the functional difference between leJOS and javastorms (www.javastorms.org) ? thankx regards (22 years ago, 29-Aug-02, to lugnet.robotics.rcx.legos)
 
  Re: librcx & interrupt handler
 
(...) You can do this in C. ((void(*)(void))0x36ab)(); (void(*)(void)) is a cast to make 0x36ab a pointer to a void function with no parameters. You then take that and use it as a function. You still have to be careful about register usage and use (...) (22 years ago, 29-Aug-02, to lugnet.robotics.rcx)
 
  Help with Clock
 
I am using legjos and... having problems understanding the clock/timers. 1. Are their only one timer clock? 2. How do you acess the timers clock? What code would I use? Scott (22 years ago, 29-Aug-02, to lugnet.robotics.rcx.java)
 
  Re: Legos or Lejos
 
Hi Geeraard, Well, it mostly depends on what is your favorite language. If you're a hard-core C coder and don't mind working in a difficult coding environment, LegOS might be for you. Otherwize I would recommend leJOS. Note that in the past, LegOS (...) (22 years ago, 29-Aug-02, to lugnet.robotics.rcx.java, lugnet.robotics.rcx.legos)
 
  Re: librcx & interrupt handler
 
hi, I have another question about interrupt handlers. I would like to know how (if it is possible) I could call the ROM OCIA handler. The reason is that I would like to execute a small task periodicaly but if I simply redirect the OCIA handler (...) (22 years ago, 29-Aug-02, to lugnet.robotics.rcx)
 
  Re: Use RCX motor output to switch devices
 
Hi all! The quest continues: I have now (with the help of the posters at circuitsonline.net) designed a circuit that should do the trick (clicking the link below should reveal a schematic representation of the circuitry). "(URL) Although I wonder if (...) (22 years ago, 29-Aug-02, to lugnet.robotics.rcx)
 
  Re: Vision Command and Visual Basic
 
(...) that's an optimistic planning ;-) (...) (22 years ago, 28-Aug-02, to lugnet.robotics.rcx.nqc)
 
  Legos or Lejos
 
Hello, I was wondering which OS to use for my RCX. ( Legos or Lejos) I've searched the internet and found out that Lejos is newer than Legos and had in the past not all the functions of Legos. Is there any change in this? I need the RCX to RCX (...) (22 years ago, 28-Aug-02, to lugnet.robotics.rcx.java, lugnet.robotics.rcx.legos)
 
  Re: librcx & interrupt handler
 
(...) The ROM already supports a buffer size of 1 if that is enough for you. The ROM receives a message asynchronously into that buffer, and you can check it whenever you like and respond accordingly. The code I linked to should help you with buffer (...) (22 years ago, 28-Aug-02, to lugnet.robotics.rcx)
 
  Re: LNPD and Cygwin
 
there was some old development version... we're glad we noticed by ourselves for lack of feedback. maybe lubnet is way too restrictive? the new url: (URL) (22 years ago, 28-Aug-02, to lugnet.robotics.rcx.legos)
 
  Re: librcx & interrupt handler
 
Hello, First, thanx for your answer, I'll be looking at the code and link you mentioned, today, it may very well answer the question I have... (...) everyone, (...) (URL) (...) programs for RCX, and up till now it works (...) like to set my own (...) (22 years ago, 28-Aug-02, to lugnet.robotics.rcx)


Next Page:  5 more | 10 more | 20 more

Redisplay Messages:  All | Compact

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