summaryrefslogtreecommitdiff
path: root/digital/beacon/src/Bitcloud_stack/Components/HAL/include/appTimer.h
diff options
context:
space:
mode:
Diffstat (limited to 'digital/beacon/src/Bitcloud_stack/Components/HAL/include/appTimer.h')
-rw-r--r--digital/beacon/src/Bitcloud_stack/Components/HAL/include/appTimer.h81
1 files changed, 0 insertions, 81 deletions
diff --git a/digital/beacon/src/Bitcloud_stack/Components/HAL/include/appTimer.h b/digital/beacon/src/Bitcloud_stack/Components/HAL/include/appTimer.h
deleted file mode 100644
index 9c241ab6..00000000
--- a/digital/beacon/src/Bitcloud_stack/Components/HAL/include/appTimer.h
+++ /dev/null
@@ -1,81 +0,0 @@
-/***************************************************************************//**
- \file appTimer.h
-
- \brief The header file describes the appTimer interface.
-
- \author
- Atmel Corporation: http://www.atmel.com \n
- Support email: avr@atmel.com
-
- Copyright (c) 2008-2011, Atmel Corporation. All rights reserved.
- Licensed under Atmel's Limited License Agreement (BitCloudTM).
-
- \internal
- History:
- 5/12/07 A. Khromykh - Created
- ******************************************************************************/
-/******************************************************************************
- * WARNING: CHANGING THIS FILE MAY AFFECT CORE FUNCTIONALITY OF THE STACK. *
- * EXPERT USERS SHOULD PROCEED WITH CAUTION. *
- ******************************************************************************/
-
-#ifndef _APPTIMER_H
-#define _APPTIMER_H
-
-// \cond
-/******************************************************************************
- Includes section
-******************************************************************************/
-#include <types.h>
-#include <bcTimer.h>
-#include <halAppClock.h>
-// \endcond
-
-/******************************************************************************
- Types section
-******************************************************************************/
-/** \brief fields of structure: \n
- uint32_t interval - timer firing interval. Interval must be more than 10 ms (set by user) \n
- TimerMode_t mode - timer work mode (set by user). Must be chosen from: \n
- TIMER_REPEAT_MODE \n
- TIMER_ONE_SHOT_MODE \n
- void (*callback)(void) - pointer to timer callback function (set by user). */
-typedef Timer_t HAL_AppTimer_t;
-
-/******************************************************************************
- Prototypes section
-******************************************************************************/
-/**************************************************************************//**
-\brief Starts to count an interval (starts user timer).
-
-\param[in]
- appTimer - pointer to the timer structure (HAL_AppTimer_t is typedef Timer_t)
-
-\return
- -1 - pointer is NULL
- 0 - success
-******************************************************************************/
-int HAL_StartAppTimer(HAL_AppTimer_t *appTimer);
-
-/**************************************************************************//**
-\brief Stops the user timer.
-
-\param[in]
- appTimer - pointer to the timer structure.
-
-\return
- -1 - there is no appTimer started or pointer is NULL
- 0 - success
-******************************************************************************/
-int HAL_StopAppTimer(HAL_AppTimer_t *appTimer);
-
-/**************************************************************************//**
-\brief Gets system time.
-
-\return
- time since power up in milliseconds(8 bytes).
-******************************************************************************/
-BcTime_t HAL_GetSystemTime(void);
-
-#endif /*_APPTIMER_H*/
-//eof appTimer.h