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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
#include "at32f403a_407_board.h"
#include "at32f403a_407_clock.h"
int main(void)
{
system_clock_config();
at32_board_init();
/* get system clock */
crm_clocks_freq_get(&crm_clocks_freq_struct);
/* turn led2/led3/led4 on */
at32_led_on(LED2);
at32_led_on(LED3);
at32_led_on(LED4);
/* enable tmr2/tmr3/gpioa/gpiob clock */
crm_periph_clock_enable(CRM_TMR2_PERIPH_CLOCK, TRUE);
crm_periph_clock_enable(CRM_GPIOA_PERIPH_CLOCK, TRUE);
/* tmr2 channel1 ,channel2 and channel3 configuration */
gpio_init_struct.gpio_pins = GPIO_PINS_0 | GPIO_PINS_1 | GPIO_PINS_2;
gpio_init_struct.gpio_mode = GPIO_MODE_INPUT;
gpio_init_struct.gpio_out_type = GPIO_OUTPUT_PUSH_PULL;
gpio_init_struct.gpio_pull = GPIO_PULL_NONE;
gpio_init_struct.gpio_drive_strength = GPIO_DRIVE_STRENGTH_STRONGER;
gpio_init(GPIOA, &gpio_init_struct);
/* hall signal (pa3 ,pa6 ,pa7) and trigger flag signal(pa8) configuration */
gpio_init_struct.gpio_pins = GPIO_PINS_3 | GPIO_PINS_6 | GPIO_PINS_7 | GPIO_PINS_8;
gpio_init_struct.gpio_mode = GPIO_MODE_OUTPUT;
gpio_init_struct.gpio_out_type = GPIO_OUTPUT_PUSH_PULL;
gpio_init_struct.gpio_pull = GPIO_PULL_NONE;
gpio_init_struct.gpio_drive_strength = GPIO_DRIVE_STRENGTH_STRONGER;
gpio_init(GPIOA, &gpio_init_struct);
/* tmr2 xor mode configuration
tmr2 channel1 ,channel2 and channel3 as hall signal input channel, trigger
generated each signal edge. */
/* tmr2 and tmr3 counter mode configuration */
tmr_32_bit_function_enable(TMR2, TRUE);
tmr_base_init(TMR2, 0xFFFFFFFF, 0);
tmr_cnt_dir_set(TMR2, TMR_COUNT_UP);
/* config ti1 trc as input source */
tmr_input_config_struct.input_channel_select = TMR_SELECT_CHANNEL_1;
tmr_input_config_struct.input_mapped_select = TMR_CC_CHANNEL_MAPPED_STI;
tmr_input_config_struct.input_polarity_select = TMR_INPUT_RISING_EDGE;
tmr_input_channel_init(TMR2, &tmr_input_config_struct, TMR_CHANNEL_INPUT_DIV_1);
/* xor funtion enable */
tmr_channel1_input_select(TMR2, TMR_CHANEL1_2_3_CONNECTED_C1IRAW_XOR);
/* select the tmr2 input trigger: C1INC */
tmr_trigger_input_select(TMR2, TMR_SUB_INPUT_SEL_C1INC);
/* select the slave mode: reset mode */
tmr_sub_mode_select(TMR2, TMR_SUB_RESET_MODE);
tmr_interrupt_enable(TMR2, TMR_TRIGGER_INT, TRUE);
/* tmr2 trigger interrupt nvic init */
nvic_priority_group_config(NVIC_PRIORITY_GROUP_4);
nvic_irq_enable(TMR2_GLOBAL_IRQn, 0, 0);
/* enable tmr2 */
tmr_counter_enable(TMR2, TRUE);
while(1)
{
/* generate hall signal */
gpio_bits_set(GPIOA, GPIO_PINS_3);
delay_us(10);
gpio_bits_set(GPIOA, GPIO_PINS_6);
delay_us(10);
gpio_bits_set(GPIOA, GPIO_PINS_7);
delay_us(10);
gpio_bits_reset(GPIOA, GPIO_PINS_3);
delay_us(10);
gpio_bits_reset(GPIOA, GPIO_PINS_6);
delay_us(10);
gpio_bits_reset(GPIOA, GPIO_PINS_7);
delay_us(10);
}
}
|