Wake-up timer library to wake from deepsleep/power-down

Dependencies:   LPC1114_WakeInterruptIn

Dependents:   LPC812_Sleep_HelloWorld KL05Z_DCF77_RTC_Clock LPC1114_data_logger mBuinoBlinky ... more

Supported Targets

  • LPC812
  • LPC11u24
  • LPC1114
  • All mbed Freescale targets
  • All mbed STM targets except the F1 series

Please read the target specific comments below. A general small warning: If you have other interrupts enabled, and they request attention after the WakeUp interrupt is set, but before deepsleep is entered, and these take long to handle, it is possible that the WakeUp interrupt is handled before you enter deepsleep. In that case there is no interrupt anymore which should wake it from deepsleep.

Example code

// Depending on the LED connections either the LED is off the 2 seconds
// the target spends in deepsleep(), and on for the other second. Or it is inverted 
 
#include "mbed.h"
#include "WakeUp.h"
 
DigitalOut myled(LED1);
 
int main() {
    //The low-power oscillator can be quite inaccurate on some targets
    //this function calibrates it against the main clock
    WakeUp::calibrate();
   
    while(1) {
        //Set LED to zero
        myled = 0;
        
        //Set wakeup time for 2 seconds
        WakeUp::set_ms(2000);
        
        //Enter deepsleep, the program won't go beyond this point until it is woken up
        deepsleep();
  
        //Set LED for 1 second to one
        myled = 1;
        wait(1);
    }
}

Target comments

All targets use different implementations, some of these have some things that need to be taken into account. If your target is supported but not listed here, then there is nothing relevant to mention.

Core M3/M4 microcontrollers

These microcontrollers cannot wake from deepsleep while they are being debugged. Core M0s can, although their power consumption is very high while being debugged. Generally to exit debug mode you need to power cycle the microcontroller, while making sure the debugger isn't powercycled as well.

On NUCLEO boards you can for example break the connection to the target IC with a jumper, which does this. Most Freescale boards have a USB connector for the target IC (in addition to the SDA USB). If you use this one to power the board, the debugger should not get powered.

KLxx

These targets (such as the KL25z, KL05z, etc) use the same LPTMR for both WakeUp and for ticker generation. The WakeUp code is nice, and it will backup the old values when being set, and restore those after waking up, allowing you to continue using your ticker, and a ticker which was already set will continue again. However you are not allowed to set a new ticker after you already set WakeUp, since this will give clashes. Do you for whatever reason need to do it (for example you set WakeUp, and then you wake using an InteruptIn), you can disable the WakeUp timer and restore the ticker functionality by setting WakeUp for 0 seconds.

LPC11u24

This target uses the watchdog timer to generate the necesary interrupts to wake from deepsleep. The reset functionality of the timer is disabled, so you don't need to worry about that. However the library won't work if other code also uses the watchdog timer. Most likely the result is unpredictable.

STM

For STM targets the library uses the RTC of these targets. The calibration subroutine is not (yet) implemented, since it assumes that an RTC is quite accurate (which might not be true if it runs as by default on an internal RC oscillator). Currently it keeps the RTC in the default settings of the mbed code. Due to the nature of these settings the maximum time resolution this lib can achieve on those targets is, depending on if a 32kHz crystal is fitted, 3-4ms, instead of the 1ms of other targets.

Also it might not compile for your specific target even though it has an RTC. In that case send me a message (or you can also look yourself). The required interrupt vector changes place and name depending on the target, and it could be that another define needs to be added for your target.

LPC1114

The LPC1114 is special. Not in a good way special. It lacks any kind of regular low-power timer/RTC/WDT which is suitable to wake it from deepsleep mode. What the library does instead is that when the WakeUp command is called, it sets the entire main clock of the device to the watchdog oscillator (at 20kHz). Clock gating is used to disable all peripherals except one timer, this timer then is used to create a pulse on an output pin. Connected to this output pin is an external interrupt, which wakes the device, and restores the original settings.

The first thing this means is that you need an unused pin. Currently by default it is set for dp24 (P0_1), if you don't add anything this pin is used. You can remap this in your code to pins dp1 (P0_8) and dp2 (P0_9):

//Add the following global variable to any .cpp file (generally your main.cpp).
PinName WakeUpPin = dp2;  //Or dp1/dp24. If this line is not included it will default to dp24

While this pin generates a pulse, other pwm outputs on the same peripheral which are active will keep running (although very slowly).

The second, and also important part, is that you should NOT set it to immediatly start a timer and enter deepsleep after a reset. Add a wait of a few seconds (random amount) in between (or just other code). When it runs at 20kHz it will refuse to be reprogrammed by the Switch Science LPC1114 mbed board, and I can do the educated guess that ISP programming via the UART also isn't going to work. If you add a wait at the start there is no problem.

