poll笔记POLL笔记函数原型12#include <poll.h>int poll(struct pollfd *fds, nfds_t nfds, int timeout); 参数: fds:一个pollfd结构体数组指针,用于描述需要等待的...2024-09-30嵌入式
poll笔记深入POLL笔记深入参考韦东山: poll函数执行流程poll函数执行流程: 函数执行流程如上图①~⑧所示,重点从③开始看。假设一开始无按键数据: ③ APP调用poll之后,进入内核态; ④ 导致驱动程序的drv_poll被调用: 注意,drv_p...2024-09-30嵌入式
gcc的四个过程gcc四个过程C/C++通过gcc/g++编译器包括以下四个过程:预处理,编译,汇编,链接 预处理(preprocess)预处理可以理解为将#里边的内容展开,包括宏定义,头文件路径等等,然后直接插入到程序里边去。预处理通过预处理...2024-09-24C++
rosAPIROS API init 函数 12//有3个重载,常用以下void ros::init(int &argc, char **argv, const std::string &name, uint32_t options = 0U)...2024-09-24ROS
搭建博客参考过的链接https://yuanlichenai.cn/2020/02/02/chic/https://blog.csdn.net/QFREX/article/details/108798945https://www.bilibili.com/video/B...2024-09-22搭建博客
图床链接格式测试本地文件名:【雪】2024-09-20 23_57_02.pnggithub文件名:https://github.com/dkyou/ImageHostingdku/blob/main/img/%E3%80%90%E9%9B%AA%E3%80%912...2024-09-20搭建博客
搭建图床笔记图床准备工作 github账号注册:必须,但省略 下载PicGo,链接如下:必须 https://mirrors.sdu.edu.cn/github-release/Molunerfinn_PicGo/v2.3.1/ typora软件:非...2024-09-20搭建博客
搭建博客Stellar 主题 https://xaoxuu.com/wiki/stellar/#startSolitude 主题 https://solitude.js.org/config/basic https://blog.everfu.cn/http...2024-09-20搭建博客
LVGLLVGL常用API对齐lv_obj_align和lv_obj_align_to区别 void lv_obj_align(lv_obj_t * obj, lv_align_t align, int32_t x_ofs, int32_t y_ofs) 功...2024-09-20LVGL