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

4.115
Last change on this file since 991fdb33 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 805 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
18 * found in the file LICENSE in this distribution or at
19 * http://www.rtems.org/license/LICENSE.
20 */
21
22#ifndef LIBBSP_ARM_LPC24XX_SSP_H
23#define LIBBSP_ARM_LPC24XX_SSP_H
24
25#include <rtems/libi2c.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif /* __cplusplus */
30
31/**
32 * @ingroup lpc24xx_libi2c
33 *
34 * @{
35 */
36
37extern rtems_libi2c_bus_t * const lpc24xx_ssp_0;
38
39extern rtems_libi2c_bus_t * const lpc24xx_ssp_1;
40
41/** @} */
42
43#ifdef __cplusplus
44}
45#endif /* __cplusplus */
46
47#endif /* LIBBSP_ARM_LPC24XX_SSP_H */
Note: See TracBrowser for help on using the repository browser.