|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
Re: How do I use interrupts?
Since you had already mentioned the teleop timing, I didn't cover it. I listed ways to get other timing values that aren't driven by the FRC protocol and how to connect to the interrupts raised by the FPGA.
Can you give more info as to what OS event handling or Framework event handling means to you? Do you want to use the LV event structure? Registered callbacks? Asynchronous VIs that wait for a condition? What is the concurrency management that you refer to? Basically, can you give more info on what you have in mind. Greg McKaskle |
|
#2
|
||||
|
||||
|
Re: How do I use interrupts?
An event handler, as I was using the phrase, is application-level code that gets executed when an external asynchronous hardware event occurs. The execution of this code is "managed" by LabVIEW/vxworks in the sense that resources are allocated to the handler based on time-sharing and priority of other tasks concurrently competing for resources.
The 2010 FRC LabVIEW Framework had explicit support for periodic tasks. These periodic tasks are time-based, not event-based. You could put code in there to poll for an external event of interest. You could even change the default 10ms task to 1ms, although that would waste CPU resources if the event you're polling for occurs much less frequently than that. I don't know what "Asynchronous VIs that wait for a condition" are, but that sure sounds like what I have in mind when I use the phrase "event handler". Perhaps the 2011 Framework could include a shell or template for something like that, as was done for the periodic tasks, to make it more accessible. I make a distinction between "interrupt service" code and "event handler" code. To me, "interrupt service" is what happens from the time the interrupt occurs until the code ACKs the interrupt (if required by the hardware) and re-enables global interrupts. During this period everything else is locked out: There is no concurrency management (time sharing) because there is no concurrency. I'll go out on a limb here and say that for the purposes of FRC programming, interrupts should be serviced ONLY by LabVIEW/vxworks/FPGA: There should be NO need for teams to be writing their own interrupt service code. So when I see a poster asking "how to use interrupts" two thoughts come to mind: 1) what is this team doing that is so time-critical that it cannot properly be handled in a fast periodic task, and 2) do they really mean they want to write an interrupt service routine, or do they want to write an event handler. Last edited by Ether : 20-10-2010 at 14:23. |
|
#3
|
|||||
|
|||||
|
Re: How do I use interrupts?
Would the LabVIEW Event Structure fit what you're looking for? It's available on the Programming->Structures palette and would use robot-side events rather than front panel events.
Last edited by Mark McLeod : 20-10-2010 at 13:30. |
|
#4
|
||||
|
||||
|
Re: How do I use interrupts?
Quote:
This part sounds good: Quote:
Quote:
|
|
#5
|
||||
|
||||
|
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? |
|
#6
|
||||
|
||||
|
Re: How do I use interrupts?
Quote:
|
|
#7
|
|||||
|
|||||
|
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?
|
|
#8
|
||||
|
||||
|
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. |
|
#9
|
|||||
|
|||||
|
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. |
|
#10
|
||||
|
||||
|
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.
|
|
#11
|
|||||
|
|||||
|
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. |
|
#12
|
|||
|
|||
|
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 |
|
#13
|
||||
|
||||
|
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?
|
|
#14
|
|||||
|
|||||
|
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. |
|
#15
|
|||||
|
|||||
|
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.
|
![]() |
| 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 |