Received my Genuino 101 in the mail and wanted to crack on.
Went straight to Start Page
Installed the required Arduino IDE as well as the Curie cores as advised.
I then jumped straight to Curie IMU Orientation Visualiser project which I thought would be straightforward to run. However, upon compiling the available code, I was greeted with the following error message: CurieImu.h: No such file or directory
Determined not to give up easily, I went to search the header file that seemed to be missing. I found the required file to be under the following folder!
\AppData\Local\Arduino15\packages\Intel\hardware\arc32\1.0.4\libraries\CurieImu\src
The confusing thing is I never specified that file to be placed in the above folder. Anyways, I copied the CurieImu folder with its full content to where my Arduino libraries are normally installed, which is:
C:\Program Files (x86)\Arduino\libraries
Then I retried to compile the sketch file. Although the CurieImu.h error went away, I came across the following error this time:
C:\Program Files (x86)\Arduino\libraries\CurieImu\src\CurieImu.cpp:22:23: fatal error: interrupt.h: No such file or directory
Apparently, the interrupt.h file was missing this time. I searched for that file too and located it under:
\AppData\Local\Arduino15\packages\Intel\hardware\arc32\1.0.4\system\libarc32_arduino101\bootcode
I was not sure if that interrupt.h file was what I needed but nevertheless I copied the full \libarc32_arduino101 content to *C:\Program Files (x86)\Arduino\libraries*
Then I retried to compile the sketch but the same interrupt.h error appeared again.
I have no idea what the problem is. I don't think I should have to copy files across like this to get the stuff working and obviously something is seriously wrong here.
Your help will be greatly appreciated.
Cheers...