source: rtems/c/src/lib/libbsp/arm/lm3s69xx/include/syscon.h @ f22bba3

4.115
Last change on this file since f22bba3 was f22bba3, checked in by Eugeniy Meshcheryakov <eugen@…>, on 04/26/13 at 09:03:59

bsp/lm3s69xx: New BSP variants

Add support for LM3S3749.

  • Property mode set to 100644
File size: 753 bytes
Line 
1/*
2 * Copyright © 2013 Eugeniy Meshcheryakov <eugen@debian.org>
3 *
4 * The license and distribution terms for this file may be
5 * found in the file LICENSE in this distribution or at
6 * http://www.rtems.com/license/LICENSE.
7 */
8#ifndef LIBBSP_ARM_LM3S69XX_SYSCON_H
9#define LIBBSP_ARM_LM3S69XX_SYSCON_H
10#include <stdbool.h>
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16void lm3s69xx_syscon_enable_gpio_clock(unsigned int port, bool enable);
17void lm3s69xx_syscon_enable_uart_clock(unsigned int port, bool enable);
18void lm3s69xx_syscon_enable_ssi_clock(unsigned int port, bool enable);
19void lm3s69xx_syscon_enable_pwm_clock(bool enable);
20void lm3s69xx_syscon_set_pwmdiv(unsigned int div);
21
22#ifdef __cplusplus
23}
24#endif
25
26#endif /* LIBBSP_ARM_LM3S69XX_SYSCON_H */
Note: See TracBrowser for help on using the repository browser.