The external interrupts page is very detailed (http://leaflabs.com/docs/maple-ide/external-interrupts/), but I noticed that LOW wasn't an option for an interrupt. I know the Arduino has this functionality and was wondering if this was a small typo (because there is another) on the page or if there is no compatibility here. It would be very helpful for me if the Maple supported LOW because I need a switch that, when disconnected, puts the code in an infinite loop that leave when the pin goes HIGH again. FALLING doesn't do this for me. I don't know if it's possible/wise to make the code something like:
void infinite () {
if(pin == LOW) {
;
} else {
loop; //I am assuming here that this is the correct syntax
}
By the way, the other typo is that RISING and FALLING are both described as "low to high."