 4d6b170769
			
		
	
	
		4d6b170769
		
			
		
	
	
	
	
		
			
			* Fixing compiler warnings with -Wextra * More warnings suppression, WIP * Even more warning fixes * Added new lines at end of text files. * Padding fix * Additional fixes to warnings on different build configurations; added -Wextra to default build pipeline * Fixes for Secplus v1 * -additional warnings * +-Wredundant-decls fixes * FuriHal: print stack overflow task name in console * FuriHal: add missing include Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			126 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			126 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| /******************************************************************************
 | |
|   * @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
 | |
|  *
 | |
|  */
 | |
| 
 | |
| /*
 | |
| ******************************************************************************
 | |
| * INCLUDES
 | |
| ******************************************************************************
 | |
| */
 | |
| #include <stdint.h>
 | |
| #include <stdbool.h>
 | |
| 
 | |
| /*
 | |
| ******************************************************************************
 | |
| * GLOBAL MACROS
 | |
| ******************************************************************************
 | |
| */
 | |
| #define timerIsRunning(t) (!timerIsExpired(t))
 | |
| 
 | |
| /*
 | |
| ******************************************************************************
 | |
| * GLOBAL DEFINES
 | |
| ******************************************************************************
 | |
| */
 | |
| 
 | |
| /*! 
 | |
|  *****************************************************************************
 | |
|  * \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 
 | |
|  *****************************************************************************
 | |
|  */
 | |
| uint32_t timerCalculateTimer(uint16_t time);
 | |
| 
 | |
| /*! 
 | |
|  *****************************************************************************
 | |
|  * \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
 | |
|  *****************************************************************************
 | |
|  */
 | |
| bool timerIsExpired(uint32_t timer);
 | |
| 
 | |
| /*! 
 | |
|  *****************************************************************************
 | |
|  * \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
 | |
|  *
 | |
|  *****************************************************************************
 | |
|  */
 | |
| void timerDelay(uint16_t time);
 | |
| 
 | |
| /*! 
 | |
|  *****************************************************************************
 | |
|  * \brief  Stopwatch start
 | |
|  *  
 | |
|  * This method initiates the stopwatch to later measure the time in ms
 | |
|  * 
 | |
|  *****************************************************************************
 | |
|  */
 | |
| void timerStopwatchStart(void);
 | |
| 
 | |
| /*! 
 | |
|  *****************************************************************************
 | |
|  * \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
 | |
|  *****************************************************************************
 | |
|  */
 | |
| uint32_t timerStopwatchMeasure(void);
 |