source: rtems/c/src/lib/libbsp/arm/lpc24xx/include/i2c.h @ 9364cf66

4.104.115
Last change on this file since 9364cf66 was 9364cf66, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 07/17/09 at 15:16:50

adding lpc24xx BSP parts

  • Property mode set to 100644
File size: 769 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup lpc24xx
5 *
6 * LibI2C bus driver for the I2C modules.
7 */
8
9/*
10 * Copyright (c) 2009
11 * embedded brains GmbH
12 * Obere Lagerstr. 30
13 * D-82178 Puchheim
14 * Germany
15 * <rtems@embedded-brains.de>
16 *
17 * The license and distribution terms for this file may be
18 * found in the file LICENSE in this distribution or at
19 * http://www.rtems.com/license/LICENSE.
20 */
21
22#ifndef LIBBSP_ARM_LPC24XX_I2C_H
23#define LIBBSP_ARM_LPC24XX_I2C_H
24
25#include <rtems/libi2c.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif /* __cplusplus */
30
31extern rtems_libi2c_bus_t * const lpc24xx_i2c_0;
32
33extern rtems_libi2c_bus_t * const lpc24xx_i2c_1;
34
35extern rtems_libi2c_bus_t * const lpc24xx_i2c_2;
36
37#ifdef __cplusplus
38}
39#endif /* __cplusplus */
40
41#endif /* LIBBSP_ARM_LPC24XX_I2C_H */
Note: See TracBrowser for help on using the repository browser.