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 --- .../HAL/drivers/include/massStorageDevice.h | 71 ---------------------- 1 file changed, 71 deletions(-) delete mode 100644 digital/beacon/src/Bitcloud_stack/Components/HAL/drivers/include/massStorageDevice.h (limited to 'digital/beacon/src/Bitcloud_stack/Components/HAL/drivers/include/massStorageDevice.h') diff --git a/digital/beacon/src/Bitcloud_stack/Components/HAL/drivers/include/massStorageDevice.h b/digital/beacon/src/Bitcloud_stack/Components/HAL/drivers/include/massStorageDevice.h deleted file mode 100644 index f8957a90..00000000 --- a/digital/beacon/src/Bitcloud_stack/Components/HAL/drivers/include/massStorageDevice.h +++ /dev/null @@ -1,71 +0,0 @@ -/****************************************************************************//** - \file massStorageDevice.h - - \brief The header file describes the interface of the mass storage device - - \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/08/11 N. Fomin - Created -*******************************************************************************/ -#ifndef _MASSSTORAGEDEVICE_H -#define _MASSSTORAGEDEVICE_H - -/****************************************************************************** - Includes section -******************************************************************************/ -#include - -/****************************************************************************** - Define(s) section -******************************************************************************/ -#define MSD_TRANSMIT_PIPE 5 -#define MSD_RECEIVE_PIPE 6 - -/****************************************************************************** - Types section -******************************************************************************/ -/** \brief Status messages for upper layer about msd status */ -typedef enum -{ - MSD_STATUS_SUCCESS = 0, - MSD_INTERFACE_BUSY, - MSD_MEMORY_INIT_ERROR, - MSD_READ_CAPACITY_ERROR, - MSD_READ_ERROR, - MSD_WRITE_ERROR -} MSD_Status_t; - -typedef void (* MSD_Callback_t)(MSD_Status_t); - -/****************************************************************************** - Prototypes section -******************************************************************************/ -/**************************************************************************//** -\brief Opens mass storage device. -\param[in] - callback - pointer to function to notify about MSD errors and transactions; - responseBuffer - pointer to hsmci command response buffer; it should have - a size of four; - buffer - pointer to buffer for hsmci data transfer; it should be - a multiplier of 512; - length - length of buffer for data transfer. -\return - nothing -******************************************************************************/ -void MSD_Open(MSD_Callback_t callback, uint32_t *responseBuffer, uint8_t *buffer, uint32_t length); - -/**************************************************************************//** -\brief Closes mass storage device. -\return - nothing -******************************************************************************/ -void MSD_Close(void); - -#endif /* _MASSSTORAGEDEVICE_H */ -- cgit v1.2.3