source: rtems/c/src/lib/libbsp/arm/lpc24xx/include/ssp.h @ ba938b8d

4.104.115
Last change on this file since ba938b8d was ba938b8d, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 09/18/09 at 08:05:40

Changes throughout.

  • Property mode set to 100644
File size: 802 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup lpc24xx_libi2c
5 *
6 * @brief LibI2C bus driver for the Synchronous Serial Port (SSP).
7 */
8
9/*
10 * Copyright (c) 2008
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 found in the file
18 * LICENSE in this distribution or at http://www.rtems.com/license/LICENSE.
19 */
20
21#ifndef LIBBSP_ARM_LPC24XX_SSP_H
22#define LIBBSP_ARM_LPC24XX_SSP_H
23
24#include <rtems/libi2c.h>
25
26#ifdef __cplusplus
27extern "C" {
28#endif /* __cplusplus */
29
30/**
31 * @ingroup lpc24xx_libi2c
32 *
33 * @{
34 */
35
36extern rtems_libi2c_bus_t * const lpc24xx_ssp_0;
37
38extern rtems_libi2c_bus_t * const lpc24xx_ssp_1;
39
40/** @} */
41
42#ifdef __cplusplus
43}
44#endif /* __cplusplus */
45
46#endif /* LIBBSP_ARM_LPC24XX_SSP_H */
Note: See TracBrowser for help on using the repository browser.