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/BSP/include/joystick.h | 74 ---------------------- 1 file changed, 74 deletions(-) delete mode 100644 digital/beacon/src/Bitcloud_stack/Components/BSP/include/joystick.h (limited to 'digital/beacon/src/Bitcloud_stack/Components/BSP/include/joystick.h') diff --git a/digital/beacon/src/Bitcloud_stack/Components/BSP/include/joystick.h b/digital/beacon/src/Bitcloud_stack/Components/BSP/include/joystick.h deleted file mode 100644 index d2c8581e..00000000 --- a/digital/beacon/src/Bitcloud_stack/Components/BSP/include/joystick.h +++ /dev/null @@ -1,74 +0,0 @@ -/***************************************************************************//** - \file joystick.h - - \brief The header file describes the joystick 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: - 10/09/07 A. Khromykh - Created -*******************************************************************************/ - -#ifndef _BSPJOYSTICK_H -#define _BSPJOYSTICK_H - -/****************************************************************************** - Includes section -******************************************************************************/ -// \cond -#include -// \endcond - -/****************************************************************************** - Types section -******************************************************************************/ -/*! \brief joystick states */ -typedef enum -{ - JOYSTICK_LEFT, - JOYSTICK_RIGHT, - JOYSTICK_UP, - JOYSTICK_DOWN, - JOYSTICK_PUSH -} BSP_JoystickState_t; - -/****************************************************************************** - Prototypes section -******************************************************************************/ -/**************************************************************************//** -\brief Opens component and registers handler for joystick events. -\param[in] - generalHandler - the joystick handler -\param[in] - state - joystick state  -\return - BC_FAIL - joystick module is busy, \n - BC_SUCCESS - joystick module is free. -******************************************************************************/ -result_t BSP_OpenJoystick(void (*generalHandler)(BSP_JoystickState_t state)); - -/**************************************************************************//** -\brief closes joystick component. - -\return - BC_FAIL - joystick module was not opened, \n - BC_SUCCESS - joystick module was closed. -******************************************************************************/ -result_t BSP_CloseJoystick(void); - -/**************************************************************************//** -\brief Reads state of joystick. - -\return -   Joystick state. -******************************************************************************/ -BSP_JoystickState_t BSP_ReadJoystickState(void); - -#endif /* _BSPJOYSTICK_H */ -//eof joystick.h -- cgit v1.2.3