source: rtems/bsps/arm/lm3s69xx/include/bsp/ssi.h @ 2fbc889

Last change on this file since 2fbc889 was 2fbc889, checked in by Christian Mauderer <christian.mauderer@…>, on 11/07/20 at 10:03:29

bsps: Replace non-ASCII copyright character

  • Property mode set to 100644
File size: 775 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup lm3s69xx_ssi
5 *
6 * @brief SSI support.
7 */
8
9/*
10 * Copyright (c) 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 RTEMSBSPsARMLM3S69XX
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.