File indexing completed on 2025-05-11 08:23:03
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef LIBBSP_ARM_LM3S69XX_SYSCON_H
0017 #define LIBBSP_ARM_LM3S69XX_SYSCON_H
0018 #include <stdbool.h>
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028 #ifdef __cplusplus
0029 extern "C" {
0030 #endif
0031
0032 void lm3s69xx_syscon_enable_gpio_clock(unsigned int port, bool enable);
0033 void lm3s69xx_syscon_enable_uart_clock(unsigned int port, bool enable);
0034 void lm3s69xx_syscon_enable_ssi_clock(unsigned int port, bool enable);
0035 void lm3s69xx_syscon_enable_pwm_clock(bool enable);
0036 void lm3s69xx_syscon_set_pwmdiv(unsigned int div);
0037 void lm3s69xx_syscon_delay_3x_clocks(unsigned long x_count);
0038
0039 #ifdef __cplusplus
0040 }
0041 #endif
0042
0043 #endif