8000 Comparing 10.3.1...main · stm32duino/STM32FreeRTOS · GitHub
[go: up one dir, main page]

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stm32duino/STM32FreeRTOS
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 10.3.1
Choose a base ref
...
head repository: stm32duino/STM32FreeRTOS
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 8 commits
  • 6 files changed
  • 3 contributors

Commits on Sep 13, 2022

  1. fix: set FreeRTOS Kernel priority to 14

    Aim is to have Systick priority higher (lower value)
    than Ethernet Timer
    
    Signed-off-by: Alexandre Bourdiol <alexandre.bourdiol@st.com>
    ABOSTM authored and fpistm committed Sep 13, 2022
    1 Configuration menu
    Copy the full SHA
    0ab4bbd View commit details
    Browse the repository at this point in the history

Commits on Feb 7, 2023

  1. fix: warning condition to manage newlib version > 3.x

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Feb 7, 2023
    Configuration menu
    Copy the full SHA
    727e46a View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2023

  1. FIXED BUG configKERNEL_INTERRUPT_PRIORITY must be left shifted accord…

    …ing to ref: "Cortex-M Internal Priority Representation" https://www.freertos.org/RTOS-Cortex-M3-M4.html
    cversek authored and fpistm committed Jun 6, 2023
    Configuration menu
    Copy the full SHA
    6d463ec View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2023

  1. chore: bump to v10.3.2

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm authored Jun 7, 2023
    Configuration menu
    Copy the full SHA
    490b9ed View commit details
    Browse the repository at this point in the history
  2. chore: bump to v10.3.2

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm authored Jun 7, 2023
    Configuration menu
    Copy the full SHA
    f3abddc View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2024

  1. feat: provide default functions only if requested

    configUSE_MALLOC_FAILED_HOOK and configCHECK_FOR_STACK_OVERFLOW
    allow to define specific function to call when a malloc failed
    or a stack overflow occured.
    Respectively, vApplicationIdleHook and vApplicationStackOverflowHook.
    
    Previous implementation provide them unconditionally preventing users
    to define their own implementation. Now extra config is required to
    have the default implementation:
    
    /* Set to 1 to use default blink hook if configUSE_MALLOC_FAILED_HOOK is 1 */
    #ifndef configUSE_MALLOC_FAILED_HOOK_BLINK
      #define configUSE_MALLOC_FAILED_HOOK_BLINK  0
    #endif
    /* Set to 1 to used default blink if configCHECK_FOR_STACK_OVERFLOW is 1 or 2 */
    #ifndef configCHECK_FOR_STACK_OVERFLOW_BLINK
      #define configCHECK_FOR_STACK_OVERFLOW_BLINK 0
    #endif
    
    
    Fixes #69.
    
    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    d05df76 View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2025

  1. fix: unused warnings

    Fixes #73.
    
    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Sep 9, 2025
    Configuration menu
    Copy the full SHA
    8041576 View commit details
    Browse the repository at this point in the history
  2. chore: bump to v10.3.3

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Sep 9, 2025
    Configuration menu
    Copy the full SHA
    3326261 View commit details
    Browse the repository at this point in the history
Loading
0