summaryrefslogtreecommitdiffstats
path: root/bsps/arm/lm3s69xx/include/bsp/ssi.h
blob: 66d53026557c2145b23df7592ff80e7cac60efe8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
 * @file
 *
 * @ingroup lm3s69xx_ssi 
 *
 * @brief SSI support.
 */

/*
 * Copyright © 2013 Eugeniy Meshcheryakov <eugen@debian.org>
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */
#ifndef LIBBSP_ARM_LM3S69XX_SSI_H
#define LIBBSP_ARM_LM3S69XX_SSI_H
#include <rtems/libi2c.h>
#include <bspopts.h>

/**
 * @defgroup lm3s69xx_ssi SSI Support
 *
 * @ingroup RTEMSBSPsARMLM3S69XX
 *
 * @brief SSI Support
 */

#ifdef __cplusplus
extern "C" {
#endif

extern rtems_libi2c_bus_t * const lm3s69xx_ssi_0;

#if LM3S69XX_NUM_SSI_BLOCKS > 1
extern rtems_libi2c_bus_t * const lm3s69xx_ssi_1;
#endif

#ifdef __cplusplus
}
#endif

#endif /* LIBBSP_ARM_LM3S69XX_SSI_H */