Hi man, when I try to compile the writeinstinct.h file via arduino IDE on Ubuntu 18 (either via root or as normal user) I get the following error: .../arduino-1.8.10/hardware/tools/avr/bin/avr-gcc: permission denied Tried already to google the problem, but nothing turned up really.
top of page
bottom of page
Thanks for replying. this fixed my issue. it is important to give chmod +x permissions to all files within /bin, so the command that worked for me was:
sudo chmod -R +x /filepathtoabovebinfolder/ bin
Does it work with the example codes by Arduino IDE?
Maybe you can try to add execution privilege to avr-gcc by
sudo chmod +x YourDirectory/avr-gcc