From 22abd06132445a55a1a0266897920f26634825c1 Mon Sep 17 00:00:00 2001 From: Florent Duchon Date: Wed, 26 Dec 2012 17:38:10 +0100 Subject: digital/beacon: remove obsolete bitcloud stack --- .../Components/HAL/avr/common/src/appTimer.c | 169 --------------------- 1 file changed, 169 deletions(-) delete mode 100644 digital/beacon/src/Bitcloud_stack/Components/HAL/avr/common/src/appTimer.c (limited to 'digital/beacon/src/Bitcloud_stack/Components/HAL/avr/common/src/appTimer.c') diff --git a/digital/beacon/src/Bitcloud_stack/Components/HAL/avr/common/src/appTimer.c b/digital/beacon/src/Bitcloud_stack/Components/HAL/avr/common/src/appTimer.c deleted file mode 100644 index 45047822..00000000 --- a/digital/beacon/src/Bitcloud_stack/Components/HAL/avr/common/src/appTimer.c +++ /dev/null @@ -1,169 +0,0 @@ -/**************************************************************************//** - \file appTimer.c - - \brief Implementation of appTimer. - - \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. * - ******************************************************************************/ - -/****************************************************************************** - Includes section -******************************************************************************/ -#include -#include -#include -#include -#include -#include -#if defined(_SYSTEM_TIME_ON_SLEEP_TIMER_) - #include -#endif - -/****************************************************************************** - External global variables section -******************************************************************************/ -extern uint8_t halSleepTimerOvfw; -extern uint8_t halAppTimeOvfw; - -/****************************************************************************** - Global variables section -******************************************************************************/ -static HAL_AppTimer_t *halAppTimerHead = NULL; // head of appTimer list - -/****************************************************************************** - Implementations section -******************************************************************************/ -/****************************************************************************** -Interrupt handler of appTimer clock. -******************************************************************************/ -void halAppTimerHandler(void) -{ - uint32_t sysTime; - - // search for expired timers and call their callbacks - while ( halAppTimerHead - && ((sysTime = halGetTimeOfAppTimer()) - halAppTimerHead->service.sysTimeLabel) >= halAppTimerHead->interval) - { - HAL_AppTimer_t *p = halAppTimerHead; - halRemoveTimer(&halAppTimerHead, NULL, p); - if (TIMER_REPEAT_MODE == p->mode) - { - p->service.sysTimeLabel = sysTime; - halAddTimer(&halAppTimerHead, p, sysTime); - } - p->callback(); - } -} - -/****************************************************************************** -Check if timer is already started. -Parameters: - appTimer - pointer to HAL_AppTimer_t. -Returns: - true - timer specified already started and presents in the system timers queue - false - timer is't started yet -******************************************************************************/ -static bool isTimerAlreadyStarted(HAL_AppTimer_t *appTimer) -{ - bool result = false; - Timer_t *p; // p is bottom of list - p = halAppTimerHead; - - while (NULL != p) - { - if (p == appTimer) - { - result = true; - assert(false, APPTIMER_MISTAKE); - break; - } - p = (Timer_t *)p->service.next; - } - return result; -} - - -/****************************************************************************** -Starts to count an interval. -Parameters: - appTimer - pointer to HAL_AppTimer_t. -Returns: - -1 - pointer is NULL. - 0 - success -******************************************************************************/ -int HAL_StartAppTimer(HAL_AppTimer_t *appTimer) -{ - uint32_t sysTime; - - if (!appTimer) - return -1; - - if (true == isTimerAlreadyStarted(appTimer)) - return 0; - - sysTime = halGetTimeOfAppTimer(); - appTimer->service.next = NULL; - appTimer->service.sysTimeLabel = sysTime; - halAddTimer((Timer_t**)(&halAppTimerHead), (Timer_t*)appTimer, sysTime); - return 0; -} - -/****************************************************************************** -Stops the timer. -Parameters: - appTimer - pointer to HAL_AppTimer_t. -Returns: - -1 there is not the appTimer. - 0 - success -******************************************************************************/ -int HAL_StopAppTimer(HAL_AppTimer_t *appTimer) -{ - Timer_t *prev = 0; - Timer_t **t = &appTimer; - - if (!appTimer) - return -1; - if (halAppTimerHead != *t) - { - if (!(prev = halFindPrevTimer((Timer_t**)(&halAppTimerHead), appTimer))) - return -1; // This timer is not in the list - } - halRemoveTimer((Timer_t**)(&halAppTimerHead), prev, appTimer); - return 0; -} - -/**************************************************************************//** -\brief Gets system time. - -\return - time since power up in milliseconds(8 bytes). -******************************************************************************/ -BcTime_t HAL_GetSystemTime(void) -{ - BcTime_t sysTime = 0ull; - - #if defined(_SYSTEM_TIME_ON_SLEEP_TIMER_) - sysTime = halGetTimeOfSleepTimer(); - sysTime |= ((BcTime_t)halSleepTimerOvfw << 32); - #else - sysTime = halGetTimeOfAppTimer(); - sysTime |= ((BcTime_t)halAppTimeOvfw << 32); - #endif - - return sysTime; -} - -// eof appTimer.c -- cgit v1.2.3