项目场景:
使用keil5 进行点灯程序时
问题描述
在使用keil5编程时发现编写的代码都是黑白色的,关键字没有颜色
并且在字体设置的时候没有如图标记的选项
原因分析:
#include "stm32f10x.h"
int main ()
{
//打开 GPIOB 的时钟
*( unsigned int *)0x40021018 |=((1)<<3);
//配置IO口为输入
*( unsigned int *)0x40010c00 |=((1)<<(4*0));
//控制 ODR寄存器
*( unsigned int *)0x40010c0c &=~(1<<0);
}
void SystemInit(void)
{
}
解决方案:
在keil5的安装路径下是中文,需要将路径改成英文
解决方案可以参考以下链接文章来源:https://www.toymoban.com/news/detail-402119.html
http://t.csdn.cn/21SJ8文章来源地址https://www.toymoban.com/news/detail-402119.html
到了这里,关于Keil MDK5代码关键字没有颜色的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!