摘要: https://c.biancheng.net/tkinter/ https://c.biancheng.net/tkinter/ 阅读全文
posted @ 2024-10-29 08:47 Kconfig 阅读(5) 评论(0) 推荐(0) 编辑
摘要: Qwerty Learner好看的、适于初学的键位打字练习:打字狗适于初学者:dazidazi.com适于初学者:typingclub适于编程练习:编程练习软件 阅读全文
posted @ 2024-10-25 09:17 Kconfig 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 修改.git文件夹下的cofnig文件,将[remote "origin"]地址修改为新的目标代码仓地址: [remote "origin"] url = git@code.yun.com:123456/XXX/XXX/Code1.git fetch = +refs/heads/*:refs/rem 阅读全文
posted @ 2024-10-17 10:55 Kconfig 阅读(11) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2024-07-09 14:00 Kconfig 阅读(0) 评论(0) 推荐(0) 编辑
摘要: //查看所有branch git branch -a //删除远程branch git push origin -d -f [branch] 阅读全文
posted @ 2024-06-17 10:24 Kconfig 阅读(5) 评论(0) 推荐(0) 编辑
摘要: GD32F425的DMA,在接受完设定长度的数据后,需要清除接收完成标志,否则,即使再重新配置接收长度,还是不会再接收数据,GD32F303则不需要清除标志 阅读全文
posted @ 2024-04-25 14:50 Kconfig 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 错误 CS0234: 命名空间“Microsoft.Office”中不存在类型或命名空间名称“Interop”(是缺少程序集引用吗?) 解决办法是 添加应用,com, 找到 Microsoft Excel 11.0 object library 一、“视图” >“解决方案资源管理器” 二、“引用” 阅读全文
posted @ 2024-01-17 16:59 Kconfig 阅读(850) 评论(0) 推荐(0) 编辑
摘要: const char Software_Ver[] = "Software: 1.0.0"; const char Compiler_Date[] = "Date: "__DATE__; const char Compiler_Time[] = "Time: "__TIME__; #define Y 阅读全文
posted @ 2023-06-09 11:04 Kconfig 阅读(400) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2023-06-09 10:59 Kconfig 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 写好或者更新ignore文件 进入ignore所在目录,git rm -r . --cached git add . 阅读全文
posted @ 2023-06-02 14:51 Kconfig 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 原帖: https://blog.csdn.net/qq_39567970/article/details/125000167 一、原理介绍 1.现有方法 由于转子的初始位置是随机的,而且矢量控制对于转子的位置要求很高,所以初始位置的检测精度会影响伺服电机的启动效果。 我们现有的的检测方法是基于HA 阅读全文
posted @ 2023-06-01 10:11 Kconfig 阅读(214) 评论(0) 推荐(0) 编辑
摘要: vscode自定义代码字体与颜色风格在setting.json中修改即可:在这里插入图片描述"editor.semanticTokenColorCustomizations": { "enabled": true, // enable for all themes "rules": { "*.sta 阅读全文
posted @ 2023-05-30 09:01 Kconfig 阅读(2982) 评论(0) 推荐(1) 编辑
摘要: // // Name : FILT_lLowPass // // // Function : Low-pass filter with two filter constants // // Output = (FiltConst1 * (NewInput + LastInput)) + (FiltC 阅读全文
posted @ 2023-05-24 10:56 Kconfig 阅读(45) 评论(0) 推荐(0) 编辑
摘要: Simulink之低通滤波 一起留下脚印 低通滤波,从字面意思理解就是低频信号可以通过,高频信号会被滤掉,主要用于去除信号的毛刺和干扰,工程上应用较多。 低通滤波器的基本理论公式是: y(t) = K*u(t) + (1-K)*y(t-1) = y(t-1) + K*[u(t)-y(t-1)] 其中 阅读全文
posted @ 2023-05-24 10:49 Kconfig 阅读(1771) 评论(0) 推荐(0) 编辑
摘要: Filter = Filter*(1-Tcon/Tfilter)+ newData*(Tcon/Tfilter) 其中Tcon和Tfilter单位需要一致,比如单位S psRes->fWrestProtectfliter = psRes->fWrestProtectfliter*(1.0f-1.0f 阅读全文
posted @ 2023-05-11 14:32 Kconfig 阅读(18) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/hzb15195948039/article/details/86673431?spm=1001.2101.3001.6650.2&utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7 阅读全文
posted @ 2022-11-04 12:45 Kconfig 阅读(954) 评论(0) 推荐(0) 编辑
摘要: 准备: 手动将所有分支签出到本地存储库(签出所有分支的脚本如下所示), git push origin '*:*' 用于将所有分支检出到本地存储库的 .sh 脚本: for branch in `git branch -a | grep remotes | grep -v HEAD | grep - 阅读全文
posted @ 2022-11-03 16:51 Kconfig 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 选择网页, 右键另存为,保存网页。 用notepad打开网页文件, 找到类似于下面的这行 搜索替换字段 onerror 为任意 xxxx 即可 只删除下面这部分也是可以的 <img src="https://blog.csdn.net/xxxx/article/details/xxxx" onerr 阅读全文
posted @ 2022-11-03 15:30 Kconfig 阅读(69) 评论(0) 推荐(0) 编辑
摘要: home ftp server这款软件是一款功能特别实用的FTP服务器搭建工具,在工作中使用电脑的时候就有可能需要自己搭建FTP服务器供其他的客户端进行连接,这样方便对多个客户端进行控制和文件共享,很多不熟悉这个操作的用户会觉得搭建FTP服务器的操作非常难,其实我们通过home ftp server 阅读全文
posted @ 2022-07-06 09:48 Kconfig 阅读(4157) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-01-25 16:36 Kconfig 阅读(220) 评论(0) 推荐(0) 编辑