I want to generate an software interrupt based on the status of a digital io input. IE when a input goes high, execute some code. Is this possible and can someone point me to any examples.
Bill, There currently is not a way to generate a software interrupt based on the status of a digital line. The best option is to poll the digital line (in a tight loop) and check the value of that line in each iteration of the loop. Then execute (or don't execute) your code based on the value you read. -Alan A.