RTEMS 7.0-rc1
Loading...
Searching...
No Matches
syscon.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-2.0+-with-RTEMS-exception */
2
11/*
12 * Copyright (c) 2013 Eugeniy Meshcheryakov <eugen@debian.org>
13 *
14 * The license and distribution terms for this file may be
15 * found in the file LICENSE in this distribution or at
16 * http://www.rtems.org/license/LICENSE.
17 */
18#ifndef LIBBSP_ARM_LM3S69XX_SYSCON_H
19#define LIBBSP_ARM_LM3S69XX_SYSCON_H
20#include <stdbool.h>
21
30#ifdef __cplusplus
31extern "C" {
32#endif
33
34void lm3s69xx_syscon_enable_gpio_clock(unsigned int port, bool enable);
35void lm3s69xx_syscon_enable_uart_clock(unsigned int port, bool enable);
36void lm3s69xx_syscon_enable_ssi_clock(unsigned int port, bool enable);
37void lm3s69xx_syscon_enable_pwm_clock(bool enable);
38void lm3s69xx_syscon_set_pwmdiv(unsigned int div);
39void lm3s69xx_syscon_delay_3x_clocks(unsigned long x_count);
40
41#ifdef __cplusplus
42}
43#endif
44
45#endif /* LIBBSP_ARM_LM3S69XX_SYSCON_H */
void lm3s69xx_syscon_set_pwmdiv(unsigned int div)
Definition: syscon.c:110