/**
@page PWR_CurrentConsumption PWR Current Consumption example
@verbatim
******************** (C) COPYRIGHT 2014 STMicroelectronics *******************
* @file PWR_CurrentConsumption/readme.txt
* @author MCD Application Team
* @version V1.0.0
* @date 17-January-2014
* @brief Description of the PWR Current Consumption example.
******************************************************************************
* @attention
*
* <h2><center>© COPYRIGHT 2014 STMicroelectronics</center></h2>
*
*
* Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.st.com/software_license_agreement_liberty_v2
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
******************************************************************************
@endverbatim
@par PWR_CurrentConsumption Description
This example shows how to configure the STM32F0xx system to measure different
Low Power modes current consumption. The Low Power modes are:
- Sleep Mode
- STOP mode with RTC
- STANDBY mode without RTC
- STANDBY mode with RTC
To run this example, user has to follow the following steps:
1. Select the Low power modes to be measured by uncommenting the corresponding
line inside the stm32f0xx_lp_modes.h file.
@code
/*#define SLEEP_MODE*/
/*#define STOP_MODE*/
/*#define STANDBY_MODE*/
#define STANDBY_RTC_MODE
@endcode
2. Use an external amperemeter to measure the IDD current.
3. This example can not be used in DEBUG mode as the JTAG IOs are disabled to
reduce power consumption.
Here below a detailed description of the example code:
1. After reset, the program waits for user push-button connected to the PA.00
to be pressed to enter the selected low power mode.
- In SLEEP_MODE, press again the user push-button to exit the low power mode.
- In STOP_MODE and STANDBY_RTC_MODE, the wakeup from low power mode is automatically
generated by the RTC (after ~5s).
- In STANDBY_MODE test, press again user push-button to exit the low power mode.
2. Low power modes description:
- Sleep Mode
============
- System Running at PLL (48MHz)
- Flash 1 wait state
- Code running from Internal FLASH
- All peripherals disabled.
- Wakeup using EXTI Line 8 (PA.00, connected to user push-button on STM32072B-DISCO)
- STOP Mode
===========
- RTC Clocked by LSI
- Regulator in LP mode
- HSI, HSE OFF and LSI if not used as RTC Clock source
- No IWDG
- FLASH in deep power down mode
- Automatic Wakeup using RTC clocked by LSI
- STANDBY Mode
==============
- RTC OFF
- IWDG and LSI OFF
- Wakeup using WakeUp Pin (PA.00, connected to user push-button on STM32072B-DISCO)
- STANDBY Mode with RTC clocked by LSI
==========================================
- RTC Clocked by LSI
- IWDG OFF
- Automatic Wakeup using RTC
@par Directory contents
- PWR_CurrentConsumption/stm32f0xx_conf.h Library Configuration file
- PWR_CurrentConsumption/stm32f0xx_it.c Interrupt handlers
- PWR_CurrentConsumption/stm32f0xx_it.h Interrupt handlers header file
- PWR_CurrentConsumption/main.h Header for main.c module
- PWR_CurrentConsumption/main.c Main program
- PWR_CurrentConsumption/system_stm32f0xx.c STM32F0xx system source file
@par Hardware and Software environment
- This example runs on STM32F072xx Devices.
- This example has been tested with STMicroelectronics STM32F072B-DISCO RevB
board and can be easily tailored to any other supported device
and development board.
- STM32F072B-DISCO Set-up
- Use LED4 connected to PC.08 pin.
- Use User button connected to PA.00 pin.
- Connect an amperemeter to JP2 to measure the IDD current
@par How to use it ?
In order to make the program work, you must do the following :
+ EWARM
- Open the PWR_CurrentConsumption.eww workspace
- Rebuild all files: Project->Rebuild all
- Load project image: Project->Debug
- Run program: Debug->Go(F5)
+ MDK-ARM
- Open the PWR_CurrentConsumption.uvproj project.
- Rebuild all files: Project->Rebuild all target files.
- Load project image: Debug->Start/Stop Debug Session.
- Run program: Debug->Run (F5).
+ TrueSTUDO
- Open the TrueSTUDIO toolchain.
- Click on File->Switch Workspace->Other and browse to TrueSTUDIO workspace
directory.
- Click on File->Import, select General->'Existing Projects into Workspace'
and then click "Next".
- Browse to the TrueSTUDIO workspace directory, select the project.
- Rebuild all project files: Select the project in the "Project explorer"
window then click on Project->build project menu.
- Run program: Run->Debug (F11).
* <h3><center>© COPYRIGHT STMicroelectronics</center></h3>
*/