-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bs81x.h
37 lines (28 loc) · 846 Bytes
/
Bs81x.h
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
#ifndef BS81X_H
#define BS81X_H
#include <stdbool.h>
#include "gpio.h"
#if (_BS81X_USE_FREERTOS==0)
#define _BS81X_DELAY(x) HAL_Delay(x)
#else
#include "cmsis_os.h"
#define _BS81X_DELAY(x) osDelay(x)
#endif
//################################################################################################
typedef struct
{
bool ChangeState;
uint8_t LastKey;
uint32_t LastTime;
}Bs81x_t;
extern Bs81x_t Bs81x;
//################################################################################################
#if (_BS81X_USE_FREERTOS==0)
void Bs81x_Init(void);
#else
void Bs81x_Init(osPriority Priority);
#endif
int16_t Bs81x_Scan(void);
void Bs81x_UserKeyChangeState(uint8_t Key);
//################################################################################################
#endif