For Intel Community Support, product questions, or help troubleshooting, visit ICS: https://communities.intel.com/community/tech/intel-curie
|
The contents of this repo is distributed through releases in Arduino IDE.
Tools > Board > Boards Manager > Intel Curie Boards by Intel
If you wish to use the latest untested changes, follow these instructions.
- Install the latest
Intel Curie Boards by Intel
fromBoards Manager
- Download the latest snapshot of this repo
- Shut down the IDE
- Go to Arduino15 directory
- Windows:
C:\Users\<user>\AppData\Roaming\Arduino15
- OS X:
~/Library/Arduino15
- Linux:
~/.arduino15
- Go to
packages/Intel/hardware/arc32/<version>/
- Delete the content of the directory from step 5, and replace it with the content of the "corelibs-arduino101-master" folder in the zip from step 2.
Future upgrades may fail since the internal contents were modified by hand. In
order to recover, shut down the IDE, delete the entire Arduino15
directory,
then restart the IDE.
Before submitting a pull request, please see our guidelines for writing a considerate commit message.
If you have found a bug, or you believe a new feature should be added, please use the Github issue tracker (click "Issues" above) to provide details about the bug or feature. If you need product support (e.g. have a question about / are having problems with the Arduino IDE or the Arduino API), please direct them to the support forum.
"I noticed that your DoSomeThing library doesn't support all the same modes as the library from SomeOtherGuy: https://link-to-relevant-thing.com Can you add support for these modes?"
"If I run example sketch X on an Arduino 101 board, I get result Y. But if I run the same sketch on an Arduino UNO board, I get result Z. This looks like a bug to me."
"I'm having trouble downloading the Arduino 101 boards package in the Arduino IDE Boards Manager"
"How do I use this library?"
"I can't get this example sketch to work. What am I doing wrong?"
- Default disable the debug interface.
If you want to enable debug trace on Serial1 to debug corelib, follow these instructions.
- Shut down the IDE
- Go to Arduino15 directory
- Windows:
C:\Users\<user>\AppData\Roaming\Arduino15
- OS X:
~/Library/Arduino15
- Linux:
~/.arduino15
- Modify the platform.txt
- Find
compiler.c.flags
and add-DCONFIGURE_DEBUG_CORELIB_ENABLED
at the end of this line - Find
compiler.cpp.flags
and add-DCONFIGURE_DEBUG_CORELIB_ENABLED
at the end of this line
- Initial Serial1 in your sketch
- Add
Serial1.begin(115200);
in yoursetup()
- Adjust the output level at log_init function in log.c