diff --git a/.gitignore b/.gitignore index 1c04fd7..6b2d960 100644 --- a/.gitignore +++ b/.gitignore @@ -81,3 +81,4 @@ docs/mcss-doxy-output.log docs/mcss.log doygen-run.log examples/TestCommands/TestCommands.ino +compile_commands.json diff --git a/examples/j_external_pcint_library/j_external_pcint_library.ino b/examples/j_external_pcint_library/j_external_pcint_library.ino index d543066..fd90537 100644 --- a/examples/j_external_pcint_library/j_external_pcint_library.ino +++ b/examples/j_external_pcint_library/j_external_pcint_library.ino @@ -8,9 +8,9 @@ * @brief Example J: Using External Interrupts * * This is identical to example B, except that it uses the library - * [EnableInterrupt](https://github.com/GreyGnome/EnableInterrupt) to define the - * interrupt vector. This allows it to play nicely with any other libraries which define - * interrupt vectors. + * [EnableInterrupt](https://github.com/GreyGnome/EnableInterrupt) to assign the pin + * change interrupt vector. This allows it to play nicely with any other libraries that + * try to assign functionality to the pin change interrupt vectors. * * For this to work, you must remove the comment braces around * `#define SDI12_EXTERNAL_PCINT` in the library and re-compile it.