summaryrefslogtreecommitdiff
path: root/digital/beacon/src/Bitcloud_stack/Components/HAL/avr/atmega1281/common/include/halSleep.h
diff options
context:
space:
mode:
authorFlorent Duchon2012-12-26 17:38:10 +0100
committerFlorent Duchon2013-02-13 21:24:56 +0100
commit22abd06132445a55a1a0266897920f26634825c1 (patch)
treeeb56bd5654cd3a443b51ee3ea61cc9bbef6f185e /digital/beacon/src/Bitcloud_stack/Components/HAL/avr/atmega1281/common/include/halSleep.h
parentd3807d11ae66d862d5a41cae082288de4b23465c (diff)
digital/beacon: remove obsolete bitcloud stack
Diffstat (limited to 'digital/beacon/src/Bitcloud_stack/Components/HAL/avr/atmega1281/common/include/halSleep.h')
-rw-r--r--digital/beacon/src/Bitcloud_stack/Components/HAL/avr/atmega1281/common/include/halSleep.h73
1 files changed, 0 insertions, 73 deletions
diff --git a/digital/beacon/src/Bitcloud_stack/Components/HAL/avr/atmega1281/common/include/halSleep.h b/digital/beacon/src/Bitcloud_stack/Components/HAL/avr/atmega1281/common/include/halSleep.h
deleted file mode 100644
index c82c1a09..00000000
--- a/digital/beacon/src/Bitcloud_stack/Components/HAL/avr/atmega1281/common/include/halSleep.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/**************************************************************************//**
- \file halSleep.h
-
- \brief Interface to control sleep mode.
-
- \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:
- 1/12/09 A. Khromykh - Created
- ******************************************************************************/
-/******************************************************************************
- * WARNING: CHANGING THIS FILE MAY AFFECT CORE FUNCTIONALITY OF THE STACK. *
- * EXPERT USERS SHOULD PROCEED WITH CAUTION. *
- ******************************************************************************/
-
-#ifndef _HALSLEEP_H
-#define _HALSLEEP_H
-
-/******************************************************************************
- Includes section
-******************************************************************************/
-#include <sleep.h>
-#include <sleepTimer.h>
-
-/******************************************************************************
- Defines section
-******************************************************************************/
-#define HAL_ACTIVE_MODE 0
-#define HAL_SLEEP_MODE 1
-#define HAL_SLEEP_TIMER_IS_STOPPED 0
-#define HAL_SLEEP_TIMER_IS_STARTED 1
-#define HAL_SLEEP_TIMER_IS_WAKEUP_SOURCE 0
-#define HAL_EXT_IRQ_IS_WAKEUP_SOURCE 1
-
-/******************************************************************************
- Types section
-******************************************************************************/
-typedef struct
-{
- HAL_WakeUpCallback_t callback;
- HAL_SleepTimer_t sleepTimer;
- uint8_t wakeupStation : 1;
- uint8_t wakeupSource : 1;
- uint8_t sleepTimerState : 1;
-} HalSleepControl_t;
-
-/******************************************************************************
- Prototypes section
-******************************************************************************/
-/**************************************************************************//**
-\brief Switch on system power.
-
-\param[in]
- wakeupSource - wake up source
-******************************************************************************/
-void halPowerOn(const uint8_t wakeupSource);
-
-/*******************************************************************************
- Shutdown system.
- NOTES:
- the application should be sure the poweroff will not be
- interrupted after the execution of the sleep().
-*******************************************************************************/
-void halPowerOff(void);
-
-#endif /* _HALSLEEP_H */
-// eof halSleep.h