-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathled.c
58 lines (48 loc) · 1.04 KB
/
led.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
#include "led.h"
GPIO_TypeDef* GPIO_PORT[LEDn] = {
GLED_GPIO_PORT,
RLED_GPIO_PORT,
};
const uint16_t GPIO_PIN[LEDn] = {
GLED_PIN,
RLED_PIN,
};
/*
const uint32_t GPIO_CLK[LEDn] = {
GLED_GPIO_CLK,
RLED_GPIO_CLK,
};
*/
void M2C_LEDInit(Led_TypeDef Led)
{
GPIO_InitTypeDef GPIO_InitStructure;
/* Enable the GPIO_LED Clock */
//RCC_AHBPeriphClockCmd(GPIO_CLK[Led], ENABLE);
/* Configure the GPIO_LED pin */
GPIO_InitStructure.GPIO_Pin = GPIO_PIN[Led];
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_OUT_PP;
GPIO_Init(GPIO_PORT[Led], &GPIO_InitStructure);
GPIO_PORT[Led]->BSR = GPIO_PIN[Led];
}
void M2C_LEDOn(Led_TypeDef Led)
{
GPIO_PORT[Led]->BSR = GPIO_PIN[Led];
}
void M2C_LEDOff(Led_TypeDef Led)
{
GPIO_PORT[Led]->BRR = GPIO_PIN[Led];
}
void M2C_LEDToggle(Led_TypeDef Led)
{
GPIO_PORT[Led]->ODR ^= GPIO_PIN[Led];
}
void M2C_LEDBlink(Led_TypeDef Led, uint8_t times)
{
times *= 2;
for (; times > 0; times--)
{
M2C_LEDToggle(Led);
M2C_Delay(M2C_DELAY_SHORT);
}
}
/* vim: set tabstop=4 autoindent shiftwidth=4 smartindent fdm=syntax: */