提交 71841b8d 编写于 作者: G guozhanxin

[tools] keil.py Improve error messages.

上级 310f1ea4
......@@ -281,6 +281,11 @@ def MDK45Project(tree, target, script):
out.close()
def MDK4Project(target, script):
if os.path.isfile('template.uvproj') is False:
print ('Warning: The template project file [template.uvproj] not found!')
return
template_tree = etree.parse('template.uvproj')
MDK45Project(template_tree, target, script)
......@@ -297,6 +302,10 @@ def MDK4Project(target, script):
def MDK5Project(target, script):
if os.path.isfile('template.uvprojx') is False:
print ('Warning: The template project file [template.uvprojx] not found!')
return
template_tree = etree.parse('template.uvprojx')
MDK45Project(template_tree, target, script)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册