|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
Multiple Interrupts
Hi, I was thinking of having and interrupt for the rising and falling edges from the geartooth sensors on each of two wheels as well as have a timer interrupt for each of three SONAR sensors. How do you program different interrupt handlers so that each one responds to a different interrupt from each device?
Thanks, Windell #2477 |
|
#2
|
|||||
|
|||||
|
Re: Multiple Interrupts
You only have one interrupt handler for your entire program. To handle multiple interrupts, you put a large amount of if-else statements in your interrupt handler to check for which particular interrupt you're handling at the moment, then you do whatever you need to inside that particular if-else statement.
|
|
#3
|
|||
|
|||
|
Re: Multiple Interrupts
Ahh I see what you mean. Are there any examples that you can show me?
Thanks, Windell |
|
#4
|
|||||
|
|||||
|
Re: Multiple Interrupts
Kevin Watson's encoder software is a good example of multiple interrupt sources being handled.
http://www.kevin.org/frc/frc_encoder.zip Many of his other utilities, such as the adc and pwm replacements, are also useful examples. |
|
#5
|
||||
|
||||
|
Re: Multiple Interrupts
I just had a bad idea. If you want interrupts on the rising AND falling edges...
Code:
void Int_1_ISR(void)
{
INTCON2bits.INTEDG2 = !INTCON2bits.INTEDG2;
}
|
|
#6
|
|||
|
|||
|
Re: Multiple Interrupts
Kevin would definitely be the one to ask, but i think that might work, if you also disabled the interrupt, then made the INTEDG2 change, and then reenabled it.
Alternatively, if you want rising and falling edges, just use the PORTB ones (Int3-6). |
|
#7
|
||||
|
||||
|
Re: Multiple Interrupts
Quote:
-Kevin |
|
#8
|
|||||
|
|||||
|
Re: Multiple Interrupts
I have been trying to get Interrupts 2 and 3 working that would be on pins 1 and 2 of the Digital Inputs. I have the code and I seem to get in an infinite loop on the left gear tooth sensor. . . The interrupt keeps going and makes both the right and left gear boxes go full 254 forward.
Right GTS doesn't work at all. (yes we have tested the GTS after we fixed the resistors problem and it works fine) Can someone see where I messed up??? Copied the code from Kevin Watson's Encoder Code. |
|
#9
|
||||
|
||||
|
Re: Multiple Interrupts
Quote:
Write_Serial_Port_One('*'); Fix this one problem and let us know if it works. -Kevin |
|
#10
|
|||||
|
|||||
|
Re: Multiple Interrupts
Quote:
|
|
#11
|
|||
|
|||
|
Re: Multiple Interrupts
I was unaware of a resistor problem. What is the problem that you speak of?
|
|
#12
|
|||||
|
|||||
|
Re: Multiple Interrupts
Team Update #6 explains it. There are a bunch of discussion here on ChiefDelphi about it also. . . Pretty much they switched R3 and R4 on one of the Gear Tooth Sensors
|
|
#13
|
|||||
|
|||||
|
Re: Multiple Interrupts
I changed all the Longs to Ints
Took out the printf in the interrupt function. And everything started to work!!!. . . With making those few changes the above code works for Digital Input 1 and Digital Input 2 Gear Tooth Sensors. It really made me excited today when programming the robot to go *** (A calculated value) gear teeth (8 ft) forward it actually did. |
|
#14
|
|||
|
|||
|
Re: Multiple Interrupts
whoa! Congrats! I'll be sure to remember that when I get around to the closed loop feedback.
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Hosting multiple sites in multiple VMs | EHaskins | Website Design/Showcase | 6 | 22-12-2007 01:09 |
| Interrupts | JSonntag | Programming | 1 | 14-01-2006 12:43 |
| timers/interrupts | Anton | Programming | 1 | 17-02-2005 08:42 |
| Interrupts | CyberWolf_22 | Control System | 3 | 12-01-2004 21:46 |