STM32CubeWL/Projects/NUCLEO-WL55JC/Applications/FreeRTOS/FreeRTOS_StopMode
Rania JMAI 9d77b66f25 Release v1.3.1 2025-01-30 09:55:17 +01:00
..
EWARM Release v1.2.0 2022-12-07 18:38:46 +01:00
Inc Release v1.2.0 2022-12-07 18:38:46 +01:00
MDK-ARM Release v1.2.0 2022-12-07 18:38:46 +01:00
STM32CubeIDE Release v1.2.0 2022-12-07 18:38:46 +01:00
Src Release v1.3.0 2022-12-08 15:37:52 +01:00
.extSettings Release v1.0.0 2020-12-18 15:30:45 +01:00
FreeRTOS_StopMode.ioc Release v1.3.1 2025-01-30 09:55:17 +01:00
readme.txt Release v1.2.0 2022-12-07 18:38:46 +01:00

readme.txt

/**
  @page FreeRTOS_StopMode FreeRTOS Stop Mode example

  @verbatim
  ******************************************************************************
  * @file    FreeRTOS/FreeRTOS_StopMode/readme.txt
  * @author  MCD Application Team
  * @brief   Description of the FreeRTOS Stop Mode example.
  ******************************************************************************
  * @attention
  *
  * Copyright (c) 2020 STMicroelectronics.
  * All rights reserved.
  *
  * This software is licensed under terms that can be found in the LICENSE file
  * in the root directory of this software component.
  * If no LICENSE file comes with this software, it is provided AS-IS.
  *
  ******************************************************************************
  @endverbatim

@par Application Description

How to enter and exit low-power mode with CMSISOS2.0 RTOS API.

This application creates two threads.

   + A "RxThread" that blocks on a the "osqueue" message queue to wait for data. As soon as
     data is available in the "osqueue" the LED2 blinks.
	 
   + A "TxThread" that waits for a semaphore. Once the semaphore is released (from LPTIM ISR),
     the "TxThread" puts message in "osqueue".

Blocking for a finite period allows the kernel to stop tick interrupt
and place STM32 into stop mode - the lowest-power mode possible
that allows the CPU registers and RAM to retain their state.

In this example, non-used GPIOs are configured to analog, thus helping to reduce
the power consumption of the device.

Observed behaviour:
Each 1s, the LED2 is toggling as sign for wakeup from "Stop Mode". In fact, when the threads
are not running, i.e "Idle Mode", the FreeRTOS through the PreSleepProcessing(), that 
calls HAL_PWR_EnterSTOPMode(), makes the system enter in "STOP mode" (power consumption as low as 2mA).


@note Care must be taken when using HAL_Delay(), this function provides accurate
      delay (in milliseconds) based on variable incremented in HAL time base ISR.
      This implies that if HAL_Delay() is called from a peripheral ISR process, then
      the HAL time base interrupt must have higher priority (numerically lower) than
      the peripheral interrupt. Otherwise the caller ISR process will be blocked.
      To change the HAL time base interrupt priority you have to use HAL_NVIC_SetPriority()
      function.

@note The application needs to ensure that the HAL time base is always set to 1 millisecond
      to have correct HAL operation.

@note The FreeRTOS heap size configTOTAL_HEAP_SIZE defined in FreeRTOSConfig.h is set accordingly to the
      OS resources memory requirements of the application with +10% margin and rounded to the upper Kbyte boundary.
	  
@note In "Stop Mode" the MCU isn't accessible by the debugger.

For more details about FreeRTOS implementation on STM32Cube, please refer to UM1722 "Developing Applications
on STM32Cube with RTOS".

@par Keywords

RTOS, FreeRTOS, LowPower, StopMode

@par Directory contents
    - FreeRTOS/FreeRTOS_StopMode/Src/app_freertos.c               FreeRTOS application file
    - FreeRTOS/FreeRTOS_StopMode/Src/main.c                       Main program
    - FreeRTOS/FreeRTOS_StopMode/Src/stm32wlxx_hal_timebase_tim.c HAL timebase file
    - FreeRTOS/FreeRTOS_StopMode/Src/stm32wlxx_it.c               Interrupt handlers
    - FreeRTOS/FreeRTOS_StopMode/Src/system_stm32wlxx.c           STM32WLxx system clock configuration file
    - FreeRTOS/FreeRTOS_StopMode/Inc/main.h                       Main program header file
    - FreeRTOS/FreeRTOS_StopMode/Inc/stm32wlxx_hal_conf.h         HAL Library Configuration file
    - FreeRTOS/FreeRTOS_StopMode/Inc/stm32wlxx_it.h               Interrupt handlers header file
    - FreeRTOS/FreeRTOS_StopMode/Inc/FreeRTOSConfig.h             FreeRTOS Configuration file

@par Hardware and Software environment

  - This application runs on STM32WL55JCIx devices.

  - This application has been tested with NUCLEO-WL55JC RevC board and can be
    easily tailored to any other supported device and development board.

@par How to use it ?

In order to make the program work, you must do the following:
 - Open your preferred toolchain
 - Rebuild all files and load your image into target memory
 - Run the example

 */