source: rtems/c/src/lib/libbsp/arm/lm3s69xx/include/ssi.h @ df40cc9

4.115
Last change on this file since df40cc9 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: 765 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup lm3s69xx_ssi
5 *
6 * @brief SSI support.
7 */
8
9/*
10 * Copyright © 2013 Eugeniy Meshcheryakov <eugen@debian.org>
11 *
12 * The license and distribution terms for this file may be
13 * found in the file LICENSE in this distribution or at
14 * http://www.rtems.org/license/LICENSE.
15 */
16#ifndef LIBBSP_ARM_LM3S69XX_SSI_H
17#define LIBBSP_ARM_LM3S69XX_SSI_H
18#include <rtems/libi2c.h>
19#include <bspopts.h>
20
21/**
22 * @defgroup lm3s69xx_ssi SSI Support
23 *
24 * @ingroup arm_lm3s69xx
25 *
26 * @brief SSI Support
27 */
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
33extern rtems_libi2c_bus_t * const lm3s69xx_ssi_0;
34
35#if LM3S69XX_NUM_SSI_BLOCKS > 1
36extern rtems_libi2c_bus_t * const lm3s69xx_ssi_1;
37#endif
38
39#ifdef __cplusplus
40}
41#endif
42
43#endif /* LIBBSP_ARM_LM3S69XX_SSI_H */
Note: See TracBrowser for help on using the repository browser.