Hi,

Is it possible to program msp430f2234 MCU with EZ430-RF2500 board and mspdebug.
EZ430-RF2500 board comes with msp430f2274 MCU and it differs from f2234 only 
from RAM size as far as I know.

I made a led togglerer for f2234, i can upload it, but it doesn't toggle pin.

#include    "msp430x22x4.h"
volatile unsigned int i;

int main(void) {
    WDTCTL = WDTPW + WDTHOLD;
  
    P2DIR |= 0x01;
    
    for(;;)
    {
        P2OUT ^= 0x01;
        i = 50000;
        while (i != 0) { i--; }
    }  
}
for( ; ; )


Daniel, could you confirm that msp430f2234 is supported by mspdebug.

Andres

On 29.06.2010, at 4:42, dan...@tortek.co.nz wrote:

> MSPDebug version 0.9 is now available. It features support for a
> couple of new devices (F2132 and F169), hopefully fixed support for
> 5xxx devices with FET430UIF programmers, and support for the Olimex
> MSP-JTAG-TINY programmer via either libusb or via a tty device.
> 
> Note that command-line options have changed in an effort to keep things
> tidy, so you'll probably want to check --help before attempting to use
> the new version. The new options scheme is:
> 
>    mspdebug [options] <driver> [command ...]
> 
> Where <driver> is one of "rf2500", "olimex", "sim", "uif" or
> "uif-bsl".
> 
> You can download the new version from here:
> 
>    http://mspdebug.sourceforge.net/download.html
> 
> - Daniel
> 
> ------------------------------------------------------------------------------
> This SF.net email is sponsored by Sprint
> What will you do first with EVO, the first 4G phone?
> Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
> _______________________________________________
> Mspgcc-users mailing list
> Mspgcc-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/mspgcc-users


Reply via email to