[Mspgcc-users] MSPDebug, Olimex MSP430-JTAG-TINY

2010-06-17 Thread daniel
Peter Jansen writes: Using the MSP430-JTAG-TINY under linux requires modifiing the cp210x driver and rebuilding it with the new VID etc for the device (15ba:0002). The serial adaptor inside the device is a SiLABS CP2102, which is then connected to a msp430x169. I need to add some documents on

Re: [Mspgcc-users] Unused functions occupying unnecessary memory

2010-06-17 Thread JMGross
- Ursprüngliche Nachricht - Von: Grant Edwards An: mspgcc-users@lists.sourceforge.net Gesendet am: 16 Jun 2010 21:43:44 On 2010-06-16, JMGross msp...@grossibaer.de wrote: I had this happen long time ago when I included the different object files or libraries in the wrong order with

Re: [Mspgcc-users] memory input 0 is not directly addressable

2010-06-17 Thread JMGross
Sure you're right. But I wonder why he got an error while I don't. I looked at the generated code and the compiler generated a constant containing the value (PORT1_VECTOR-512), and the branch brances onto the location pointed to by this constant. Of course this isn't what was intended, but it

Re: [Mspgcc-users] Unused functions occupying unnecessary memory

2010-06-17 Thread Grant Edwards
On 2010-06-17, JMGross msp...@grossibaer.de wrote: [I don't suppose you could wrap lines in your posts?] Not with the gc-sections feature. But I'm pretty sure it happened with object files and not just libraries. (And I'm sure that no libraries were linked before the object files, but maybe

Re: [Mspgcc-users] memory input 0 is not directly addressable

2010-06-17 Thread Peter Bigot
I think you don't get the error message because you use gcc3, and the corresponding code in gcc3 (gcc/stmt.c:expand_asm_operands) only complains if the value is used as an output. In gcc4 (gcc/gimplify.c:gimplify_asm_expr), the test is refined and an error produced when the integer value is used

[Mspgcc-users] mspgss cvs file download

2010-06-17 Thread Brian Nolte
I'm trying to build mspgss from source code. According to the instructions at http://mspgcc.sourceforge.net/manual/c1685.html#the-mspgcc-specific-codeI tried to obtain the MSP430 specific code directly from the CVS repository. Only when I try to login to cvs in cygwin I get a Connection refused

Re: [Mspgcc-users] mspgss cvs file download

2010-06-17 Thread Hans Nieuwenhuis
Hi Brian, I think the path to the CVS repo has changed at some point in time, it should be: :pserver:anonym...@mspgcc.cvs.sourceforge.net:/cvsroot/mspgcc That one worked for me just now, but sourceforge has its days sometimes so YMMV. Regards, Hans On Thu, 17 Jun 2010 13:32:40 -0600 Brian

Re: [Mspgcc-users] Unused functions occupying unnecessary memory

2010-06-17 Thread Przemek Klosowski
On Thu, Jun 17, 2010 at 3:01 PM, Grant Edwards grant.b.edwa...@gmail.com wrote: On 2010-06-17, JMGross msp...@grossibaer.de wrote: interesting. Still two wasted bytes (I don't think the linker will move the following code and adjust any other jumps if necessary), Yes, if the linker supports

Re: [Mspgcc-users] Unused functions occupying unnecessary memory

2010-06-17 Thread Grant Edwards
On 2010-06-17, Przemek Klosowski przemek.klosow...@gmail.com wrote: On Thu, Jun 17, 2010 at 3:01 PM, Grant Edwards grant.b.edwa...@gmail.com wrote: On 2010-06-17, JMGross msp...@grossibaer.de wrote: interesting. Still two wasted bytes (I don't think the linker will move the following code and

Re: [Mspgcc-users] mspgss cvs file download

2010-06-17 Thread Brian Nolte
That worked for me. Thanks Hans! Brian On Thu, Jun 17, 2010 at 2:04 PM, Hans Nieuwenhuis vz...@xs4all.nl wrote: Hi Brian, I think the path to the CVS repo has changed at some point in time, it should be: :pserver:anonym...@mspgcc.cvs.sourceforge.net:/cvsroot/mspgcc That one worked for