Did you ignore my advice and got your LPC1114 bricked? Don't worry (too much), I managed to unbrick all mine again. I used uVision 5, export an LPC1114 project from mbed to have correct device settings. In Project > Options for Target > Debug > Use debugger: CMSIS-DAP > Settings you can change debugger settings. Playing with these can help (I haven't found yet what is required exactly). Now from Flash you can do erase/download. This is giving errors for me. Doesn't matter, what is important is that if you do the right thing (if your code blinks an LED for example that is useful), the code will stop running. Either the uC is set in permanent reset (faint glow of LEDs connected to ground), or it just stops running. At this point you can drag an drop program it again.

The calibrate function requires dp24, regardless of which pin is set as the WakeUpPin. After calibration you can use set it to do something else, however during calibration it needs to be able to toggle.

Committer:
Sissors
Date:
Thu Feb 20 18:12:42 2014 +0000
Revision:
5:89dae784c38f
Parent:
3:2c62a668f265
Child:
6:815bef56e136
Support al KLxx devices and properly use new ticker timer setups

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Sissors 5:89dae784c38f 1 #if defined TARGET_KLXX
Sissors 3:2c62a668f265 2
Sissors 3:2c62a668f265 3 #include "WakeUp.h"
Sissors 3:2c62a668f265 4 #include "us_ticker_api.h"
Sissors 3:2c62a668f265 5
Sissors 3:2c62a668f265 6 FunctionPointer WakeUp::callback;
Sissors 3:2c62a668f265 7 float WakeUp::cycles_per_ms = 1.0;
Sissors 3:2c62a668f265 8
Sissors 3:2c62a668f265 9 static uint16_t remainder_count;
Sissors 3:2c62a668f265 10 static uint32_t oldvector;
Sissors 5:89dae784c38f 11 static uint8_t oldPSR;
Sissors 3:2c62a668f265 12
Sissors 3:2c62a668f265 13 void restore(void);
Sissors 3:2c62a668f265 14
Sissors 3:2c62a668f265 15 void WakeUp::set_ms(uint32_t ms)
Sissors 3:2c62a668f265 16 {
Sissors 3:2c62a668f265 17 /* Clock the timer */
Sissors 3:2c62a668f265 18 SIM->SCGC5 |= SIM_SCGC5_LPTMR_MASK;
Sissors 3:2c62a668f265 19
Sissors 3:2c62a668f265 20 //Check if it is running, in that case, store current values
Sissors 3:2c62a668f265 21 remainder_count = 0;
Sissors 5:89dae784c38f 22 if (NVIC_GetVector(LPTimer_IRQn) != (uint32_t)WakeUp::irq_handler) {
Sissors 3:2c62a668f265 23 oldvector = NVIC_GetVector(LPTimer_IRQn);
Sissors 5:89dae784c38f 24 oldPSR = LPTMR0->PSR;
Sissors 3:2c62a668f265 25
Sissors 5:89dae784c38f 26 if (LPTMR0->CSR & LPTMR_CSR_TIE_MASK) {
Sissors 5:89dae784c38f 27 //Write first to sync value
Sissors 5:89dae784c38f 28 LPTMR0->CNR = 0;
Sissors 5:89dae784c38f 29 uint16_t countval = LPTMR0->CNR;
Sissors 5:89dae784c38f 30 if (countval < LPTMR0->CMR)
Sissors 5:89dae784c38f 31 remainder_count = countval - LPTMR0->CMR;
Sissors 5:89dae784c38f 32 }
Sissors 3:2c62a668f265 33 }
Sissors 3:2c62a668f265 34
Sissors 3:2c62a668f265 35 LPTMR0->CSR = 0;
Sissors 3:2c62a668f265 36
Sissors 3:2c62a668f265 37 if (ms != 0) {
Sissors 3:2c62a668f265 38 //Clock from the 1kHz LPO
Sissors 3:2c62a668f265 39 LPTMR0->PSR = LPTMR_PSR_PCS(1);
Sissors 3:2c62a668f265 40
Sissors 3:2c62a668f265 41 /* Set interrupt handler */
Sissors 3:2c62a668f265 42 NVIC_SetVector(LPTimer_IRQn, (uint32_t)WakeUp::irq_handler);
Sissors 3:2c62a668f265 43 NVIC_EnableIRQ(LPTimer_IRQn);
Sissors 3:2c62a668f265 44
Sissors 3:2c62a668f265 45 uint32_t counts = (uint32_t)((float)ms * cycles_per_ms);
Sissors 3:2c62a668f265 46
Sissors 3:2c62a668f265 47 //If no prescaler is needed
Sissors 3:2c62a668f265 48 if (counts <= 0xFFFF)
Sissors 3:2c62a668f265 49 LPTMR0->PSR |= LPTMR_PSR_PBYP_MASK;
Sissors 3:2c62a668f265 50 else { //Otherwise increase prescaler until it fits
Sissors 3:2c62a668f265 51 counts >>= 1;
Sissors 3:2c62a668f265 52 uint32_t prescaler = 0;
Sissors 3:2c62a668f265 53 while (counts > 0xFFFF) {
Sissors 3:2c62a668f265 54 counts >>= 1;
Sissors 3:2c62a668f265 55 prescaler++;
Sissors 3:2c62a668f265 56 }
Sissors 3:2c62a668f265 57 LPTMR0->PSR |= LPTMR_PSR_PRESCALE(prescaler);
Sissors 3:2c62a668f265 58 }
Sissors 3:2c62a668f265 59 LPTMR0->CMR = counts;
Sissors 3:2c62a668f265 60
Sissors 3:2c62a668f265 61 LPTMR0->CSR = LPTMR_CSR_TIE_MASK;
Sissors 3:2c62a668f265 62 LPTMR0->CSR |= LPTMR_CSR_TEN_MASK;
Sissors 3:2c62a668f265 63 } else {
Sissors 3:2c62a668f265 64 restore();
Sissors 3:2c62a668f265 65 }
Sissors 3:2c62a668f265 66
Sissors 3:2c62a668f265 67 }
Sissors 3:2c62a668f265 68
Sissors 3:2c62a668f265 69
Sissors 3:2c62a668f265 70 void WakeUp::irq_handler(void)
Sissors 3:2c62a668f265 71 {
Sissors 3:2c62a668f265 72 // write 1 to TCF to clear the LPT timer compare flag
Sissors 3:2c62a668f265 73 LPTMR0->CSR |= LPTMR_CSR_TCF_MASK;
Sissors 3:2c62a668f265 74 restore();
Sissors 3:2c62a668f265 75 callback.call();
Sissors 3:2c62a668f265 76 }
Sissors 3:2c62a668f265 77
Sissors 3:2c62a668f265 78 void WakeUp::calibrate(void)
Sissors 3:2c62a668f265 79 {
Sissors 3:2c62a668f265 80 wait_us(1); //Otherwise next wait might overwrite our settings
Sissors 3:2c62a668f265 81 cycles_per_ms = 1.0;
Sissors 3:2c62a668f265 82 set_ms(1100);
Sissors 3:2c62a668f265 83 wait_ms(100);
Sissors 3:2c62a668f265 84
Sissors 3:2c62a668f265 85 //Write first to sync value
Sissors 3:2c62a668f265 86 LPTMR0->CNR = 0;
Sissors 3:2c62a668f265 87 uint32_t ticks = LPTMR0->CNR;
Sissors 3:2c62a668f265 88 cycles_per_ms = ticks / 100.0;
Sissors 3:2c62a668f265 89 set_ms(0);
Sissors 3:2c62a668f265 90 }
Sissors 3:2c62a668f265 91
Sissors 3:2c62a668f265 92 void restore(void){
Sissors 3:2c62a668f265 93 /* Reset */
Sissors 3:2c62a668f265 94 LPTMR0->CSR = 0;
Sissors 3:2c62a668f265 95
Sissors 3:2c62a668f265 96 /* Set interrupt handler */
Sissors 3:2c62a668f265 97 NVIC_SetVector(LPTimer_IRQn, oldvector);
Sissors 3:2c62a668f265 98 NVIC_EnableIRQ(LPTimer_IRQn);
Sissors 3:2c62a668f265 99
Sissors 3:2c62a668f265 100 /* Clock at (1)MHz -> (1)tick/us */
Sissors 5:89dae784c38f 101 LPTMR0->PSR = oldPSR;
Sissors 3:2c62a668f265 102
Sissors 3:2c62a668f265 103 if (remainder_count) {
Sissors 3:2c62a668f265 104 /* Set the compare register */
Sissors 3:2c62a668f265 105 LPTMR0->CMR = remainder_count;
Sissors 3:2c62a668f265 106
Sissors 3:2c62a668f265 107 /* Enable interrupt */
Sissors 3:2c62a668f265 108 LPTMR0->CSR |= LPTMR_CSR_TIE_MASK;
Sissors 3:2c62a668f265 109
Sissors 3:2c62a668f265 110 /* Start the timer */
Sissors 3:2c62a668f265 111 LPTMR0->CSR |= LPTMR_CSR_TEN_MASK;
Sissors 3:2c62a668f265 112 }
Sissors 3:2c62a668f265 113 }
Sissors 3:2c62a668f265 114
Sissors 3:2c62a668f265 115
Sissors 3:2c62a668f265 116
Sissors 3:2c62a668f265 117
Sissors 3:2c62a668f265 118
Sissors 3:2c62a668f265 119
Sissors 3:2c62a668f265 120 #endif