One comment and a question, first, I noticed several posts back that some people were having problems with the ControllerGUI under Cygwin, specifically getting...
Thanks for the suggestion for ControllerGUI -- I'm not sure why that isn't consistent between Cygwin installations... we definitely have machines where it...
Hello, i am new with tekkotsu and now tried to compile it. First i installed the java stuff and also OPEN_R_SDK-1.1.5-r5. then i did the symbolical links at...
tomasz gingold
kinek@...
Feb 2, 2006 12:08 pm
1220
You're partway there, but you're missing some of your OPEN-R installation -- namely the cross-compiler. The AIBO uses a MIPS processor and a custom OS, so it...
Hello, i have now a problem during execution of the build-devtools-3.3.2-r1 shell script. after a few minutes of execution i got the following error: ...
tomasz gingold
kinek@...
Feb 2, 2006 5:24 pm
1222
I haven't seen this before -- anyone else? The only thing I can think of to try is to make sure your system's native compiler is at least up to date within its...
I am a new member of the group, so please pardon my naive questions: 1. Is the ERA-MS016 memory stick what I need for Tekkotsu on ERS-7? 2. How important is it...
... Yes, that is the right model number. If I remember correctly, the commercial software (AiboLife) memory sticks have the same model number, but cannot be...
I've received an email from someone who is using Tekkotsu in his Lab, and he mentioned that I need to downgrade my version of cygwin. So what version of...
... If there's a reason to downgrade cygwin, I'd like to know about it so we can keep compatible. It's been a while (a few months?) since we've updated our...
Ethan, thanks a lot for the help. I modified the code you gave me slightly to the point that it compiles but I am getting output which isn't what I expected....
Thanks, Dave and Ethan for the help. Putting the code inside an event and subscribing the visRegionEGID events did help. Now instead of getting random stuff I...
Hi, Im planning to get an AIBO7x. I have an AIBO 220 and AIBO 31L. I am willing to SWAP or trade them with AIBO7x. I will givel all accessories ang bags for...
Hello, is that right, that with the precompiled binaries i am not able to program my own applications? I have suse 10.0 and the gcc (GCC) 4.0.2 20050901...
tomasz gingold
kinek@...
Feb 6, 2006 10:35 am
1231
... Right, the precompiled binaries can't be recompiled, you need to have the source code for that. And in order to compile the source code, you need to have a...
I have patch the obstack.h, and the compiling goes a few lines forward. unfortunatelly i got the next error: ../../gcc-3.3.2/gcc/cp/decl.c: In function...
tomasz gingold
kinek@...
Feb 6, 2006 5:42 pm
1233
Part of the problem is that they're using a lot of macros (tsk tsk!), which makes this hard to track down -- what looks like a simple variable is, in...
Has anyone sucessfully used the WaypointWalkMC with the addAbsoluteWaypoint method? I am currently using this as my main event loop MMAccessor<WaypointWalkMC>...
... Although you should probably put the MMAccessor inside the 'if' so you don't have to check it out if you're not going to do anything with it... ... ...
... Aha, I stumbled over this today -- it turns out there's a function for calculating the total area, but nothing's calling it! So total_area forever stays...
I'm trying to get the sensor information and want to remote control the aibo depending on it. What kind of information can I see from the sensor. Is there a...
hello, the next error ist this one: ../../gcc-3.3.2/gcc/config/mips/mips.c:6942:50: warning: no newline at end of file ../../gcc-3.3.2/gcc/config/mips/mips.c:...
tomasz gingold
kinek@...
Feb 8, 2006 12:52 pm
1239
... On the AIBO, the sensor information is contained in WorldState::sensors[] (state->sensors[]) http://www.cs.cmu.edu/~tekkotsu/dox/classWorldState.html#o3 If...
We have an application that we wish to port to the AIBOs (the platform that we have the most of in the lab). I think that most of the port will be direct, but...
... Yeah, the non-blocking networking is going to be a pain for you, and I'm not sure there's a good way around it... you're going to want your control code...
Hi everybody! I'm having a problem with class socket. When I want to write a buffer of data to a socket, the socket will not write the buffer, if it is too big...
... right -- if you're sending packets of any significant size, you probably want to specify the size, and then of course you would know how big it is. I...
... Have you tried triggering this on a timer event sometime after the initial connection? This would be necessary with a TCP connection because we have to...