From 29cc14771b4341838332388cea6edc756d05a93e Mon Sep 17 00:00:00 2001 From: Thomas Doerfler Date: Tue, 30 Sep 2008 10:01:38 +0000 Subject: added SSP support files, fixed some typos --- c/src/lib/libbsp/arm/lpc24xx/include/dma.h | 42 ++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 c/src/lib/libbsp/arm/lpc24xx/include/dma.h (limited to 'c/src/lib/libbsp/arm/lpc24xx/include/dma.h') diff --git a/c/src/lib/libbsp/arm/lpc24xx/include/dma.h b/c/src/lib/libbsp/arm/lpc24xx/include/dma.h new file mode 100644 index 0000000000..a083510c3c --- /dev/null +++ b/c/src/lib/libbsp/arm/lpc24xx/include/dma.h @@ -0,0 +1,42 @@ +/** + * @file + * + * @ingroup lpc24xx + * + * @brief DMA support. + */ + +/* + * Copyright (c) 2008 + * Embedded Brains GmbH + * Obere Lagerstr. 30 + * D-82178 Puchheim + * Germany + * rtems@embedded-brains.de + * + * The license and distribution terms for this file may be found in the file + * LICENSE in this distribution or at http://www.rtems.com/license/LICENSE. + */ + +#ifndef LIBBSP_ARM_LPC24XX_DMA_H +#define LIBBSP_ARM_LPC24XX_DMA_H + +#include + +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + +void lpc24xx_dma_initialize( void); + +bool lpc24xx_dma_channel_obtain( unsigned channel); + +void lpc24xx_dma_channel_release( unsigned channel); + +void lpc24xx_dma_channel_disable( unsigned channel, bool force); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* LIBBSP_ARM_LPC24XX_DMA_H */ -- cgit v1.2.3