Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

xTimerStop does not always work first time

Posted by Bryn Smith on July 10, 2013
I am running a software timer with a 1 tick period which is started from an ISR (using xTimerStartFromISR) and then stops itself (using xTimerStop).

After the call to xTimerStop returns pdPASS the timer will sometimes continue running. This comes as a surprise to me as the timer.c code looks like it processes all the commands in the queue between invocations of the timer handler.

My current workaround is to use a local flag to indicate if the timer should be stopped and try calling xTimerStop again.

RE: xTimerStop does not always work first time

Posted by Bryn Smith on July 10, 2013
Forgot to mention this is FreeRTOS version 7.4.0

RE: xTimerStop does not always work first time

Posted by Dave on July 10, 2013
When you send the stop command the command is posted to a queue that is drained by the timer service task, so the return value indicates the command was sent to the queue not that the command has been processed. When the command is processed depends on the priority of the timer service task. If the timer service task has the highest priority of all your tasks then it will get processed right away.

I'm not sure it is viable to have a software timer that has the same frequency as the tick. The tick sets the time base, so if your software timer time period is exactly the system time base then it will need to run all the time. Maybe it is preventing the command being processed?

RE: xTimerStop does not always work first time

Posted by Bryn Smith on July 11, 2013
I use timers as Task alternatives for most modules in my system as they:
1) share a stack, saving a significant amount of RAM.
2) run cooperatively, simplifying shared data access

This particular 'timer' is effectively a block of code which runs on an event triggered by an ISR. I *could* have done it with a task, but it would be sitting there 99.99% of the time hogging stack space and doing nothing.

Certainly I am aware that this is not what timers were designed for, but I expected that the stop command (called from the timer handler) would be processed before the timer handler was invoked again.


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner