source insight 搜索特定符号

当在 source insight 中想要搜索特定的符号,比如说 "struct file {",需要在搜索的时候,把 search method 中的选择,改为 simple string,这样虽然慢一点,但是确实能搜索出来。 参考: https://zhidao.bai...

git 仓库迁移

git 仓库迁移两步就够了。 从原仓库把整个仓库拉下来。 git clone --bare git://192.168.10.XX/git_repo/project_name.git 把仓库推到新的仓库里面去。 cd project_name.git git push --mirror...

gitflow

参考: https://www.cnblogs.com/cnblogsfans/p/5075073.html Git 在团队中的最佳实践--如何正确使用Git Flow https://www.jianshu.com/p/34b95c5eedb6 Git Flow工作流总结 http://ww...

stm32cube eth 调试

参考: http://www.waveshare.net/study/article-666-1.html STM32CubeMX系列教程27:ETH https://blog.csdn.net/lan190827/article/details/81500996 STM32F417+DP...

stm32f4 usb 调试

stm32f4 usb 调试,软件调试可以使用 Wireshark 里面的 usb 组件,或者 usb Monitor 。 但是这些软件调试都有一个问题,必须在枚举分配地址之后,才能由软件调试收集到信息。如果在枚举的时候出错,就无法确认具体的错误。 碰到这种情况,只能选用有 usb 协议分析功...

eclipse gitflow

使用 eclipse 的安装市场安装 git 和 gitflow。 然后右键 项目工程,选择 team,选择 init gitflow,需要等待一会,就自动创建好了。 然后选择 gitflow 中的 start feature 来创建一个新的 feature。 修改好文件后,选择 git 中的...

stm32cubeide c++工程

只要在项目上右键,选择 convert to c++,即可转化为 c++ 工程。

outlook 邮箱收取 hotmail 邮箱邮件,无法绑定

使用 imap 功能,需要 hotmail 允许 imap,并且要放行 imap。 具体设置是在 需要提供 imap 的 hotmail 邮箱,点击账户头像,选择安全设置,然后查看最近的登录记录,对里面的 imap 登录记录进行放行即可。

stm32cubeide 添加自己的源文件夹

project右键 properties --> c/c++ general --> paths and symbols --> source location 这里面就可以添加源文件夹了。

stm32cubeide 代码提醒

stm32cubeide 是基于 eclipse 开发的软件,所以修改和 eclipse 类似,只要在 window --> perference --> keys 里面把 content assist 这个功能绑定到自己喜欢的按键即可。默认是 ctrl + space,我比较喜欢...