source: rtems/bsps/arm/altera-cyclone-v/i2c/i2cdrv-config.c @ 9d41fca

5
Last change on this file since 9d41fca was 9d41fca, checked in by Sebastian Huber <sebastian.huber@…>, on 02/27/19 at 10:39:29

bsp/altera-cyclone-v: Adjust Doxygen file groups

Update #3707.

  • Property mode set to 100644
File size: 611 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#include <bsp.h>
22#include "i2cdrv-config.h"
23
24const i2cdrv_configuration i2cdrv_config[CYCLONE_V_NO_I2C] = {
25  {
26    .controller = ALT_I2C_I2C0,
27    .device_name = "/dev/i2c0",
28    .speed = CYCLONE_V_I2C0_SPEED,
29  }
30};
Note: See TracBrowser for help on using the repository browser.