This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Do Long delays in main loop cause problems? (possible brownout problem)

I'm using nrf_delay_ms to trigger a series of beeps though a speaker using PWM, but I seem to have intermittent problems with this when the device is connected.

Basically my Android app, connects to the "beacon" and write to a characteristic with a command that makes the beacon beep, so that it can be found by listening to the sound.

In the write data handler I use the app scheduler to call the findMeBeeps function

app_sched_event_put(0,0,(app_sched_event_handler_t)findMeBeeps); 


void findMeBeeps(void)
{
	for(int i=0;i<5 ;i++)
	{
		if (i!=0)
		{
			nrf_delay_ms(250);
		}
		beep(250);
	}
}

the beep function turns on PWM to one of the pins, calls nrf_delay_ms and then turns pwm off again (and de-inits the PWM to stop the pin drawing any current)

So overall the 5 beeps take 2.5 second to complete and block the main loop while this is running.

Unfortunately, what seems to happen sometimes, is that I can't repeatedly send the command to play the beeps.

The Android app thinks its written to the characteristic, but the on_write function for the characteristic does not seem to receive the data.

Whats even stranger, is that sometimes I compile the code and it works fine, over and over again, and some other times, I compile the code and it will only play the beeps once.

So...

I don't know whether the problem is that I can't lock up the main loop for that long.

BTW. I have tried loads of other things to work out whats going on...

I tried just printing "Beep" to the debug terminal and this worked OK.

I also at one point changed the pin, so that I was not actually driving the speaker/buzzer, in case that was an issue, because the speaker/buzzer is drive via transistor and takes around 100mA. And at the time that seemed to work OK,

but as its all so intermittent, its hard to know if any of these changes yielded the result because of the change or just randomness.

Because currently I can beep 50 beeps of 50ms and thats also working perfectly.

But I"m sure tomorrow when I turn it on and compile in some more code it could go back to failing again

Parents
  • Just to update this.

    I think perhaps this is some sort of power problem.

    I powered the device from a 3V 1000mAH lithium cell, and tried again, and the problem returned, even though I had not uploaded any new code.

    I put it back in the bench power supply, but the problem still persists

    Which is very odd.

    The beeper does not seem to completely crash the device, because I have a 30 second timer running, which I use to close open connections to the Android app, in case the android app does not auromatically close the connection.

    So after 30 secs the connection is closed and I can press the button on the App again, to send the command to beep, and it works - just once

    I will probably unsolder the beeper off one board and replace it with a LED send see if it still has this strange behaviour

    PS. I forgot to say I'm using a nRF51822 custom board, with SDK 12.3

Reply
  • Just to update this.

    I think perhaps this is some sort of power problem.

    I powered the device from a 3V 1000mAH lithium cell, and tried again, and the problem returned, even though I had not uploaded any new code.

    I put it back in the bench power supply, but the problem still persists

    Which is very odd.

    The beeper does not seem to completely crash the device, because I have a 30 second timer running, which I use to close open connections to the Android app, in case the android app does not auromatically close the connection.

    So after 30 secs the connection is closed and I can press the button on the App again, to send the command to beep, and it works - just once

    I will probably unsolder the beeper off one board and replace it with a LED send see if it still has this strange behaviour

    PS. I forgot to say I'm using a nRF51822 custom board, with SDK 12.3

Children
No Data
Related