summaryrefslogtreecommitdiff
path: root/digital/beacon/src/Bitcloud_stack/Components/BSP/MESHBEAN/src/sliders.c
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/BSP/MESHBEAN/src/sliders.c
parentd3807d11ae66d862d5a41cae082288de4b23465c (diff)
digital/beacon: remove obsolete bitcloud stack
Diffstat (limited to 'digital/beacon/src/Bitcloud_stack/Components/BSP/MESHBEAN/src/sliders.c')
-rw-r--r--digital/beacon/src/Bitcloud_stack/Components/BSP/MESHBEAN/src/sliders.c59
1 files changed, 0 insertions, 59 deletions
diff --git a/digital/beacon/src/Bitcloud_stack/Components/BSP/MESHBEAN/src/sliders.c b/digital/beacon/src/Bitcloud_stack/Components/BSP/MESHBEAN/src/sliders.c
deleted file mode 100644
index db417cdb..00000000
--- a/digital/beacon/src/Bitcloud_stack/Components/BSP/MESHBEAN/src/sliders.c
+++ /dev/null
@@ -1,59 +0,0 @@
-/**************************************************************************//**
-\file sliders.h
-
-\brief Implementation of the sliders.
-
-\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/06/07 E. Ivanov - Created
-******************************************************************************/
-#if APP_DISABLE_BSP != 1
-
-/******************************************************************************
- Includes section
-******************************************************************************/
-#include <types.h>
-#include <gpio.h>
-#include <sliders.h>
-
-/******************************************************************************
- Implementations section
-******************************************************************************/
-/**************************************************************************//**
-\brief Reads the sliders.
-
-\return
- state of 3 on­board DIP­switches.User can uses SLIDER0, SLIDER1, SLIDER2
- defines to test state. Value 1 indicates that slider is on.
-******************************************************************************/
-uint8_t BSP_ReadSliders(void)
-{
- uint8_t result;
-
- GPIO_3_make_in(); GPIO_3_make_pullup();
- GPIO_4_make_in(); GPIO_4_make_pullup();
- GPIO_5_make_in(); GPIO_5_make_pullup();
- /* NOP was added for correct work on 8 MHz frequency.
- clck i\o is not equal clck cpu.
- CPU must wait for I\O system 1 clock for synchronization. */
- NOP;
- result = GPIO_3_read() * SLIDER0;
- result |= GPIO_4_read() * SLIDER1;
- result |= GPIO_5_read() * SLIDER2;
- GPIO_3_make_in();
- GPIO_4_make_in();
- GPIO_5_make_in();
-
- return (~result) & 0x07;
-}
-
-#endif // APP_DISABLE_BSP != 1
-
-// end of sliders.c