Hi. I moved on Visual Studio 2015 to work with my attiny chips ( programmed with arduino as ISP ) .
I wrote lot of sketches and worked always fine, but now i've included a library that gives me a compilation error when i try to deploy my project on the IC.
I must tell first that the same code is compiling fine on arduino ide.
I always use libraries from the web and never experienced any error, just this one is crashing all out.
The Error output is:
Compiling 'Flussimetro' for 'ATtiny x5 w/ ATtiny85 @ 1 MHz (internal oscillator; BOD disabled)'
Error running preprocessor recipes
Preprocess: "C:\Program Files\arduino-1.5.8\hardware\tools\avr\bin\avr-ar" rcs y85at1\PinChangeInterrupt\PinChangeInterrupt.a" at1\PinChangeInterrupt\PinChangeInterrupt.cpp.o"
Unable to archive compiled files
Error running preprocessor recipes
Error running preprocessor recipes
Error compiling libraries
In my sketch, i included the library this way:
#include <PinChangeInterrupt.h>
The error is thrown no matter what code i try to compile ( for example also with)
#include <PinChangeInterrupt.h>
void setup() {
}
void loop() {
}
Hope someone could help me, i upload the library as attachment if someone could try to run it