Open ipsavitsky opened 6 years ago
I have experimented with variations of the /d (directory) flag, as well as trying to copy several directory trees from one place to another, The most recent produced the following error:
Traceback (most recent call last):
File "/home/pi/.local/bin/ino", line 6, in
I plan on taking a look to see if there's anything I can hack, but, if anybody else has the solution, please. This is not what I want to be doing. I hope the message above tweaks someone's memory to provide a timely fix. Thank you.
Without the flag mentioned above, the error message is as follows:
Searching for Board description file (boards.txt) ... FAILED Board description file (boards.txt) not found. Searched in following places:
This is why I suspect the runner.py module.
Also, for Arduino 1.8.7 on macs, the boards.txt path is incorrect; the lines inside Environment
if platform.system() == 'Darwin':
arduino_dist_dir_guesses.insert(0, '/Applications/Arduino.app/Contents/Resources/Java')
should instead be something like
if platform.system() == 'Darwin':
arduino_dist_dir_guesses.insert(0, '/Applications/Arduino.app/Contents/Java/hardware/arduino/avr')
since the Resources
only contain localizations and icons resources.
ino cannot find boards.txt because it is stored in /path-to-arduino/hardware/arduino/avr, not /path-to-arduino/hardware/arduino