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 / *774 (-20)
  RE: WinNT & legOS
 
(...) Which make are you running? I've had trouble with mks make and long filenames. Now I use Cygwin's make and things are much better... Cheers, Ralph Hempel - P.Eng ---...--- The train stops at the train station, The bus stops at the bus station, (...) (25 years ago, 1-Feb-00, to lugnet.robotics.rcx.legos)
 
  Re: WinNT & legOS
 
Hello again Rossz, I have downloaded lfn003 and installed it and ALL WORKED OK :o) It build the demo programs (including running makelx). So although the WinNT saga is probably not over, it mow seems to work for me (and maybe some others). Many (...) (25 years ago, 1-Feb-00, to lugnet.robotics.rcx.legos)
 
  Re: __attribute__ ((rcx_interrrupt)) : how to use ?
 
(...) Well, i got the definitive answer from Markus 8-). It was in german, so i'll try to translate it: the effect of __attribute__ ((rcx_interrrupt)) depends on the calling context: - in leaf functions (that do not call other functions), it makes (...) (25 years ago, 1-Feb-00, to lugnet.robotics.rcx.legos)
 
  WinNT & legOS
 
I was mistaken in thinking the Long File Name utility ((URL) was breaking makelx. The program, makelx.exe, runs perfectly if typed from the command line. When executed out of the make program, however, it thinks the command line is invalid, whether (...) (25 years ago, 1-Feb-00, to lugnet.robotics.rcx.legos)
 
  Re: __attribute__ ((rcx_interrrupt)) : how to use ?
 
(...) Right. The calling conventions of the H8 say that r0-r3 are scratch registers (aka caller saves). However, interrupt handlers must preserve ALL of the registers. So the rcx_interrupt attribute makes that happen. (...) The compiler will only (...) (25 years ago, 31-Jan-00, to lugnet.robotics.rcx.legos)
 
  __attribute__ ((rcx_interrrupt)) : how to use ?
 
hi there, i´m still not really sure when and why to use __attribute__ ((rcx_interrrupt)) my current assumptions: 1 - it should be used for functions that are called AS interrupt handlers, to make sure registers are pushed onto the stack, and (...) (25 years ago, 31-Jan-00, to lugnet.robotics.rcx.legos)
 
  Re: HELP - LegOS for Windows
 
legOS under WinNT - the saga continues. I've done further investigation. Long filenames (LFNs) are not fully supported in a DOS shell in Windows NT. I found a utility that enables LFNs here: (URL) it runs fine up to MAKELX. So it looks like the fix (...) (25 years ago, 31-Jan-00, to lugnet.robotics.rcx.legos)
 
  Re: HELP - LegOS for Windows
 
I have also tried the make that came with Ming32. This seems to work better, however I get the following: (line numbers added for clarity) 1>>C:\legOS\Demo>make 2>>Makefile:44: .depend: No such file or directory 3>>djecho -o response " -M -O2 (...) (25 years ago, 31-Jan-00, to lugnet.robotics.rcx.legos)
 
  Re: HELP - LegOS for Windows
 
I fooled around with legOS on an NT here at work and could get the individual commands from MAKEFILE to execute from the command line. It looks like NT doesn't properly handle the long filenames from within the make program (and possibly other (...) (25 years ago, 31-Jan-00, to lugnet.robotics.rcx.legos)
 
  Re: HELP - LegOS for Windows
 
I have tried it also on my machine at work. Same problem. Both are WinNT boxes with NTFS file systems. Has anyone else got it working on WinNT with NTFS ?? Ian (...) (25 years ago, 30-Jan-00, to lugnet.robotics.rcx.legos)
 
  Re: HELP - LegOS for Windows
 
No difference ... I even tried moving the files into the current directory, but that also did not help. David, do you have anyother GCC software installed on your PC ? I will try this at work on my other WinNT machine (I do not have any other GCC (...) (25 years ago, 30-Jan-00, to lugnet.robotics.rcx.legos)
 
  Re: HELP - LegOS for Windows
 
Try changing the references to the include files from relative to absolute, e.g.: #include c:/legos/makefile.common #include c:/legos/makefile.user David, are you running Windows NT, also? If this is a Windows NT specific problem, once we have it (...) (25 years ago, 30-Jan-00, to lugnet.robotics.rcx.legos)
 
  finally! the whole fix! (was: more on the rotation sensor)  [DAT]
 
(...) I *finally* figured out why none of my attempts to fix this in the state machine were working. If you consider forward and backward motion: 0 1 2 3 0 031 213 0 3 2 1 0 3 312 130 3 The first line indicates the actual sensor transitions. The (...) (25 years ago, 30-Jan-00, to lugnet.robotics.rcx.legos)
 
  Re: legOS documentation
 
(...) (URL) (...) Like I said, I don't mind editing- I find that reasonably simple and not very time consuming. It's the rest of it that is more time-consuming. In the meantime, as a stop-gap, I can probably set up a php based annotation system (...) (25 years ago, 30-Jan-00, to lugnet.robotics.rcx.legos)
 
  Re: legOS documentation
 
(...) There are certainly apps available like that in php, which I am much more comfortable with, and feel is (basically) much more secure. I'll look into them and report back. -Luis (...) ###...### Profanity is the one language that all programmers (...) (25 years ago, 30-Jan-00, to lugnet.robotics.rcx.legos)
 
  Re: more on the rotation sensor
 
(...) value) (...) The order is numerical, either 0->1->2->3->0... or 0->3->2->1->0... That's why legOS has them enumerated that way. The Mindstorms fw numbers them differently, which is why I mentioned it. (...) I don't think your specific example (...) (25 years ago, 29-Jan-00, to lugnet.robotics.rcx.legos)
 
  Re: HELP - LegOS for Windows
 
I also tried to move the files into the "demo" directory and then change the makefile, but I still got the same error. Ian (...) (25 years ago, 29-Jan-00, to lugnet.robotics.rcx.legos)
 
  Re: HELP - LegOS for Windows
 
No suggestions, but I have the same problem, starting with: makefile:16: ../Makefile.common: No such file or directory (ENOENT) I tried changing the / to \, but it didn't seem to help. (...) (25 years ago, 29-Jan-00, to lugnet.robotics.rcx.legos)
 
  Re: HELP - LegOS for Windows
 
I have had a look and no SHELL setting. Anyother clues ?? Cheers Ian (...) (25 years ago, 29-Jan-00, to lugnet.robotics.rcx.legos)
 
  Re: legOS documentation
 
Luis, I noticed the HTML files for the current HowTo are generated with SGMLtools. Do you have any sources in SGML, or were those created from LaTex? Some SGML or XML format would be cool, for it can easily be exported to HTML, PDF, PS or others... (...) (25 years ago, 29-Jan-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