This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
After some months of launchpad experiences I'm developing my first stand alone board.
On the board there are these smd components for now.
MSP430G2553 Tsop28pins
Voltage regulator at 3,3V
Anaren RF module.
A led with 150ohm resistor.
I think I've a problem with the sturtup and reset.
There are 2 decoupling ceramics capacitors for the voltage regulator (about 4,7uF)
There is a 100nF capacitor connected ad VCC and GND 10mm far from the microcontroller.
There is a 47K resistor between Vcc and the RESET pin.
Often if I connect the battery (nominal 3.7V) the circuit works well but it is not stable.
Often it doesn't start.
Sometimes when it doesn't work there is a 1V across the 47K resistor. If I decrease the resistor value it works better but there are the same problems.
I tried to remove the RF module and write a simple led blink program (I use Energia IDE) but the problems are the same.
Thank you for your help.
ilpaso
Weird. This means 21µA input current into the RST pin. Which shouldn't happen. Anything else connected to the pin? FET?davide pasini said:Sometimes when it doesn't work there is a 1V across the 47K resistor.
maybe the VCC pin isn't soldered correctly and some power is drawn through the reset pin and the clamp diodes?
Jens-Michael Gross said:Weird. This means 21µA input current into the RST pin. Which shouldn't happen.[/quote]Sometimes when it doesn't work there is a 1V across the 47K resistor.Why you say so? If reset is not done properly and microcontroller is in "limbo" - virtually anything can happen including some latch-up of reset pin internal circuit. My guess here is that by adding capacitor to reset pin all the problems will go away including particular one.
Hi everyone,
There was a 1nF capacitor at the RST pin but the problems were the same.
No other components are connected to the RST pin. I've removed the voltage regulator too but nothing changed.
I've soldered 2 boards with the same problem.
Is important the width and the length of the reset trace?
bye
ilpaso
davide pasini said:There was a 1nF capacitor at the RST pin but the problems were the same.
You shall program chip and then do testing using big enough capacitor here, like 100nF.
Side question: do you happen to change DCO frequency in your firmware?
Ilmars said:You shall program chip and then do testing using big enough capacitor here, like 100nF.
Side question: do you happen to change DCO frequency in your firmware?
If you're not using the 32kHz crystal then you need to clear the oscillator fault flag and take it out of crystal mode like so:
IFG1 &= ~OFIFG;
while (BCSCTL3 & LFXT1OF)
BCSCTL3 = LFXT1S_2;
I do it right after
WDTCTL = WDTPW + WDTHOLD; // Stop WDT
How that? The reset pin is a plain CMOS input. And therefore shouldn't have more than 50nA input leakage unless the voltage on RST is >Vcc.Ilmars said:Why you say so? If reset is not done properly and microcontroller is in "limbo" - virtually anything can happen including some latch-up of reset pin internal circuit.
Possible. Still doesn't explain why there is such a high input current into RST - unless RST is connected with the FET and current flows there.Ilmars said:My guess here is that by adding capacitor to reset pin all the problems will go away including particular one.
Jens-Michael Gross said:The reset pin is a plain CMOS input.
If it is plain CMOS input - then yes. But is it? To avoid any assumptions - do you know any document with actual reset (pin) internal circuit of msp430g2553 shown?
Since it is no GPIO port pin, it is not listed in the port pin schematics section. But the RST pin is listed in the chapter for the GPIO electrical specs as a footnote, along with the XTIN pins in bypass mode. At least in some datasheets.Ilmars said:If it is plain CMOS input - then yes. But is it? To avoid any assumptions - do you know any document with actual reset (pin) internal circuit of msp430g2553 shown?
But you're right, it's only an assumption. But based on valid reasoning.
For anyone happening on this thread in the future... I had a similar problem, adding a cap on reset pin seems to resolve the issue.
I should have been more specific. The 1n cap (maybe because the ones I am using are out of spec) don't always cut it. Using a higher value cap works best.
Hey Jens-Michael,
I have exactly the same problem and the same current measurement for two of my self made board with the same 28 pin chip. 47k pull up and 2.2nF capacitor. no other connections to the reset pin. input voltage is 3.3V and the VCC pin for the microcontroller is decoupled with 100nF and 10uF. Any idea what is really going on? For my first board I thought it might be ESD damage during my handling, but when it happens to my second board, there for sure should be something wrong, running out of ideas. Any suggestions will be helpful. Thanks very much.
Joe
**Attention** This is a public forum