我正在尝试使用命令行scons实用程序构建Arduino
项目。我的Arduino
主路径看起来像/home/<name>/Downloads/arduino/
,我已将此路径设置在我上传代码的当前工作目录中的SConscript
文件中。一切看起来都是文件,我的设备(Arduino yun
)也是以太网连接。一切看起来很好,但我有;
AssertionError: :
File "/home/fahad/Arduino/sketch_oct08a/SConstruct", line 133:
assert(os.path.exists(TARGET+'.pde'))
此错误。
其他信息: 我正在关注此链接http://www.webweavertech.com/ovidiu/weblog/archives/000482.html并运行相同的命令序列。你觉得我的感觉有什么不对吗?让我知道并解决这个问题。
答案 0 :(得分:1)
如果您阅读SCons上面的评论那个逻辑,也许这可以解释您的问题?
# There should be a file with the same name as the folder and with the extension .pde
TARGET = os.path.basename(os.path.realpath(os.curdir))
assert(os.path.exists(TARGET+'.pde'))
你有.pde文件吗? 它在抱怨的目录中吗?
AssertionError是不满足assert语句条件时得到的。在这种情况下,文件不存在..