Github上的项目基本上以软件为主,硬件的很少,优秀的硬件开源项目更少。单片机的开发中驱动模块化带来的好处是移植方便,不依赖于硬件,但是与裸机开发相比代码复杂不易理解。所以驱动、组件等封装的功能完善、代码量少、简单易用、可移植性高,是一个优秀的硬件驱动所必备的。

MultiButton

image.png
MultiButton 是一个小巧简单易用的事件驱动型按键驱动模块,可无限量扩展按键,按键事件的回调异步处理方式可以简化你的程序结构,去除冗余的按键处理硬编码,让你的按键业务逻辑更清晰。

使用方法

1.先申请一个按键结构

  1. struct Button button1;

2.初始化按键对象,绑定按键的GPIO电平读取接口read_button_pin() ,后一个参数设置有效触发电平

  1. button_init(&button1, read_button_pin, 0);

3.注册按键事件

  1. button_attach(&button1, SINGLE_CLICK, Callback_SINGLE_CLICK_Handler);
  2. button_attach(&button1, DOUBLE_CLICK, Callback_DOUBLE_Click_Handler);
  3. ...

4.启动按键

  1. button_start(&button1);

5.设置一个5ms间隔的定时器循环调用后台处理函数

  1. while(1) {
  2. ...
  3. if(timer_ticks == 5) {
  4. timer_ticks = 0;
  5. button_ticks();
  6. }
  7. }

Examples

  1. #include "button.h"
  2. struct Button btn1;
  3. int read_button1_GPIO()
  4. {
  5. return HAL_GPIO_ReadPin(B1_GPIO_Port, B1_Pin);
  6. }
  7. int main()
  8. {
  9. button_init(&btn1, read_button1_GPIO, 0);
  10. button_attach(&btn1, PRESS_DOWN, BTN1_PRESS_DOWN_Handler);
  11. button_attach(&btn1, PRESS_UP, BTN1_PRESS_UP_Handler);
  12. button_attach(&btn1, PRESS_REPEAT, BTN1_PRESS_REPEAT_Handler);
  13. button_attach(&btn1, SINGLE_CLICK, BTN1_SINGLE_Click_Handler);
  14. button_attach(&btn1, DOUBLE_CLICK, BTN1_DOUBLE_Click_Handler);
  15. button_attach(&btn1, LONG_RRESS_START, BTN1_LONG_RRESS_START_Handler);
  16. button_attach(&btn2, LONG_PRESS_HOLD, BTN1_LONG_PRESS_HOLD_Handler);
  17. button_start(&btn1);
  18. //make the timer invoking the button_ticks() interval 5ms.
  19. //This function is implemented by yourself.
  20. __timer_start(button_ticks, 0, 5);
  21. while(1)
  22. {}
  23. }
  24. void BTN1_PRESS_DOWN_Handler(void* btn)
  25. {
  26. //do something...
  27. }
  28. void BTN1_PRESS_UP_Handler(void* btn)
  29. {
  30. //do something...
  31. }

AT_Commom

image.png
AT指令在无线通讯模组中通用的一种形式,AT_Commom(不知道是不是作者拼错了或者有别的什么意思)是一个解析AT至指令的函数,相对来说用起来还算简单。

Example

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "AT/AT.h"
  4. #include "SIM800/SIM800.h"
  5. int main()
  6. {
  7. char revdata[1024] ={"0"};
  8. initSim800();
  9. print("init finash\r\n");
  10. int *data = getAtCommom(CSQ);
  11. printf("%d,%d",data[0],data[1]);
  12. }
  13. void uartSendstring(char *data)
  14. {
  15. printf("%s\r\n",data);
  16. }
  17. uint getTick()
  18. {
  19. return 1;
  20. }

代码中给出了Sim800模块的例子,可以做为参考使用。

AMetal

image.png
这个是周立功团队开发的一个软件包,定义了一系列常用外设(如:UART、IIC、SPI、ADC等)的通用接口,基于通用接口的应用可以跨平台复用。这个项目相对比较活跃,但代码量还是比较大。