What is the code for the ADC interrupt?
ISR(ADC_vect){
??
What is the code for the ADC interrupt?
ISR(ADC_vect){
??
Or can I simply call the address?
ISR (0x003A) {
??
Nevermind, I got it. If anyone is curious it's:
ISR (ADC_vect) {
code here
}
Would still like to know how to use the Program Address. Is that only for Assembly?
Would still like to know how to use the Program Address
Do you mean the actual address of the vector?
That will vary by processor - far safer/more portable to use the symbolic value.