|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
||||
|
||||
|
Re: How do I use interrupts?
Quote:
This part sounds good: Quote:
Quote:
|
|
#2
|
||||
|
||||
|
Re: How do I use interrupts?
To tell you the truth, I'm a bit lost with all of your comments... After reading Ether's comment, I'm pretty sure that what I need is an event handler.
So... is there an option to use events for a microswitch? |
|
#3
|
||||
|
||||
|
Re: How do I use interrupts?
Quote:
|
|
#4
|
|||||
|
|||||
|
Re: How do I use interrupts?
For really quick response to a digital input, interrupts are likely the simplest choice, but the rest of the context is also important to finding the "right" solution. What do you intend to make happen when the switch activates?
|
|
#5
|
||||
|
||||
|
Re: How do I use interrupts?
Quote:
Using LabVIEW, you can set up the circuitry connected to the microswitch to generate an interrupt http://en.wikipedia.org/wiki/Interrupts when the switch closes (or opens, or both). When the interrupt occurs, the operating system immediately responds and queues up your event handler for execution. The 2010 Framework doesn't contain any template or example code for event handlers. See Greg's and Mark's earlier posts for suggestions how to do this. Before you do that though, if you tell us what you are trying to accomplish http://www.chiefdelphi.com/forums/sh...0&postcount=10 there might be a better way to handle it. Last edited by Ether : 20-10-2010 at 14:14. |
|
#6
|
|||||
|
|||||
|
Re: How do I use interrupts?
There are some dangers to beware of when using the Interrupt palette.
P.S. Since this is for use with a mechanical switch, it can be done, but you'll get pretty erratic results until you learn how to debounce a switch. What will happen is you'll get multiple interrupts all within a fraction of a second, as the switch makes and breaks contact several times before settling down to a firm contact. In the example attached, throwing a delay into "React" will effectively debounce the switch, but releasing the switch will probably cause the action all over again. Mechanical switches also operate slowly enough for polling to be a possibly more effective alternative. Quote:
on the other hand... Quote:
I've attached a variation of Greg's interrupt example that puts it in terms of the 2010 framework. You can use an Analog Trigger instead of a Digital Input if you'd rather. Last edited by Mark McLeod : 21-10-2010 at 13:25. |
|
#7
|
||||
|
||||
|
Re: How do I use interrupts?
Mark, if you handle the interrupt with the Event Case inside the While Loop, doesn't the Interrupt Wait vi handle the interrupt reset for you while you do whatever you want in the Event Case? I would think you would just want to write to a FGV or Global to allow a parallel process actually DO something.
|
|
#8
|
|||||
|
|||||
|
Re: How do I use interrupts?
Quote:
In a traditional Interrupt Service Handler (ISR) what you say is very true. You do want to get out of it just as fast as possible, usually by simply setting a flag or incrementing a counter, and then leaving further processing up to some independent polling task or triggered process. A traditional example would be an encoder where interrupts come fast and furious and you must make sure they are all captured and counted. In this case the reset/repeat elapsed time is much too fast to waste time process when you could be missing subsequent interrupts. I may be reading too much between the lines here... but this doesn't sound like a rapid-fire response ISR though. This sounds like an event trigger. This application, what little we know of it, is a micro-switch which is quite a slow (& noisy) device, especially when you take into account the debouncing delay that will probably be required (and that you have to add). An interrupt is not usually a good solution for a mechanical switch, because of all the false interrupts that get generated when a switch makes contact just once. Your code will probably run several times in a row on a single switch press. It probably won't matter which edge you chose as you'll most likely get both rising and falling edges at the same time, whether the switch is being pushed or released. So, I'm imagining that they just want to react to the switch getting hit just as fast as computerly possible, with a relatively long (for the cRIO) delay afterwards to do whatever it is they plan to do. Say the switch is just intended to trigger an event like "kick a ball" when it hits the switch, then that's a slow process that could do all it's processing in the interrupt handler. Primarily because you don't want it to happen again until the mechanism has recycled/reloaded. Code has to be added to delay long enough to debounce the switch anyway. When designing your code you need to take into account how fast you need to be able to repeat the process, whether the process is locked until recycled, etc. P.S. I don't think this Interrupt function stores events. I think it will only "hear" interrupts that occur while Interrupt Wait is active. So the entire time spent in the React case will be deaf to further interrupts. Last edited by Mark McLeod : 21-10-2010 at 13:46. Reason: Simplifying a tiny bit. |
|
#9
|
|||
|
|||
|
Re: How do I use interrupts?
To answer some, hopefully all of the questions. The Wait for Interrupt is a somewhat high level, but relatively low jitter way to respond to an FRC specific interrupt raised by the FPGA.
Notice that Interrupt Open lets you specify specific FRC related I/O triggers. In the general FPGA tool, you write the FPGA to poll, calculate, or do whatever you want at 40MHz or less. The FPGA code you write can raise the one of N interrupts on the PPC (32 interrupts I believe, but it could be less). The lower level library let you determine whether the acknowledge will take place after your code or before. For FRC, it is hidden and set to ack first. To be honest, I haven't used the interrupt stuff a ton, but unlike many other libraries where close is pretty foolproof, you may want to ensure that you close resources or you may find some odd behaviors. If so, reboot the cRIO. Another comment on the interrupt stuff, keep in mind that the heavy protection and isolation you associate with OSes is far thinner and sometimes nonexistent on RT systems such as VXWorks. Newer versions of VXWorks have different configurations which support more user protection and isolation, but the version on the cRIO has high I/O throughput, but less isolation, in fact very little. I don't believe that the event structure works on RT, at least much of it doesn't work there since the event structure is primarily for UI operations. It is certainly not setup to handle interrupts. The event structure also deals with user events which can be used much like queues. If you need to set priorities, and I highly doubt that you do, you can set different subVI priorities and put each of them to wait on different interrupts. Greg McKaskle |
|
#10
|
||||
|
||||
|
Re: How do I use interrupts?
Thank you for clarifying the use of the event structure. As far as priorities, I would want to use them to determine machine behavior based on sensed events. I think my takeaway from your discussion is that I should use a state machine based on the sensor inputs. My concern would be how to truly interrupt a process such as raising an arm when an imminent collision is sensed. Even if the entire state machine (say, for raising an arm) is contained inside another case statement (collision imminent, true or false), if you are executing state machine logic within the 'collision false' case, wouldn't there be a significant delay (20 ms) before switching to the 'collision true' case?
|
|
#11
|
|||||
|
|||||
|
Re: How do I use interrupts?
Quote:
At the end of Autonomous mode the vi gets killed no matter what it is doing at the moment. I think the more standard approach will be to do what we do now and design checks like limit switches into our code or use the CAN Jaguar limit switches. |
|
#12
|
|||||
|
|||||
|
Re: How do I use interrupts?
The answer seems obvious to me. Make "imminent collision sensed" one of the states your machine can be in, and use the sensor inputs to put it into that state when appropriate.
|
|
#13
|
|||
|
|||
|
Re: How do I use interrupts?
Perhaps the previous robot architecture is influencing the thinking process.
The teleop code is indeed limited to 20ms start gaps, but that limit need not leak into the rest of the robot code. You can have loops running at the rate appropriate to the sensors or mechanism. Often that just means to build a loop and place a Wait or Wait ms Multiple inside. If you find that a loop is running quite fast, you may choose to switch to the timed loop. It has multiple clocks you can choose from, and you can choose very small delays and different delay and scheduling policies. The timed loop is rich in possibilities, which also means it can be confusing if you dive in and then wonder why your app behaves the way it does. I'd encourage you to look at examples and read up on it a bit and perhaps even experiment with it first. And I'll state again that priorities are a tricky tool, and don't be too careless with them or you will starve out other tasks, perhaps even starving the teleop itself. If your app's loops need to coordinate, but not be placed into the same loop, look at using the RTFIFO to send notifications/events between them. You can even use the timeout to combine a periodic and event driven response. If you are interested in going to the next level in LV RT, I'd encourage you to look at examples based on those two concepts, RT FIFOs and Timed loops and think about how your scheduling for sensor loops and state machines is built from those. The cool thing is that rather than having one event mechanism that is interleaved, you can have as many as you like with much finer grained multitasking. Greg McKaskle |
|
#14
|
||||
|
||||
|
Re: How do I use interrupts?
Greg, thank you for that explanation and suggested directions.
|
|
#15
|
||||
|
||||
|
Re: How do I use interrupts?
Quote:
Quote:
If so, you could use the example Mark provided here and put your "event handler" code (to depower the motor) where the "react" note is in the diagram. You could also set a flag (like a global variable) that your state machine could read, to keep it from un-doing the motor depower. One possible way would be to test this flag after every motor command in the state machine, and depower the motor if the flag is set. You could experiment with putting a small capacitor across the microswitch to help de-bounce it. |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Interrupts, Interrupts, and more Interrupts! | dcbrown | Programming | 14 | 06-03-2008 23:12 |
| How many interrupts is too many interrupts? | Madison | Programming | 14 | 08-02-2008 12:09 |
| How to use motors | xmarufx | Motors | 9 | 02-08-2005 00:22 |
| How to use Generate_Pwms() ? | steven | Robotics Education and Curriculum | 0 | 01-04-2005 11:43 |
| How did you learn how to use Inventor? | Greg McCoy | Inventor | 26 | 24-05-2003 01:55 |