Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 729 Bytes

File metadata and controls

19 lines (11 loc) · 729 Bytes

如果你clone下来一个别人的仓库,在此基础上完成你的代码,推送到自己的仓库可能遇到如下问题: error: remote origin already exists.表示远程仓库已存在。 因此你要进行以下操作: 1、先输入git remote rm origin 删除关联的origin的远程库 2、关联自己的仓库 git remote add origin https://gitee.com/xxxxxx.git 3、最后git push origin master,这样就推送到自己的仓库了。

2024/5/4

  1. 用VOFA输出波形时,将波特率设置到115200出现不显示,改到921600后恢复正常
  2. 编译时警告函数没有声明,程序能运行,但出现数据错乱

2024/5/14

电流环 https://blog.csdn.net/jdhfusk/article/details/120646346