RE: [Mspgcc-users] Mspgcc + eclipse CDT 3.0/Eclipse 3.1

2005-09-25 Thread jim
I think we're talking about two different parts. I'm using msp430-gdb for debugging an this uses cygwin. I'm guessing that this is where cygwin is corrupting the paths. I think the java classes are the internal parts that communicate with (what I'm calling) the debugger. I believe the different

Re: [Mspgcc-users] inefficient while loop

2005-09-25 Thread Bill Knight
If you want to speed it up even more, make i signed and test for still positive. volatile int i = 1; P1OUT = 0; do { P1OUT++; } while ((i <<= 1) > 0); Regards -Bill Knight R O SoftWare On Fri, 23 Sep 2005 15:17:43 +0200, Ralf Hildebrandt wrote: >Hi! >The while loop is handled in an ineffi