上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 32 下一页
摘要: 刚接触C++,在尝试从 dll 中导出函数时,发现导出的函数名都“乱码”了。 导出过程如下: 新建一个Win32项目: 新建的解决方案里有几个导出的示例: // 下列 ifdef 块是创建使从 DLL 导出更简单的 // 宏的标准方法。此 DLL 中的所有文件都是用命令行上定义的 DLLEXPORT 阅读全文
posted @ 2020-10-22 22:37 流水江湖 阅读(767) 评论(0) 推荐(0) 编辑
摘要: #include "lwip/debug.h" #include "lwip/stats.h" #include "lwip/tcp.h" #include "usart.h" #if LWIP_TCP static struct tcp_pcb *tcp_echoserver_pcb; /* EC 阅读全文
posted @ 2020-10-17 15:07 流水江湖 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 在math.h中 加入#include "stm32f4xx_hal.h"#include "stdio.h"用于支持printf 及 一些 HAL 定义的 数据结构在uart.c 文件中加入如下代码,用于把printf输出到串口1 /* USER CODE BEGIN 0 */ int fputc 阅读全文
posted @ 2020-10-17 14:38 流水江湖 阅读(406) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u012523921/article/details/105411008 https://jiejie.blog.csdn.net/article/details/80563422 1、查询(基本不用) 2、中断 3、中断+DMA 操作分3个步骤 1、设置 阅读全文
posted @ 2020-10-02 07:18 流水江湖 阅读(3252) 评论(0) 推荐(0) 编辑
摘要: IO引脚在stm32f1xx_hal_msp.c里面。 关于HAL库中stm32f1xx_hal_msp.c文件的认知 https://www.stmcu.org.cn/module/forum/thread-620752-1-3.html typedef uint8_t u8; typedef u 阅读全文
posted @ 2020-09-28 15:09 流水江湖 阅读(2257) 评论(0) 推荐(0) 编辑
摘要: 在射频电路中,放大器应用非常的多,放大器的功能就是将直流的能量转换为射频信号的能量,所以射频放大器需要加入直流的偏置提供射频放大器的直流工作点。在频率相对低的射频电路中(GHZ以下或者是几个GHZ),一般采用高频扼流圈或者电感串在供电的线路中,为了阻断射频的信号通过直流偏置电路进入供电线路中,也起到 阅读全文
posted @ 2020-08-21 17:38 流水江湖 阅读(1958) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-08-21 17:17 流水江湖 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 用ADO方式提取表格里面的数据,比vba操作excel打开方式快很多。我这里是全部读取再筛选的。如果第一行不是标题【也是数据的话】提取不到。 参考 https://www.cnblogs.com/zhujie-com/p/11762044.html j = 1 For i = 1 To fileco 阅读全文
posted @ 2020-08-11 22:27 流水江湖 阅读(1129) 评论(0) 推荐(0) 编辑
摘要: 1、根文件系统rootfs制作jffs2.img镜像 Flash支持jffs2文件系统格式,所以需要使用此该rootfs制作jffs2文件系统镜像。 //使用工具 sudo apt-get install mtd-utils 操作步骤 mkdir rootfs //创建目录 sudo tar xzv 阅读全文
posted @ 2020-06-20 09:42 流水江湖 阅读(2048) 评论(0) 推荐(0) 编辑
摘要: 引用: https://blog.csdn.net/Jun626/article/details/104334349 https://whycan.cn/t_547.html 开始: 1、准备工作: uboot、kernel (包括zImage,sun8i-v3s-licheepi-zero-doc 阅读全文
posted @ 2020-06-20 00:10 流水江湖 阅读(1972) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 32 下一页