digital gpios niot getting initialised
gilesbradshaw opened this issue · 3 comments
gilesbradshaw commented
you have
if (error && error.code === "ENOENT") {
but I get EISDIR
so I think you need something like
if (error && (error.code === "ENOENT" || error.code === "EISDIR")) {
rwaldron commented
Thanks for the report! Can you provide a bit of extra information:
- Which linux image version (presumably the stable 0.7.5)?
- Which version of Node.js is installed on the Galileo?
- This error occurs when executing code on the Galileo?
edit I added a third question
gilesbradshaw commented
Hi it's the 200MB SD image from here https://software.intel.com/en-us/iotdevkit
node version is 0.10.22
linux version 3.8.7-yocto-standard
and yes running on Galileo
many thanks
rwaldron commented
Can you create a patch and pull request with your fix above?