在Python中,我们可以测试正在运行的操作系统是Windows还是Linux:
if platform.system() == 'Windows':
"Our code"
else:
"New code"
有没有办法检查特定的uC芯片?如果我希望我的代码仅在uC是TI的TMS320F28015时执行,并且如果它是TI的TMS320F2802则不执行它,那么需要做什么。
答案 0 :(得分:-1)
您可以检查操作系统,只需从platform
模块导入sys
:
from sys import platform
if _platform == "linux" or _platform == "linux2":
# linux
elif _platform == "darwin":
# OS X
elif _platform == "win32":
# Windows...
这应该为你和uC芯片做的工作,我不清楚,等待别人回答:)