GD32 GD32F30x_Firmware_Library V3.0.3 RCU 时钟输出引脚 示例教学
RCU — 时钟输出引脚
固件库: GD32F30x_Firmware_Library V3.0.3
芯片: GD32
源文件: GD32F30x_Firmware_Library_V3.0.3/Examples/RCU/Ckout_pin_clock_output/main.c
功能简介
本示例演示 RCU 的基本用法。
完整代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#include "gd32f30x.h"
#include "gd32f307c_eval.h"
#include <stdio.h>
typedef enum {
void all_led_init(void);
void all_led_off(void);
void clock_output_select(uint8_t seq);
void clock_output_config(void);
extern uint8_t g_button_press_flag;
/*!
\brief main function
\param[in] none
\param[out] none
\retval none
*/
int main(void)
{
uint8_t func_seq = 0;
/* initialize the USART */
gd_eval_com_init(EVAL_COM0);
printf("\r\n /=========== Gigadevice Clock output Demo ===========/ \r\n");
printf("press tamper key to select clock output source \r\n");
/* initialize the LEDs */
all_led_init();
/* initialize the clock output */
clock_output_config();
/* initialize the tamper key */
gd_eval_key_init(KEY_TAMPER, KEY_MODE_EXTI);
while(1) {
if(1 == g_button_press_flag) {
/* if the button is pressed */
g_button_press_flag = 0;
/* control the led */
all_led_off();
gd_eval_led_on((led_typedef_enum)func_seq);
/* select the clock output mode */
clock_output_select(func_seq);
g_button_press_flag = 0;
func_seq++;
func_seq %= 3;
}
}
}
void clock_output_config(void)
{
/* peripheral clock enable */
rcu_periph_clock_enable(RCU_GPIOA);
rcu_periph_clock_enable(RCU_GPIOC);
rcu_osci_on(RCU_IRC8M);
if(ERROR == rcu_osci_stab_wait(RCU_IRC8M)) {
printf("RCU_IRC8M rcu_osci_stab_wait timeout! \r\n");
while(1);
}
/* configure clock output pin */
gpio_init(GPIOA, GPIO_MODE_AF_PP, GPIO_OSPEED_50MHZ, GPIO_PIN_8);
}
void all_led_init(void)
{
gd_eval_led_init(LED2);
gd_eval_led_init(LED3);
gd_eval_led_init(LED4);
}
|
代码讲解
printf 输出:通过串口打印调试信息。需要先调用 uart_print_init 完成重定向。
GPIO 配置:设置引脚为输出/输入模式,选择推挽/开漏输出,配置上拉/下拉。