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 / *6555 (-100)
  detecting memory leaks
 
In the thread "anyone know how to check free space on RCX?" the issue of checking for memory leaks was raised. I wanted to mention that I have some code that may help in that area. I wrote a function for the memory manager called mm_defrag() It (...) (22 years ago, 12-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: anyone know how to check free space on RCX?
 
(...) The header is ok, but int is 2 bytes = 16 bit. You can check this with this highly optimized program: #include <conio.h> int main(int argc, char *argv[]) { lcd_int( sizeof( int ) ); for(;;) ; return 0; } And in the kernel sources, mm.c says (...) (22 years ago, 12-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: anyone know how to check free space on RCX?
 
(...) This can't be right. I'm about 99% sure that all of the ints I've used with my legOS programs have been 2 bytes. When using LNP to send RCX ints to a PC, for example, you have to use short on the PC end of things to make it all work right. (...) (22 years ago, 12-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: anyone know how to check free space on RCX?
 
(...) My sources (gcc-3.0) say: #define INT_TYPE_SIZE (TARGET_INT32 ? 32 : 16) A short experiment revealed that sizeof(short)=sizeof(int)=2, sizeof(long)=4. So int is normally 16bit. Only with the switch "-mint32" I get 32 bit ints. This is with a (...) (22 years ago, 12-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: anyone know how to check free space on RCX?
 
(...) According to config/h8300/h8300.h in the gcc sources, int is 32bit for the h8 cross compiler. I believe the reason mm_free_mem() returns an int is because the memory manager stores the size of each free block as size_t, which is defined in (...) (22 years ago, 12-Jul-02, to lugnet.robotics.rcx.legos)
 
  Bricxcc
 
Does anyone know what's up with; (URL) need the latest download, and I can't even get into the site. If anyone has the latest download, please email me privately. Thanks, JB (22 years ago, 12-Jul-02, to lugnet.robotics.rcx)
 
  Re: LBrick.com is up and running
 
(...) I'm feeling free and I think it's a nice page with some interesting projects! I'll add your page to the "to be added on the links page"-list I keep for LoTek :) Best regards, /Tobbe (22 years ago, 11-Jul-02, to lugnet.general, lugnet.cad, lugnet.robotics.rcx, lugnet.technic)
 
  Re: anyone know how to check free space on RCX?
 
(...) int is defined as the natural width of the processor, which on a 16-bit processor is 16 bits. longs are 64 bits on some machines as well, so you can't assume it is always 32 bits -- if your code cares, use sizeof. (...) 32-bit math on the H8 (...) (22 years ago, 12-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: anyone know how to check free space on RCX?
 
That is very interesting Jason. It is interesting that mm_free_mem() returns a 16bit value using a 32bit return code. Both int and long are 32bit value on most computers/compilers these days; short would be a 16bit value; and char would be an 8bit (...) (22 years ago, 11-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: anyone know how to check free space on RCX?
 
While the declaration for mm_free_mem is int mm_free_mem(void) The fact is that the RCX has only 32K of memory available. 32K in hex is 0x8000... there's never a need for more than 4 digits in hex. Looking at key_handler() in kernel/program.c (the (...) (22 years ago, 11-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: HOWTO Demo.c
 
Brilliant! Brilliant! It works! Many Thanks to Micheal Obenland and also to Steve Hassenplug Best Regards Shehryar "Michael Obenland" <obenland@t-online.de> wrote in message news:Gz1xAM.Inn@lugnet.com... (...) some (...) ---...--- (...) ---...--- (...) (22 years ago, 11-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: anyone know how to check free space on RCX?
 
Albert Huang, Sorry for the confusion. "most significant" = upper 16 bits and "least significant" = lower 16 bits (the free memory is a 32 bit value). If you write the values out, you will get the 32 bit value (both values are hex) ... for example: (...) (22 years ago, 11-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: anyone know how to check free space on RCX?
 
(...) v0.2.6) When you press the View button (with no program running) LegOS will (...) Joseph, what do you mean by most significant / least significant? I'm under the impression that those two calls just display the same value, in decimal first and (...) (22 years ago, 11-Jul-02, to lugnet.robotics.rcx.legos)
 
  RE: Re: Scheduler patch
 
Can someone please tell me how to unsubscribe from this group! Thanks, - Subir -----Original Message----- From: news-gateway@lugnet.com [mailto:news-gateway...net.com]On Behalf Of Ed Manlove Sent: Wednesday, July 10, 2002 8:49 PM To: (...) (22 years ago, 11-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: Re: Scheduler patch
 
Joseph, Not to add too much work load, if you have a chance could you give an overview of the proposals out there for the task scheduling and sensor modifications (if any). This could be simply a quick list of lugnet.robotics.rcx.legos threads which (...) (22 years ago, 11-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: HOWTO Demo.c
 
(...) Well, that's much easier than all the crap I was going through. I guess it helps if you actually know what you're talking about. Thanks Steve (22 years ago, 10-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: HOWTO Demo.c
 
To solve your problems with demo.c, you sent me your source. There are some problems with it, but I think they are intresting enough to say something about them. The big problem you get with your program is caused by your main function: ---...--- (...) (22 years ago, 10-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: Java version of DiscShooter
 
I think it would be a great idea to have a fixed robot design and a specified behaviour for that robot and then for people to write various applications to make it work. Is this disc shooter design available somewhere? (...) SNip to keep lugnet (...) (22 years ago, 10-Jul-02, to lugnet.robotics.rcx.java)
 
  Re: Controlling Multiple RCX's from one PC
 
Lawrie Griffiths has majorly reworked the RCX communications support in leJOS. His architecture allows you to define protocol stacks that sit on top of a basic transport mechanism. He has implemented support for the LNP stack used in legos - which (...) (22 years ago, 10-Jul-02, to lugnet.robotics.rcx.java)
 
  ***legOS new name : deadline is 18.07.***
 
As Steve mentioned, the 23.07. is too late for the announcement of the new name at Brickfest. I think it would be great to do so, so I decided to make the deadline at Thursday, 18.07. I will publish the new name around midnight of the 18.07 and (...) (22 years ago, 10-Jul-02, to lugnet.robotics.rcx.legos)
 
  lnp error message..huh?
 
woolley thnx for the tip on checking the RCX memory.. now i have another question.. after having run continous messages back and forth between the RCX and my program on my PC for ~10 minutes. i get this error message: ---...--- Transmit error: (...) (22 years ago, 10-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: Re: Scheduler patch
 
(...) I'd built a maze solver. When the solver makes a step (for example forward) it uses the light sensor to search for a wall and the rotation sensor to measure the distance it has traveled. If a wall is hit, the solver steps back until it reaches (...) (22 years ago, 10-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: Re: Scheduler patch
 
"Joel Uddén" wrote (...) not (...) Actually, each task gets equal "wakeup" checking. The only difference between a low priority task and a high priority task is that the high priority task gets a larger time-slice when it is awake. This is not an (...) (22 years ago, 10-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: Re: Scheduler patch
 
(...) Thanks for the link, your solution of proportional timeslicing is more straightforward than mine which I like. The only downside would be that a high prioritized process would have it's wakeup conditions checked less frequently than a low (...) (22 years ago, 10-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: anyone know how to check free space on RCX?
 
kenneth, I believe the code you are looking for is used in program.c (for LegOS v0.2.6) When you press the View button (with no program running) LegOS will show you "FREE", press again, you will get the most significant portion of the free memory (...) (22 years ago, 10-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: *** legOS new name - second ballot ***
 
Is there any way voting could be cut down to one week? It would be really nice to have a formal new name before Brickfest (July 19-21). Please send your vote, (...) (22 years ago, 9-Jul-02, to lugnet.robotics.rcx.legos)
 
  *** legOS new name - second ballot ***
 
Wow, the LEGOS group folks are fast! Both osmOS and brickOS are good for them, so I start the last and ultimate ballot. Please send your vote, either for brickOS or for osmOS, with the usual identification phrase, to legOS-namepoll@gmx.de The last (...) (22 years ago, 9-Jul-02, to lugnet.robotics.rcx.legos)  
 
  legOS new name - result and new problems
 
Hi out there, I know you are anxious to hear about the new name of legOS. Good news first: you don't have to flood my mail folder, here it goes... Here is the list of the names together with the phrases, if I got one. So everyone can see if his vote (...) (22 years ago, 9-Jul-02, to lugnet.robotics.rcx.legos)
 
  anyone know how to check free space on RCX?
 
hi all...after a while my RCX hangs and i think i might have a memory leak somewhere. anyone have, or know of, a function which i can use to check the available memory while my program is running ? regards kenneth johansen kennethj@stud.cs.uit.no (22 years ago, 9-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: HOWTO Demo.c
 
Can you tell which line it's locking up on? Try commenting out lines until it doesn't lock up (or until you run out of lines) ----- Original Message ----- From: "Shehryar Shaheen" <shehryar.shaheen@ul.ie> Date: Tue, 9 Jul 2002 15:42:56 GMT To: (...) (22 years ago, 9-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: HOWTO Demo.c
 
That is correct each Task started has a higher priority and they all have a higher prority than task_swapper like Prio Task 1 -- Task Swapper 2 -- Motor Driver Task 3 -- Light Sensor Task 4 -- Touch Sensor I changed the all the priorities to 1 but I (...) (22 years ago, 9-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: HOWTO Demo.c
 
If I understand this correctly (which I doubt) each task you start, has a higher priority, and they all have a higher priority than the 'task_swapper' task. Try setting all the priorities the same. Like to 1. See what that does. (...) (22 years ago, 9-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: HOWTO Demo.c
 
The code I have taken out of HOWTO.ps (URL) given at the end of the document under the name Demo.c I have fixed some compile time errors (like mismatching process ids in the kill call, the function for getting button state is dbutton() and not (...) (22 years ago, 9-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: HOWTO Demo.c
 
I'm no expert, but I can try to help you figure it out. Let's start with something simple. What version of LegOS are you using? How are you starting the 'task_swapper' task? What is in the 'motor_driver' task? At one time, when I was working with (...) (22 years ago, 9-Jul-02, to lugnet.robotics.rcx.legos)
 
  HOWTO Demo.c
 
Need Help, if someone has faced such a problem or knows the fix please do reply. In the legOS Howto their is a demo code demo.c which has some task switching examples I am having trouble with the following piece of code int task_swapper() { (...) (22 years ago, 9-Jul-02, to lugnet.robotics.rcx.legos)
 
  RE: [ANN] pbForth Version 2.1.5 Release and IR Data Tutorial
 
(...) Mario, I'm glad that this has fixed the problem. I hope that you are making good progress with pbForth and that you're enjoying yourself... Cheers, Ralph (22 years ago, 9-Jul-02, to lugnet.robotics.rcx, lugnet.robotics.rcx.pbforth)
 
  Re: [ANN] pbForth Version 2.1.5 Release and IR Data Tutorial
 
Hi Ralph, I don't know if you remember, but I had problems with SAVE-SYSTEM (see msg# 508)... until now! Just to let you know, with pbForth V2.1.5 and (more likely) GUI V2.1.3, it works fine! Thanks Mario (...) (22 years ago, 9-Jul-02, to lugnet.robotics.rcx, lugnet.robotics.rcx.pbforth, lugnet.robotics.rcx.legos)
 
  Re: Controlling Multiple RCX's from one PC
 
Hi! all, I've posted a similar topic before titled "control multiple mindstorms robots using 1 IR tower", so I'd also like to get more info. about this related issue.If someone is generous to open his coding, I'll greatly apprecidate it! Hope (...) (22 years ago, 8-Jul-02, to lugnet.robotics.rcx.java)
 
  some lnp thoughts
 
hi all, im sitting here wondering if i should use lnp_addressing_write or lnp_integrity_write. The thing is that im writing a "sliding windows" protocol that might be used by other students here at the local university this autumn (as well as in my (...) (22 years ago, 8-Jul-02, to lugnet.robotics.rcx.legos)
 
  RE: [ANN] pbForth Version 2.1.5 Release and IR Data Tutorial
 
(...) Stupid cut and paste error on my part. It's fixed now... Cheers, Ralph (22 years ago, 8-Jul-02, to lugnet.robotics.rcx, lugnet.robotics.rcx.pbforth, lugnet.robotics.rcx.legos)
 
  LBrick.com is up and running
 
All, I have just finished getting my new site running ((URL) it contains various Lego projects that I have been working on, including... - Lego CAD stuff - LMosaic (my Lego mosaic software) - LRex - a mindstorms biped that I built. Anyway go check (...) (22 years ago, 8-Jul-02, to lugnet.general, lugnet.cad, lugnet.robotics.rcx, lugnet.technic)
 
  Re: [ANN] pbForth Version 2.1.5 Release and IR Data Tutorial
 
Hi Ralph, I just tried the latest version and I can't setup the IR port (mine is USB). I get the following message: Error: can't read "portID": no such variable Works fine with the previous version. Thanks Mario (...) (22 years ago, 8-Jul-02, to lugnet.robotics.rcx, lugnet.robotics.rcx.pbforth, lugnet.robotics.rcx.legos)
 
  [ANN] pbForth Version 2.1.5 Release and IR Data Tutorial
 
The new 2.1.5 Version of pbForth has a minor fix that affected programmers using the MARKER and LEAVE words. Thanks to Alexander Cech of Austria for supplying great bug reports! I recommend you get the new 2.1.3 GUI while you're at it because it (...) (22 years ago, 8-Jul-02, to lugnet.robotics.rcx, lugnet.robotics.rcx.pbforth, lugnet.robotics.rcx.legos)
 
  Re: Controlling Multiple RCX's from one PC
 
Hi, Roger and Jonathan!! I'd like to get your code too as I'm also interested to do the same thing as Jonathan. Would you mind also sending your source code about controlling multiple mindstorms using one PC to me? I'd like to have more exchange (...) (22 years ago, 8-Jul-02, to lugnet.robotics.rcx.java)
 
  Re: Controlling Multiple RCX's from one PC
 
(...) Source code will help. Thanks. Jonathan D. (22 years ago, 7-Jul-02, to lugnet.robotics.rcx.java)
 
  Re: Controlling Multiple RCX's from one PC
 
(...) Hi Jonathan, I send messages from the PC to 3 RCX's with no problem, but I use the Tower object running on my PC, and Serial in the RCX. I don't use Stream objects because they actually only send one byte at a time and not yet very reliable. (...) (22 years ago, 7-Jul-02, to lugnet.robotics.rcx.java)
 
  Updated NQCEdit
 
Hi Everyone! NQCedit version 1.61 is released. The change is a bugfix to reflect the the changes of Nqc return codes. So if you are running Nqc 2.4. r1 or higher you need to update to version 1.61. The new version can be found at (URL) Eriksson (22 years ago, 7-Jul-02, to lugnet.robotics.rcx.nqc)
 
  Controlling Multiple RCX's from one PC
 
I'm working on a project that requires four RCX's to be controlled by one laptop. The program on the laptop is written in Java and the program on the RCXs is written in lejos. I'm using RCXPort to establish a connection between them. The problem I'm (...) (22 years ago, 7-Jul-02, to lugnet.robotics.rcx.java)
 
  Re: Re: Scheduler patch
 
I posted some code and a simple explaination of my implementation. Here is the link: (URL) me know if you need clarification or want more information/code (I have the .tar.gz to compile a LegOS kernel that is somewhere between 2.6 and 2.7 and my (...) (22 years ago, 7-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: Problems with changing LNP_HOSTADDR
 
did it work now ? nanobapt ----- Original Message ----- From: Kai Koehne <Kai.Koehne@student....otsdam.de> To: <lugnet.robotics.rcx...ugnet.com> Sent: Friday, July 05, 2002 1:52 PM Subject: Problems with changing LNP_HOSTADDR Hi, since a few hours, (...) (22 years ago, 6-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: Lego IR serial tower!
 
Hi! Agnus, I'm really sorry for my previous mail without acknowledge you! Where do you live? in US? How much do you want to sell your IR serial tower? is it in a good condition? Are you using JavaAPI or anything else to control mindstorms robot as (...) (22 years ago, 6-Jul-02, to lugnet.robotics.rcx)
 
  Re: Lego IR serial tower!
 
Hi! Thanks for Maggie first! Second, Where do you live? in US? How much do you want to sell your IR serial tower, is it in a good condition. Have you used JavaAPI or anything else to control it, are you working on windows9x enviroment, I 'd like to (...) (22 years ago, 5-Jul-02, to lugnet.robotics.rcx)
 
  Re: Lego IR serial tower!
 
look on ebay ? I'd sell you mine (and buy a USB one) but the postage from here to HK might be huge? "Laurence Yip" <95459906@moscow.cityu.edu.hk> wrote in message news:3D259F9E.9B8891....edu.hk... (...) (22 years ago, 5-Jul-02, to lugnet.robotics.rcx)
 
  Re: Lego IR serial tower!
 
(...) Go to Bricklink (URL) order one. (Everyone listing these ships internationally!) HTH-- Maggie C. (22 years ago, 5-Jul-02, to lugnet.robotics.rcx)
 
  Lego IR serial tower!
 
Hello! I'd like to use leJOS on linux but it seems not so good support for usb IR tower, so I'd like to get one IR serial tower like the one from RIS 1.0/1.5, as no parts' sales in HK. Can anyone tell me what should I do? Rgds, Laurence (22 years ago, 5-Jul-02, to lugnet.robotics.rcx)
 
  Re: Problems with changing LNP_HOSTADDR
 
(...) With the default CONF_LNP_HOSTMASK (0xf0), the host adress is encoded in the higher 4 bits, so you should write #define CONF_LNP_HOSTADDR 0x10 Eric (22 years ago, 5-Jul-02, to lugnet.robotics.rcx.legos)
 
  Problems with changing LNP_HOSTADDR
 
Hi, since a few hours, I'm trying to give an RCX another LNP_HOSTADDR - so I changed the appropriate line in boot/config.h from #define CONF_LNP_HOSTADDR 0x00 //!< LNP host address to #define CONF_LNP_HOSTADDR 0x01 //!< LNP host address and compiled (...) (22 years ago, 5-Jul-02, to lugnet.robotics.rcx.legos)
 
  Re: Displaying info while debugging
 
Hi Ralph, I mentionned a while ago (see msg #508) that I have a problem with SAVE-SYSTEM. Could it be the same problem? Could it related to the USB driver and that, while saving the system, there is no period of inactivity and the buffer gets full (...) (22 years ago, 4-Jul-02, to lugnet.robotics.rcx.pbforth)
 
  Re: Linux driver for USB tower
 
Hi, (...) Good point. The tar file can be found at (URL) (22 years ago, 2-Jul-02, to lugnet.robotics.rcx.nqc, lugnet.robotics.rcx.pbforth)
 
  Re: Displaying info while debugging
 
Here it is... : wait 15 0 timer_SET BEGIN 0 timer_GET 0= UNTIL ; I go with 0,15 seconds to be on the safe side; 0,10 seconds is too border line. So now, the first example becomes: : TEST 100 0 DO I CR . wait 7 1 0 MOTOR_SET LOOP 7 4 0 MOTOR_SET ; (...) (22 years ago, 3-Jul-02, to lugnet.robotics.rcx.pbforth)
 
  Re: Displaying info while debugging
 
Thanks a lot Ralph, And I'm sure you're right. I tried this: 10000 VALUE CTR : test 100 0 DO I CR . CTR 0 DO LOOP LOOP ; For CTR > 11000, the numbers are displayed one at a time. Below 11000, they're displayed in batch. So, it probably means that (...) (22 years ago, 3-Jul-02, to lugnet.robotics.rcx.pbforth)
 
  RE: Displaying info while debugging
 
(...) Mario, I did some checking and I think the real issue is with the USB driver from LEGO. The serial tower does not exhibit this behaviour. It has its own problems, which include falling asleep after 2 seconds of inactivity. So, as far as I can (...) (22 years ago, 2-Jul-02, to lugnet.robotics.rcx.pbforth)
 
  make a mindstorms robot as telerobot!
 
Hello, everyone! It's my first time to send a message here! I've a project which requires me to make a mindstorms robot as telerobot. I'd like to use Java as core control programming language! So far, I just know there're several kinds of (...) (22 years ago, 2-Jul-02, to lugnet.robotics.rcx)
 
  HOWTO Demo.c
 
I was able to fix the previous problem regarding the light sensor Thank u Joseph Woolley for your reply. I have another one In the legOS Howto their is a demo code demo.c which has some task switching examples I am having trouble with the following (...) (22 years ago, 2-Jul-02, to lugnet.robotics.rcx.legos)
 
  HOWTO Demo.c
 
I was able to fix the previous problem regarding the light sensor Thank u Joseph Woolley for your reply. I have another one In the legOS Howto their is a demo code demo.c which has some task switching examples I am having trouble with the following (...) (22 years ago, 2-Jul-02, to lugnet.robotics.rcx)
 
  Re: pbForth vs RCX 1.0
 
(...) Yes, please :-) I actually knew the EMIT and KEY words, but had never thought of using them to make two RCXs communicate. For some stupid reason in my head I was expecting some special API words was necessary to manage this communcation, while (...) (22 years ago, 2-Jul-02, to lugnet.robotics.rcx.pbforth)
 
  RE: Linux driver for USB tower
 
(...) Richard, That's great, but I just realized there is no URL....how can we test it if we can't find it? :-) Cheers, Ralph (22 years ago, 2-Jul-02, to lugnet.robotics.rcx.nqc, lugnet.robotics.rcx.pbforth)
 
  RE: CPR for RCX?
 
(...) ld is a linker. It takes the object code generated by the assebles and "links" it together to form an image that can be loaded. The file: ld/h8300_rcx.ld specifies how the objects are stiched together. (...) No, the firmware uploader splits (...) (22 years ago, 1-Jul-02, to lugnet.robotics.rcx.pbforth)
 
  Re: CPR for RCX?
 
(...) I knew Assembler would come into play sooner or later. I have downloaded a copy of the H8/300 Assembly language spec. What I still don't understand is how you turn the object code into 'S'-type records with 'ld'? (...) Can I assume the RCX has (...) (22 years ago, 1-Jul-02, to lugnet.robotics.rcx.pbforth)
 
  *** name poll: make your votes reminder ***
 
This is a reminder for all of you who have not voted for the new legOS name. Now is YOUR turn. I've collected the names and present them at the end of this posting. You can vote for ONE ( 1 ) name. Send an eMail to legOS-namepoll@gmx.de with: - the (...) (22 years ago, 1-Jul-02, to lugnet.robotics.rcx.legos)
 
  RE: pbForth vs RCX 1.0
 
(...) What you describe would work exactly. Normally, the "outer interpreter" of pbForth waits for input using "KEY" - which of course is just a char from the IR. You can make a special word that waits for anything you like... Cheers, Ralph (22 years ago, 30-Jun-02, to lugnet.robotics.rcx.pbforth)
 
  RE: CPR for RCX?
 
(...) You're pretty much OK until point 4. TCL is used to compile the pseudo code for pbFOrth into assembler source code. From there the GNU as program assembled the object code and ld links it and eventually produces the S records. S records are (...) (22 years ago, 30-Jun-02, to lugnet.robotics.rcx.pbforth)
 
  RE: Linux driver for USB tower
 
(...) Richard, this is great! What device name does the new tower driver use. I hope to be able to use my Tcl/Tk GUI for this purpose. It would be really great to get USB support for pbForth into the Linux world. The serial port has always been (...) (22 years ago, 30-Jun-02, to lugnet.robotics.rcx.nqc, lugnet.robotics.rcx.pbforth)
 
  FW: pbForth vs RCX 1.0
 
-----Original Message----- From: rhempel@bmts.com [mailto:rhempel@bmts.com] Sent: Thursday, June 27, 2002 4:21 AM To: Mario Ferrari; lugnet.robotics.rcx....lugnet.com Cc: rhempel@bmts.com Subject: Re: pbForth vs RCX 1.0 Can RCX 2.0 communicate with (...) (22 years ago, 30-Jun-02, to lugnet.robotics.rcx.pbforth)
 
  Re: Light Sensor Problem
 
I had similar problems, so I added a bit of code to display the light sensor value on the LCD. I then placed the bot on the test pad and observed the various numbers as it crossed from white to green and black. I then updated the linetrack.c with (...) (22 years ago, 29-Jun-02, to lugnet.robotics.rcx.legos)
 
  Linux driver for USB tower
 
Hi, I have a working linux driver for the lego USB tower; so far it has only been tested on kernel 2.4.14 on a uhci system, where it has worked without any problems. Anyone feel like testing it out on their own system (to use it, you will need to be (...) (22 years ago, 28-Jun-02, to lugnet.robotics.rcx.nqc, lugnet.robotics.rcx.pbforth)
 
  Re: control multiple mindstorms robots using 1 IR tower!
 
(...) found it! BattleBricks at (URL) the "Remote Control" link under "Support" on the sidebar on the left. (22 years ago, 27-Jun-02, to lugnet.robotics.rcx)
 
  Re: pbForth vs RCX 1.0
 
Thanks, Just to make sure, let's take an example. Let's say that I have two RCX, named A and B. What if the program in RCX B is waiting for a character on the instruction KEY and RCX A sends a character, let's say '5' (ASCII 52) with 52 EMIT ? That (...) (22 years ago, 27-Jun-02, to lugnet.robotics.rcx.pbforth)
 
  Re: pbForth vs RCX 1.0
 
"Mario Beaulieu" <mariobeaulieu@videotron.ca> writes... (...) Yes. I run pbForth on RCX 1.0, 1.5 and 2.0. No differences. (...) No, to my knowledge. In pbForth the IR port is entirely devoted to communication between the brick and the terminal. (...) (22 years ago, 27-Jun-02, to lugnet.robotics.rcx.pbforth)
 
  Light Sensor Problem
 
Hello, I have been trying out the demo programs in legOS. all demos worked fine except linetrack.c. When I download linetrack.lx in the RCX (RCX2.0) and put it on the test pad that comes with mind storm the bot goes srtaight. It does not recognize (...) (22 years ago, 27-Jun-02, to lugnet.robotics.rcx.legos)
 
  Any news on USB support for linux?
 
Hi there, Is there any news on the development of support for the USB IR tower under linux? I found a HOWTO on the net by Ryan Simmons which claims to be able to get the tower working using a patch written by Bret Thaeler. (URL) anyone been able to (...) (22 years ago, 26-Jun-02, to lugnet.robotics.rcx.legos)
 
  pbForth vs RCX 1.0
 
Hi, Is pbForth fully compatible with RCX 1.0? Can RCX 2.0 communicate with RCX 1.0 in pbForth (using IR ports)? Thanks Mario (22 years ago, 26-Jun-02, to lugnet.robotics.rcx.pbforth)
 
  usb under windows
 
Hello! I purchased a Mindstorms 2.0 with USB tower half a year ago and now I want to play with it... My computer is running WinMe so I downloaded the winlegos.exe package from the legos page. When running firmdl3 it complains that it can't find the (...) (22 years ago, 26-Jun-02, to lugnet.robotics.rcx.legos)
 
  liblnp for windows
 
hi there, we have ported liblnp for windows, with vc++ 6.0. the daemon lnpd still has to run under linux. where can we put the source for the benefit of all? michael ps: could it be lnp was broken from legos-0.2.5 to 0.2.6? (22 years ago, 26-Jun-02, to lugnet.robotics.rcx.legos)
 
  pbForth questions
 
The output of my compiler typically looks like: \ Begin code sample FORTH CODE ... ... : ENTRYPOINT ... ; 0 ENTRYPOINT \ End code sample Or, in other words, I'm currently (and this isn't permanent) not allowing programs to be compiled that do not (...) (22 years ago, 26-Jun-02, to lugnet.robotics.rcx.pbforth)
 
  Re: Error opening //./legotower1
 
/ted (and Ingolf) Thanks for this pointer. It works. /ed OOPS that should be \ed (...) (22 years ago, 26-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: control multiple mindstorms robots using 1 IR tower!
 
yes - have to use messages - there's an app somewhere that allows multiple RCXs to be RCed that was developed for BrickWars I think, multiple games pads on one PC control an RCX each. Principle is, each RCX is coded to obey a set of messages in a (...) (22 years ago, 21-Jun-02, to lugnet.robotics.rcx)
 
  Re: Error opening //./legotower1
 
Ed - Take a look at patch [568061] posted on SourceForge by 'Ingolf'. The problem looks easily resolved by changing the '/'s to '\'s. I have not had a chance to verify this fix myself yet. /ted "Ed Manlove" <emanlove@ieee.org> wrote in message (...) (22 years ago, 25-Jun-02, to lugnet.robotics.rcx.legos)
 
  Error opening //./legotower1
 
I am getting a common (apparent in the legos newsgroup) error "Error 53: Opening //./legotower1" when I try to download a program. I do successfully use firmdl3 to download the kernel even using the --tty=usb option. But when I try to download a (...) (22 years ago, 24-Jun-02, to lugnet.robotics.rcx.legos)
 
  *** name poll 2nd phase: make your votes ***
 
Now is YOUR turn. I've collected the names and present them at the end of this posting. You can vote for ONE ( 1 ) name. Send an eMail to legOS-namepoll@gmx.de with: - the name you vote for - a phrase, choosen by you for example: I vote for: (...) (22 years ago, 24-Jun-02, to lugnet.robotics.rcx.legos)
 
  legOS new name: a remark
 
some of you may have noticed that I didn't include some names. I contacted the LEGO group and asked them about their feelings for a new name. I got the following answer: The new name should not include any of our trademarks, such as: LEGO, (...) (22 years ago, 24-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: RCX infra-red code
 
hi Vincent, you might take a look here (URL) Mientki (...) In lugnet.robotics.rcx, Vincent Grace writes: (...) (22 years ago, 22-Jun-02, to lugnet.robotics.rcx)
 
  RCX infra-red code
 
Hey! Does anyone know what signals to send from a non-mindstorms infra-red transmitter to the RCX? (For instance how to send "message 1" to the RCX.) You can e-mail your answers to <kttgrace@eircom.net>. (22 years ago, 17-Jun-02, to lugnet.robotics.rcx)
 
  control multiple mindstorms robots using 1 IR tower!
 
Hi all! I'd like to control multiple mindstorms robots using one IR tower with replacing the default firmware for RCX unit to leJOS! Is it possible? I do consider the problem of how to distinguish the different RCX units inside the robots within the (...) (22 years ago, 20-Jun-02, to lugnet.robotics.rcx)
 
  Re: DJGPP & LegOS
 
Dave, This files are also located on the legOS website (URL) am currently trying to find any information about the process to build these using the current set of tools (gcc, legOS, etc) Ed David Chen <dcchen@pacbell.net> wrote in message (...) (22 years ago, 20-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: DJGPP & LegOS
 
I had once burned a CD-R with the entire conents of my DJGPP and LegOS directories with working binaries for firmdl.exe (for uploading your .srec firmware, includes the fast Xmit mode) and dll.exe (for loading your compiled programs) for someone who (...) (22 years ago, 20-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: Re: Scheduler patch
 
Joel, I had planned on another post to provide a link to the code sample, but have run very short on time. I will try to get that up soon. I believe the sensor handling issue is a real issue. However, I have yet to see a simple solution that (...) (22 years ago, 19-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: DJGPP & LegOS
 
Here's some work that was done on May 23, 2002... (URL) Original Message ----- From: "Steve Hassenplug" <hassenplug@mail.com> Date: Wed, 19 Jun 2002 13:51:33 GMT To: lugnet.robotics.rcx....lugnet.com Subject: Re: DJGPP & LegOS (...) (22 years ago, 19-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: DJGPP & LegOS
 
Well, here's a step in the right direction. (URL) I just have to figure out what it means. (22 years ago, 19-Jun-02, to lugnet.robotics.rcx.legos)
 
  Re: Linux, Cygwin, LegOS
 
As I said before: ("LegOS Team"=Unix)=Generalization I think I'm in the same boat as you, Ed. Personally, I really don't want to re-write the kernel (there are other more qualified people working on that) however I'm very interested in making LegOS (...) (22 years ago, 19-Jun-02, to lugnet.robotics.rcx.legos)


Next Page:  5 more | 10 more | 20 more | 100 more

Redisplay Messages:  All | Compact

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