stm32cube f429 sdram 配置

在 cube 中配置时可选 sdram1 和 sdram2,这两个对应的是内部映射的存储区域 sdram1 和 sdram2。如果选择 sdram2,那么访问 0xD000 0000 - 0xDFFF FFFF 之间的地址时,芯片就会使用 sdram2 的控制器。 sdram2 的控制器还可以...

eclipse gitflow

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

stm32cubeide c++工程

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

stm32cubeide 添加自己的源文件夹

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

stm32cubeide 代码提醒

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

stm32cubeide 串口输出

在 main.c 中增加 /* USER CODE BEGIN Includes */ #include <stdio.h> /* USER CODE END Includes */ /* USER CODE BEGIN 0 */ #ifdef __GNUC__ #def...

android studio 类和方法注释

在 android studio 中对类和方法进行注释,快捷功能。

emacs 中文

系统: win7en 在 emacs 文件的开头输入: -*- coding: utf-8 -*- 这样就可以以 utf-8 的编码进行保存。 还可以在配置文件中加入: (setq default-buffer-file-coding-system 'utf-8-unix) 。 具体参考: h...

emacs 配置文件目录

在 windows 环境下,emacs 的配置目录可以通过下面几种方式来设置: If the environment variableHOME is set, use the directory it indicates. If the registry entry HKCU\SOFTWA...

android 使用 git 进行版本控制

远程建立仓库 vcs --> import into version control --> create git respository 选中整个工程(project 页面) vcs --> git -> add vcs --> git --> remo...