打开 libs1.h 文件,该文件是针对我司的433接收模组进行数据解析和回调,可以很容易的完成433解码并进行数据处理,接口列表及说明如下:
* 初始化 libs1:
```
int libs1_init(void);
```
* 反初始化 libs1:
```
void libs1_deinit(void);
```
* 设置数据处理回调函数(接收到433解码数据后进行回调):
```
void libs1_set_handler(void (*handler)(uint32_t address, uint8_t data));
```
* 接收到串口数据后调用解析函数进行数据格式的解析:
```
int libs1_parser(const void *buf, uint16_t len);
```
- 框架介绍
- 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