ubuntu环境搭建设置

本文详细介绍了KEIL4编辑器的配色方案和编辑器设置,包括自动缩进、显示空白字符、代码页设置等。此外,还提供了C/C++和汇编文件的语法高亮设置,以及代码补全和语法检查的设定。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

secur CRT
https://blog.youkuaiyun.com/fan_balalld/article/details/80579268

KEIL4配色方案:

properties for all file types

indent.automatic=1
virtual.space=0
view.whitespace=0
view.endofline=0
code.page=0
caretline.visible=1
highlight.matchingbraces=1
print.syntax.coloring=1
use.tab.color=1
create.backup.files=0
auto.load.ext.modfiles=0
save.prj.before.dbg=0
save.files.before.dbg=0
function.scanner.project=1
function.scanner.files=1
function.scanner.modules=1

properties for c/cpp files

syntax.colouring.cpp=1
use.tab.cpp=0
tabsize.cpp=2
line.margin.visible.cpp=1
fold.cpp=1
monospaced.font.cpp=1

properties for asm files

syntax.colouring.asm=1
use.tab.asm=0
tabsize.asm=4
line.margin.visible.asm=1
monospaced.font.asm=1

properties for other files

use.tabs=0
tabsize=4
line.margin.visible.txt=0
monospaced.font.txt=1

setting for code completion and syntax check

cc.autolist=1
cc.highlightsyntax=1
cc.showparameters=1
cc.triggerlist=0
cc.triggernumchars=3

autosave for editor files

autosave=0
autosave.interval=5

Specification for text selection and caret line

selection.fore=#000000
selection.back=#86C7F7
caret.fore=#FFFFFF
caret.back=#000000

C/C++ Editor files

template.cpp="#define","#define |";"#if","#if |\r\n\r\n#endif";\
“#include”,"#include “;“Header”,”// Header:\r\n// File Name: |\r\n// Author:\r\n// Date:\r\n";\
“continue”,“continue;”;“do”,“do\r\n{\r\n\t// TODO: enter the block content here\r\n\t\r\n\t|\r\n} while ();\r\n”;\
“enum”,“enum |\r\n{\r\n\t\r\n};\r\n”;“for”,“for(|;?\r\n{\r\n}”;\
“fpointer_type”,“typedef int (* |F)();\r\n”;“function”,“void function(|)\r\n{\r\n\r\n}\r\n”;\
“if”,“if (|)”;“ifelse”,“if (|)\r\n{\r\n}\r\nelse\r\n{\r\n}”;\
“struct”,“struct | \r\n{\r\n\r\n};\r\n”;“switch”,“switch (|)\r\n{\r\n\tcase:\r\n\t\tbreak;\r\n\tcase:\r\n\t\tbreak;\r\n\tdefault:\r\n\t\tbreak;\r\n}”;\
“void”,“void | ();\r\n”;“while”,“while (|)\r\n{\r\n}”;\

font.monospace.cpp=Courier New
style.cpp.32=font:Courier New,size:15,fore:#FF8040,back:#152B2B
style.cpp.4=font:Courier New,size:15,fore:#007F7F,back:#152B2B
style.cpp.10=font:Courier New,size:15,fore:#FF8000,back:#152B2B
style.cpp.1=font:Courier New,size:15,fore:#008000,back:#152B2B
style.cpp.2=font:Courier New,size:15,fore:#808080,back:#152B2B
style.cpp.5=font:Courier New,size:15,fore:#0080FF,back:#152B2B,italics
style.cpp.6=font:Courier New,size:15,fore:#FFFF80,back:#152B2B
style.cpp.11=font:Courier New,size:15,fore:#FF8000,back:#152B2B
style.cpp.9=font:Courier New,size:15,fore:#FF0000,back:#152B2B
style.cpp.7=font:Courier New,size:15,fore:#7F007F,back:#152B2B
style.cpp.34=font:Courier New,size:15,fore:#16F348,back:#152B2B
style.cpp.35=font:Courier New,size:15,fore:#FF0000,back:#152B2B
style.cpp.16=font:Courier New,size:15,fore:#B00040,back:#152B2B
style.cpp.12=font:Courier New,size:15,fore:#008000,back:#152B2B

Asm Editor files

font.monospace.asm=宋体
style.asm.32=font:宋体,size:16,fore:#000000,back:#FFFFFF
style.asm.1=font:宋体,size:16,fore:#616161,back:#FFFFFF
style.asm.2=font:宋体,size:16,fore:#FF0000,back:#FFFFFF
style.asm.3=font:宋体,size:16,fore:#7F007F,back:#FFFFFF
style.asm.4=font:宋体,size:16,fore:#000000,back:#FFFFFF
style.asm.5=font:宋体,size:16,fore:#000000,back:#FFFFFF
style.asm.6=font:宋体,size:16,fore:#0000FF,back:#FFFFFF
style.asm.7=font:宋体,size:16,fore:#0000FF,back:#FFFFFF
style.asm.9=font:宋体,size:16,fore:#0000FF,back:#FFFFFF
style.asm.10=font:宋体,size:16,fore:#0000FF,back:#FFFFFF
style.asm.11=font:宋体,size:16,fore:#007F00,back:#FFFFFF
style.asm.12=font:宋体,size:16,fore:#7F007F,back:#FFFFFF
style.asm.8=font:宋体,size:16,fore:#46AA03,back:#FFFFFF

Editor Text files

font.monospace.txt=Courier New
style.txt.32=font:Verdana,size:10,fore:#000000,back:#FFFFFF

Ubuntu下j-link的安装和使用
https://blog.youkuaiyun.com/guxln/article/details/52016730
https://blog.youkuaiyun.com/lpp0900320123/article/details/42169277

安装sublime:
https://www.cnblogs.com/fanyong/p/3462023.html

sublime使用教程
https://www.cnblogs.com/satr-xiaojie/p/4298239.html

安装中文输入法
https://www.cnblogs.com/end/archive/2011/04/19/2021507.html
使用jlink+gdbserver+insight调试ARM程序–配置insight
https://www.cnblogs.com/caodan/p/3597273.html

OPENOCD的安装和使用
https://blog.youkuaiyun.com/hahachenchen789/article/details/78534199
https://blog.youkuaiyun.com/heyuqian_csdn/article/details/52507111
http://www.eeworld.com.cn/mcu/article_2016072627853.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值