summaryrefslogtreecommitdiffhomepage
path: root/digital/beacon/src/Bitcloud_stack/Components/HAL/avr/atmega1281/common/include/halClkCtrl.h
diff options
context:
space:
mode:
Diffstat (limited to 'digital/beacon/src/Bitcloud_stack/Components/HAL/avr/atmega1281/common/include/halClkCtrl.h')
-rw-r--r--digital/beacon/src/Bitcloud_stack/Components/HAL/avr/atmega1281/common/include/halClkCtrl.h70
1 files changed, 0 insertions, 70 deletions
diff --git a/digital/beacon/src/Bitcloud_stack/Components/HAL/avr/atmega1281/common/include/halClkCtrl.h b/digital/beacon/src/Bitcloud_stack/Components/HAL/avr/atmega1281/common/include/halClkCtrl.h
deleted file mode 100644
index 6bc7a11d..00000000
--- a/digital/beacon/src/Bitcloud_stack/Components/HAL/avr/atmega1281/common/include/halClkCtrl.h
+++ /dev/null
@@ -1,70 +0,0 @@
-/**************************************************************************//**
- \file halClkCtrl.h
-
- \brief Declarations of clock control hardware-dependent module.
-
- \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:
- 29/05/07 E. Ivanov - Created
- 16/04/09 A. Khromykh - Refactored
- ******************************************************************************/
-/******************************************************************************
- * WARNING: CHANGING THIS FILE MAY AFFECT CORE FUNCTIONALITY OF THE STACK. *
- * EXPERT USERS SHOULD PROCEED WITH CAUTION. *
- ******************************************************************************/
-
-#ifndef _HALCLKCTRL_H
-#define _HALCLKCTRL_H
-
-/******************************************************************************
- Includes section
-******************************************************************************/
-#include <types.h>
-#include <halFCPU.h>
-
-/******************************************************************************
- Types section
-******************************************************************************/
-/**************************************************************************//**
-\brief Possible clock source
-******************************************************************************/
-typedef enum
-{
- INTERNAL_RC,
- OTHER_SOURCE
-} ClkSource_t;
-
-/******************************************************************************
- Prototypes section
-******************************************************************************/
-/**************************************************************************//**
-\brief Initialization system clock.
-******************************************************************************/
-void halInitFreq(void);
-
-/**************************************************************************//**
-\brief Return clock source
-
-\return
- clock source.
-******************************************************************************/
-ClkSource_t halGetClockSource(void);
-
-/**************************************************************************//**
-\brief System clock.
-
-\return
- system clock in Hz.
-******************************************************************************/
-uint32_t HAL_ReadFreq(void);
-
-#endif /* _HALCLKCTRL_H */
-
-// eof halClkCtrl.h