drv_dma.h 1.2 KB

1234567891011121314151617181920212223242526
  1. /***************************************************************************//**
  2. * @file drv_dma.h
  3. * @brief DMA driver of RT-Thread RTOS for EFM32
  4. * COPYRIGHT (C) 2012, RT-Thread Development Team
  5. * @author onelife
  6. * @version 1.0
  7. *******************************************************************************
  8. * @section License
  9. * The license and distribution terms for this file may be found in the file
  10. * LICENSE in this distribution or at http://www.rt-thread.org/license/LICENSE
  11. *******************************************************************************
  12. * @section Change Logs
  13. * Date Author Notes
  14. * 2010-12-23 onelife Initial creation for EFM32
  15. ******************************************************************************/
  16. #ifndef __DRV_DMA_H__
  17. #define __DRV_DMA_H__
  18. /* Includes ------------------------------------------------------------------*/
  19. /* Exported types ------------------------------------------------------------*/
  20. /* Exported constants --------------------------------------------------------*/
  21. /* Exported macro ------------------------------------------------------------*/
  22. /* Exported functions ------------------------------------------------------- */
  23. void rt_hw_dma_init(void);
  24. #endif /*__DRV_DMA_H__ */