Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Problem with reading eZ430-RF2500 module

Status
Not open for further replies.

mobile-it

Advanced Member level 1
Joined
Apr 24, 2004
Messages
464
Helped
22
Reputation
44
Reaction score
8
Trophy points
1,298
Activity points
3,344
ez430-rf2500

Hi All,

I am trying to set up an mspgcc environment for programming my eZ430-RF2500 module from TI.

I have some problems so I downloaded MSPFET and try to read the content with this tool but this tool always says:
21:55:54 Initialize...
21:55:55 Device: MSP430F2274. Info(0x1000-0x10FF), Main:(0x8000-0xFFFF)
21:55:55 Reading device memory..
21:55:57 Read failed. Synchronization error.

anybody can give me some help?

MSPFET website: **broken link removed**


Microsoft Windows XP [versie 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\El Torro>MSP430-jtag
MSP430 JTAG programmer Version: 2.3
Use -h for help
Cleaning up after error...
Reset and release device...

An error occoured:
Can't open interface: Could not find device (or device not supported)

Using gdbproxy gives me the following:

msp430-gdbproxy --port=2000 msp430

Remote proxy for GDB, v0.7.1, Copyright (C) 1999 Quality Quorum Inc.
MSP430 adaption Copyright (C) 2002 Chris Liechti and Steve Underwood

GDBproxy comes with ABSOLUTELY NO WARRANTY; for details
use `--warranty' option. This is Open Source software. You are
welcome to redistribute it under certain conditions. Use the
'--copying' option for details.

debug: MSP430_Initialize()
debug: MSP430_Configure()
debug: MSP430_VCC(3000)
debug: MSP430_Identify()
error: msp430: Could not find device (or device not supported) (4)
debug: MSP430_VCC(0)
debug: MSP430_VCC(3000)
debug: MSP430_Reset(ALL_RESETS)
debug: MSP430_Close()
Assertion failed: !msp430_status.is_open, file target_msp430.c, line 745

This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.




Thanks in advance.
 

ez430 rf2500 project

I am using their small board eZ430-RF2500 that I get from the TI MSP430 day
 

mspgcc ez430

hi,

I got this same error when i inserted the board in the opposite way. So i suspect that u have connected the small board to usb fet in the reverse way
 

    mobile-it

    Points: 2
    Helpful Answer Positive Rating
code composer ez430-rf2500

I have the device in the right way plugged in.
 

ez430-rf2500 led

@ mobile-it

I'm going to attend TI MSP430 day on 30th tis month. If you want I'll ask the guys there. Just let me know.

ep20k
 

    mobile-it

    Points: 2
    Helpful Answer Positive Rating
ez430-rf2500 code composer

Please ask them for me


thank you very much!
 

programming the ez430-rf2500

ok I have got it up and running
can anyone give me an example (C program) that blinks the red and green led on the eZ430-RF2500 as a startpoint for me to learn?

thanks very much!
 

mspfet synchronization error

Doesn't the EZ430-RF2500 kit come with compilers & demo software?
The eZ430-RF2500 is a complete wireless development tool for the MSP430 and CC2500 that includes all the hardware and software required to develop an entire wireless project with the MSP430 in a convenient USB stick.
**broken link removed**


I believe the support software is here:
**broken link removed**
Works for Code Composer & IAR.

And you can download IAR & CCE from here:
**broken link removed**
 

    mobile-it

    Points: 2
    Helpful Answer Positive Rating
ti ez430-rf2500 help led blinking

mobile-it said:
Please ask them for me thank you very much!

I printed it out but left it on my desk, honestly sorry :cry:

ep20k
 

    mobile-it

    Points: 2
    Helpful Answer Positive Rating
how to print to console in ez430

SmartBomb1979 said:
Doesn't the EZ430-RF2500 kit come with compilers & demo software?
The eZ430-RF2500 is a complete wireless development tool for the MSP430 and CC2500 that includes all the hardware and software required to develop an entire wireless project with the MSP430 in a convenient USB stick.
**broken link removed**


I believe the support software is here:
**broken link removed**
Works for Code Composer & IAR.

And you can download IAR & CCE from here:
**broken link removed**

Correct it comes with this software but I want to use mspgcc compiler for programming it.
 


    mobile-it

    Points: 2
    Helpful Answer Positive Rating
+mspgcc ti ez430 usb

Hi

thanks for your help.

I just installed codecomposer on my pc (v3.0) and it works very good. I have a blinking led now :) thanks for the support!


now I am going to work me into this RF solution!
 

Re: programming the ez430-rf2500

Hi Friend,

Here is the code for as your requirment..

#include <msp430.h>

int main(void) {
WDTCTL = WDTPW + WDTHOLD; // Stop watchdog timer
P1DIR |= BIT0; // Set P1.0 to output direction
P1DIR |= BIT1; // Set P1.1 to output direction
for(;;) {
volatile unsigned int i; // volatile to prevent optimization

P1OUT ^= BIT0; // Toggle P1.0 using exclusive-OR
P1OUT ^= BIT1; // Toggle P1.1 using exclusive-OR
i = 10000; // SW Delay
do i--;
while(i != 0);
}
}


ok I have got it up and running
can anyone give me an example (C program) that blinks the red and green led on the eZ430-RF2500 as a startpoint for me to learn?

thanks very much!
 
Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top