打开hal\_button.h文件,接口列表如下:
* 驱动程序初始化:
```
void hal_button_init(void);
```
* 驱动程序反初始化:
```
void hal_button_deinit(void);
```
* 按键驱动程序所需要的轮询(该函数需要上层在系统空闲时频繁调用):
```
void hal_button_poll(void);
```
* 按键驱动程序所需要的定时轮询(该函数需要上层进行周期性调用):
```
void hal_button_on_10ms_timer(void);
```
* 打开指定按键,成功返回文件描述符:
```
int hal_button_open(GPIO_TypeDef *gpio, uint16_t pin, uint8_t trigger_level, uint8_t irq_enable);
```
* 关闭指定按键:
```
void hal_button_close(int fd);
```
* 设置按键驱动程序的回调函数:
```
void hal_button_set_callbacks(int fd, void (*on_clicks)(unsigned char times), void (*on_hold)(unsigned char seconds));
```
<br/>
- 框架介绍
- Main 函数
- HAL 函数接口说明
- hal_system.h
- hal_systick.h
- hal_idt.h
- hal_ioctl.h
- hal_flash.h
- hal_lpm.h
- hal_rtc.h
- hal_iwdg.h
- hal_uart.h
- hal_i2c.h
- hal_led.h
- hal_button.h
- hal_vht2x.h
- hal_lcd.h
- Services 函数接口说明
- svc_system.h
- svc_database.h
- svc_hid.h
- svc_msg.h
- svc_humiture.h
- svc_log.h
- Tasks 说明
- task_system.c
- task_example.c
- Libs 函数接口说明
- mathlib.h
- json.h
- atcmd.h
- atcmd_proxy.h
- libwifi.h
- libs1.h