2022-05-06 13:37:10 +00:00
|
|
|
#pragma once
|
2020-10-18 22:09:48 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* @attention
|
|
|
|
*
|
|
|
|
* <h2><center>© COPYRIGHT 2016 STMicroelectronics</center></h2>
|
|
|
|
*
|
|
|
|
* Licensed under ST MYLIBERTY SOFTWARE LICENSE AGREEMENT (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/myliberty
|
|
|
|
*
|
|
|
|
* 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,
|
|
|
|
* AND SPECIFICALLY DISCLAIMING THE IMPLIED WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
/*
|
|
|
|
* PROJECT: ST25R391x firmware
|
|
|
|
* $Revision: $
|
|
|
|
* LANGUAGE: ANSI C
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*! \file timer.h
|
|
|
|
*
|
|
|
|
* \brief SW Timer implementation header file
|
|
|
|
*
|
|
|
|
* This module makes use of a System Tick in millisconds and provides
|
|
|
|
* an abstraction for SW timers
|
|
|
|
*
|
|
|
|
*/
|
2022-01-05 16:10:18 +00:00
|
|
|
|
|
|
|
/*
|
2020-10-18 22:09:48 +00:00
|
|
|
******************************************************************************
|
|
|
|
* INCLUDES
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
2022-05-06 13:37:10 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
2020-10-18 22:09:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
******************************************************************************
|
|
|
|
* GLOBAL MACROS
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
2022-01-05 16:10:18 +00:00
|
|
|
#define timerIsRunning(t) (!timerIsExpired(t))
|
2020-10-18 22:09:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
******************************************************************************
|
|
|
|
* GLOBAL DEFINES
|
|
|
|
******************************************************************************
|
|
|
|
*/
|
2022-01-05 16:10:18 +00:00
|
|
|
|
|
|
|
/*!
|
2020-10-18 22:09:48 +00:00
|
|
|
*****************************************************************************
|
|
|
|
* \brief Calculate Timer
|
|
|
|
*
|
|
|
|
* This method calculates when the timer will be expired given the amount
|
|
|
|
* time in milliseconds /a tOut.
|
|
|
|
* Once the timer has been calculated it will then be used to check when
|
|
|
|
* it expires.
|
|
|
|
*
|
|
|
|
* \see timersIsExpired
|
|
|
|
*
|
|
|
|
* \param[in] time : time/duration in Milliseconds for the timer
|
|
|
|
*
|
|
|
|
* \return u32 : The new timer calculated based on the given time
|
|
|
|
*****************************************************************************
|
|
|
|
*/
|
2022-01-05 16:10:18 +00:00
|
|
|
uint32_t timerCalculateTimer(uint16_t time);
|
2020-10-18 22:09:48 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
*****************************************************************************
|
|
|
|
* \brief Checks if a Timer is Expired
|
|
|
|
*
|
|
|
|
* This method checks if a timer has already expired.
|
|
|
|
* Based on the given timer previously calculated it checks if this timer
|
|
|
|
* has already elapsed
|
|
|
|
*
|
|
|
|
* \see timersCalculateTimer
|
|
|
|
*
|
|
|
|
* \param[in] timer : the timer to check
|
|
|
|
*
|
|
|
|
* \return true : timer has already expired
|
|
|
|
* \return false : timer is still running
|
|
|
|
*****************************************************************************
|
|
|
|
*/
|
2022-01-05 16:10:18 +00:00
|
|
|
bool timerIsExpired(uint32_t timer);
|
2020-10-18 22:09:48 +00:00
|
|
|
|
2022-01-05 16:10:18 +00:00
|
|
|
/*!
|
2020-10-18 22:09:48 +00:00
|
|
|
*****************************************************************************
|
|
|
|
* \brief Performs a Delay
|
|
|
|
*
|
|
|
|
* This method performs a delay for the given amount of time in Milliseconds
|
|
|
|
*
|
|
|
|
* \param[in] time : time/duration in Milliseconds of the delay
|
|
|
|
*
|
|
|
|
*****************************************************************************
|
|
|
|
*/
|
2022-01-05 16:10:18 +00:00
|
|
|
void timerDelay(uint16_t time);
|
2020-10-18 22:09:48 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
*****************************************************************************
|
|
|
|
* \brief Stopwatch start
|
|
|
|
*
|
|
|
|
* This method initiates the stopwatch to later measure the time in ms
|
|
|
|
*
|
|
|
|
*****************************************************************************
|
|
|
|
*/
|
2022-01-05 16:10:18 +00:00
|
|
|
void timerStopwatchStart(void);
|
2020-10-18 22:09:48 +00:00
|
|
|
|
|
|
|
/*!
|
|
|
|
*****************************************************************************
|
|
|
|
* \brief Stopwatch Measure
|
|
|
|
*
|
|
|
|
* This method returns the elapsed time in ms since the stopwatch was initiated
|
|
|
|
*
|
|
|
|
* \return The time in ms since the stopwatch was started
|
|
|
|
*****************************************************************************
|
|
|
|
*/
|
2022-01-05 16:10:18 +00:00
|
|
|
uint32_t timerStopwatchMeasure(void);
|