-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
74 lines (46 loc) · 894 Bytes
/
main.c
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 "stm32f103xx_gpio.h"
int i , j ;
void GPIO1Conf(void);
void GPIO2Conf(void);
void delay(int a);
int main(void)
{
GPIO1Conf();
GPIO2Conf();
while(1)
{
}
}
void GPIO1Conf(void)
{
GPIO_Handle_t gpio1;
gpio1.pGPIOx = GPIOA;
gpio1.GPIO_PinConfig.GPIO_PinNumber = 13;
gpio1.GPIO_PinConfig.GPIO_ModeInOut = GPIO_OUT_50MHZ;
gpio1.GPIO_PinConfig.GPIO_PinMode = GPIO_MODE_OUT_PP;
GPIO_PeriClockControl(GPIOA,ENABLE);
GPIO_Init(&gpio1);
}
void GPIO2Conf(void)
{
GPIO_Handle_t gpio2;
gpio2.pGPIOx = GPIOB;
gpio2.GPIO_PinConfig.GPIO_PinNumber = 13;
gpio2.GPIO_PinConfig.GPIO_ModeInOut = GPIO_OUT_50MHZ;
gpio2.GPIO_PinConfig.GPIO_PinMode = GPIO_MODE_OUT_PP;
GPIO_PeriClockControl(GPIOA,ENABLE);
GPIO_Init(&gpio2);
}
void task1(void)
{
}
void task2(void)
{
}
void delay(int a)
{
for(i = 0 ; i < a ; i++)
{
for(j = 0 ; j < 1000000 ; j++);
}
}