source: rtems/bsps/arm/altera-cyclone-v/i2c/i2cdrv-config.h @ 631ccd7

5
Last change on this file since 631ccd7 was 631ccd7, checked in by Sebastian Huber <sebastian.huber@…>, on 02/27/19 at 08:24:22

bsp/altera-cyclone-v: Adjust Doxygen groups

Update #3706

  • Property mode set to 100644
File size: 753 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup RTEMSBSPsARMCycVI2C
5 */
6
7/*
8 * Copyright (c) 2014 embedded brains GmbH.  All rights reserved.
9 *
10 *  embedded brains GmbH
11 *  Dornierstr. 4
12 *  82178 Puchheim
13 *  Germany
14 *  <info@embedded-brains.de>
15 *
16 * The license and distribution terms for this file may be
17 * found in the file LICENSE in this distribution or at
18 * http://www.rtems.org/license/LICENSE.
19 */
20
21#ifndef XXX_H
22#define XXX_H
23
24#include <rtems.h>
25#include <bsp/alt_i2c.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif /* __cplusplus */
30
31typedef struct {
32  ALT_I2C_CTLR_t controller;
33  char *device_name;
34  uint32_t speed;
35} i2cdrv_configuration;
36
37extern const i2cdrv_configuration i2cdrv_config[];
38
39#ifdef __cplusplus
40}
41#endif /* __cplusplus */
42
43#endif /* XXX_H */
Note: See TracBrowser for help on using the repository browser.