summaryrefslogtreecommitdiffhomepage
path: root/digital/beacon/src/Bitcloud_stack/Components/HAL/drivers/USBFIFO/include/usbFifoVirtualUsart.h
diff options
context:
space:
mode:
Diffstat (limited to 'digital/beacon/src/Bitcloud_stack/Components/HAL/drivers/USBFIFO/include/usbFifoVirtualUsart.h')
-rw-r--r--digital/beacon/src/Bitcloud_stack/Components/HAL/drivers/USBFIFO/include/usbFifoVirtualUsart.h69
1 files changed, 0 insertions, 69 deletions
diff --git a/digital/beacon/src/Bitcloud_stack/Components/HAL/drivers/USBFIFO/include/usbFifoVirtualUsart.h b/digital/beacon/src/Bitcloud_stack/Components/HAL/drivers/USBFIFO/include/usbFifoVirtualUsart.h
deleted file mode 100644
index 7b000818..00000000
--- a/digital/beacon/src/Bitcloud_stack/Components/HAL/drivers/USBFIFO/include/usbFifoVirtualUsart.h
+++ /dev/null
@@ -1,69 +0,0 @@
-/**************************************************************************//**
-\file usbFifoVirtualUsart.h
-
-\brief The declaration of interfunction 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:
- 15.07.11 A. Khromykh - Created
-*******************************************************************************/
-#ifndef _USBFIFOVIRTUALUSART_H
-#define _USBFIFOVIRTUALUSART_H
-
-/******************************************************************************
- Includes section
-******************************************************************************/
-#include <gpio.h>
-
-/******************************************************************************
- Prototypes section
-******************************************************************************/
-#if defined(ATMEGA128RFA1)
-
-// the macros for the manipulation by PC6 for binary decoder
-HAL_ASSIGN_PIN(PC6, D, 6);
-// the macros for the manipulation by PC7 for binary decoder
-HAL_ASSIGN_PIN(PC7, D, 7);
-// the macros for the manipulation by RD
-HAL_ASSIGN_PIN(RD, E, 5);
-// the macros for the manipulation by WR
-HAL_ASSIGN_PIN(WR, E, 4);
-
-#elif defined(ATMEGA1281) || defined(ATMEGA2561)
-
-// the macros for the manipulation by PC6 for binary decoder
-HAL_ASSIGN_PIN(PC6, C, 6);
-// the macros for the manipulation by PC7 for binary decoder
-HAL_ASSIGN_PIN(PC7, C, 7);
-// the macros for the manipulation by RD
-HAL_ASSIGN_PIN(RD, G, 1);
-// the macros for the manipulation by WR
-HAL_ASSIGN_PIN(WR, G, 0);
-
-#else
- #error 'USB FIFO is not supported for this mcu.'
-#endif
-
-/**************************************************************************//**
-\brief Startup initialization.
-******************************************************************************/
-void usbfifoInit(void);
-
-/**************************************************************************//**
-\brief Clear startup initialization parameters
-******************************************************************************/
-void usbfifoUnInit(void);
-
-/**************************************************************************//**
-\brief USB FIFO driver task handler.
-******************************************************************************/
-void usbfifoHandler(void);
-
-#endif /* _USBFIFOVIRTUALUSART_H */