mbed.h library with any bug fixes AV finds.

Dependents:   micromouse4_encoder_testing PID_Test Lab1_Test WorkingPID ... more

Committer:
aravindsv
Date:
Mon Nov 02 03:07:12 2015 +0000
Revision:
1:ebce2ad32f95
Parent:
0:ba7650f404af
Changed the RCC timeout value to 500 ms, so total code startup time before program starts running is ~1s. Hopefully no side-effects from lower startup timeouts

Who changed what in which revision?

UserRevisionLine numberNew contents of line
aravindsv 0:ba7650f404af 1 /* mbed Microcontroller Library
aravindsv 0:ba7650f404af 2 *******************************************************************************
aravindsv 0:ba7650f404af 3 * Copyright (c) 2014, STMicroelectronics
aravindsv 0:ba7650f404af 4 * All rights reserved.
aravindsv 0:ba7650f404af 5 *
aravindsv 0:ba7650f404af 6 * Redistribution and use in source and binary forms, with or without
aravindsv 0:ba7650f404af 7 * modification, are permitted provided that the following conditions are met:
aravindsv 0:ba7650f404af 8 *
aravindsv 0:ba7650f404af 9 * 1. Redistributions of source code must retain the above copyright notice,
aravindsv 0:ba7650f404af 10 * this list of conditions and the following disclaimer.
aravindsv 0:ba7650f404af 11 * 2. Redistributions in binary form must reproduce the above copyright notice,
aravindsv 0:ba7650f404af 12 * this list of conditions and the following disclaimer in the documentation
aravindsv 0:ba7650f404af 13 * and/or other materials provided with the distribution.
aravindsv 0:ba7650f404af 14 * 3. Neither the name of STMicroelectronics nor the names of its contributors
aravindsv 0:ba7650f404af 15 * may be used to endorse or promote products derived from this software
aravindsv 0:ba7650f404af 16 * without specific prior written permission.
aravindsv 0:ba7650f404af 17 *
aravindsv 0:ba7650f404af 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
aravindsv 0:ba7650f404af 19 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
aravindsv 0:ba7650f404af 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
aravindsv 0:ba7650f404af 21 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
aravindsv 0:ba7650f404af 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
aravindsv 0:ba7650f404af 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
aravindsv 0:ba7650f404af 24 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
aravindsv 0:ba7650f404af 25 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
aravindsv 0:ba7650f404af 26 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
aravindsv 0:ba7650f404af 27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
aravindsv 0:ba7650f404af 28 *******************************************************************************
aravindsv 0:ba7650f404af 29 */
aravindsv 0:ba7650f404af 30 #include "sleep_api.h"
aravindsv 0:ba7650f404af 31 #include "cmsis.h"
aravindsv 0:ba7650f404af 32
aravindsv 0:ba7650f404af 33 // This function is in the system_stm32f30x.c file
aravindsv 0:ba7650f404af 34 extern void SetSysClock(void);
aravindsv 0:ba7650f404af 35
aravindsv 0:ba7650f404af 36 // MCU SLEEP mode
aravindsv 0:ba7650f404af 37 void sleep(void) {
aravindsv 0:ba7650f404af 38 // Enable PWR clock
aravindsv 0:ba7650f404af 39 RCC_APB1PeriphClockCmd(RCC_APB1Periph_PWR, ENABLE);
aravindsv 0:ba7650f404af 40
aravindsv 0:ba7650f404af 41 // Request to enter SLEEP mode
aravindsv 0:ba7650f404af 42 PWR_EnterSleepMode(PWR_SLEEPEntry_WFI);
aravindsv 0:ba7650f404af 43 }
aravindsv 0:ba7650f404af 44
aravindsv 0:ba7650f404af 45 // MCU STOP mode
aravindsv 0:ba7650f404af 46 void deepsleep(void) {
aravindsv 0:ba7650f404af 47 // Enable PWR clock
aravindsv 0:ba7650f404af 48 RCC_APB1PeriphClockCmd(RCC_APB1Periph_PWR, ENABLE);
aravindsv 0:ba7650f404af 49
aravindsv 0:ba7650f404af 50 // Enter Stop Mode
aravindsv 0:ba7650f404af 51 PWR_EnterSTOPMode(PWR_Regulator_LowPower, PWR_STOPEntry_WFI);
aravindsv 0:ba7650f404af 52
aravindsv 0:ba7650f404af 53 // After wake-up from STOP reconfigure the PLL
aravindsv 0:ba7650f404af 54 SetSysClock();
aravindsv 0:ba7650f404af 55 }