上一页 1 2 3 4 5 6 7 8 9 10 ··· 21 下一页
摘要: https://blog.csdn.net/u012254599/article/details/106143540/ CMakeLists.txt set(CMAKE_BUILD_TYPE "RelWithDebInfo") 单独文件调试 launch.json { "version": "0.2 阅读全文
posted @ 2022-05-16 22:15 penuel 阅读(133) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/JuiceCat/p/13040552.html 阅读全文
posted @ 2022-04-03 10:51 penuel 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 1.简介 TF是一个让用户随时间跟踪多个坐标系的功能包,它使用树形数据结构,根据时间缓冲并维护多个坐标系之间的坐标变换关系。 2.TF工具 tf_monitor :查看TF树中所有坐标系的发布状态 tf_monitor <source_frame> <target_target> :查看指定坐标系之 阅读全文
posted @ 2022-03-12 13:03 penuel 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 1.创建docker docker run -itd -p 8089:8089 --name (容器名) 镜像名:TAG 2.登录报错 Error saving credentials: error storing credentials - err: exit status 1, out: No 阅读全文
posted @ 2022-03-06 13:13 penuel 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 自动挂载 修改/etc/fstab,加入如下内容 .host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other,defaults 0 0 手动挂载 修改/etc/fstab,加入如下内容 sudo vmhgfs-fuse .host:/ /mnt/hgfs -o al 阅读全文
posted @ 2022-02-22 10:43 penuel 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 视觉SLAM飞控OpenREALM: https://github.com/laxnpander/OpenREALM 阅读全文
posted @ 2022-02-09 18:09 penuel 阅读(99) 评论(0) 推荐(0) 编辑
摘要: pthread参考手册http://man7.org/linux/man-pages/man3/pthread_create.3.html 阅读全文
posted @ 2022-02-09 16:39 penuel 阅读(35) 评论(0) 推荐(0) 编辑
摘要: NUM = (-1) ^ S * M * 2 ^ E; (S表示符号,E表示阶乘,M表示有效数字) S: 0为正数,1为负数 M: M为有效数字,1 ⇐ M < 2; 2^E 表示指数 例如:3.0 则可以表示为(-1)^ 0 * 1.1 * 2 ^ 1 规定float型有一个符号位(S),有8个指 阅读全文
posted @ 2021-10-20 16:54 penuel 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 1.FreeRtos占用内存 #define configTOTAL_HEAP_SIZE ( ( size_t ) ( 30 * 1024 ) ) pvPortMalloc是从configTOTAL_HEAP_SIZE中申请内存,作为ZI-data被编译。 malloc是直接从SRAM 堆 中申请内 阅读全文
posted @ 2021-09-24 11:27 penuel 阅读(803) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_42066185/article/details/88841952 https://blog.csdn.net/janeqi1987/article/details/103300126 阅读全文
posted @ 2021-08-25 11:21 penuel 阅读(486) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 21 下一页