上一页 1 2 3 4 5 6 7 8 ··· 42 下一页
摘要: #include <stdio.h> #define D(...) \ do { \ FILE *fp = fopen("/tmp/log.txt","a"); \ fprintf(fp,"%s:%s:%d:\t", __FILE__, __func__, __LINE__); \ fprintf( 阅读全文
posted @ 2021-12-08 17:57 hbg-rohens 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-12-03 13:44 hbg-rohens 阅读(92) 评论(0) 推荐(0) 编辑
摘要: /* usbreset -- send a USB port reset to a USB device */ /* * Copyright (c) 2014, JSK Robotics Lab, Inc. * Copyright (c) 2016, Orbbec Ltd. * All rights 阅读全文
posted @ 2021-12-03 11:31 hbg-rohens 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 参考: https://blog.csdn.net/zhangjingxun12/article/details/117095349 查看出问题的路径: F:\program\esp\components\libsodium\libsodium\src\libsodium\crypto_pwhash 阅读全文
posted @ 2021-11-01 16:23 hbg-rohens 阅读(537) 评论(0) 推荐(0) 编辑
摘要: c和c++中使用assert()函数来实现断言。 eg: #include <stdio.h> #include <assert.h> int main() { int x = 7; x = 9; assert(x==7); /* Rest of the code */ return 0; } 执行 阅读全文
posted @ 2021-09-21 14:34 hbg-rohens 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 编译时 加上 pkg-config --cflags --libs opencv 选项 阅读全文
posted @ 2021-09-13 17:26 hbg-rohens 阅读(2491) 评论(0) 推荐(0) 编辑
摘要: char ToUpper(char c){ return (ch >= 'a' && ch <= 'z') ? (ch - 'a' + 'A') : ch;}char ToLower(char c){ return (ch >= 'A' && ch <= 'Z') ? (ch - 'A' + 'a' 阅读全文
posted @ 2021-09-11 14:26 hbg-rohens 阅读(33) 评论(0) 推荐(0) 编辑
摘要: A stack overflow in task spam_task has been detected. 错误改正方法: 将数组移到函数外部,作为全局变量。 阅读全文
posted @ 2021-09-02 14:19 hbg-rohens 阅读(1295) 评论(0) 推荐(0) 编辑
摘要: 摘自: https://zhuanlan.zhihu.com/p/104612162 优先级任务的分配方案: 1)IRQ任务 IRQ任务指通过中断服务程序进行触发的任务,此类任务应该设置为所有任务里面优先级最高的。 2)高优先级后台任务 比如按键检测、触摸检测、USB消息处理、串口消息处理等 3)低 阅读全文
posted @ 2021-08-25 14:16 hbg-rohens 阅读(1146) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_43804080/article/details/105676067 帧类型/子类型 过滤器语法Management frame wlan.fc.type == 0Control frame wlan.fc.type == 1Data frame w 阅读全文
posted @ 2021-08-18 11:05 hbg-rohens 阅读(871) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 42 下一页