How are Interrupt signals used?

Andreik

Member
Join Date
Mar 2009
Location
Makati City
Posts
80
Good day,

I often encounter this term "Interrupt Signal". I think they are related to Motor Controls somehow. Can anyone please enlighten me?

Thanks,
Andrei K.
 
So the if the whole Program is interrupted, the Program itself will not be usable and all of the I/O's and DM's will be idle?

About the "task" running in interrupt. Is it also programmed the normal way? Oh my, I've been programming PLC's for over 5 years now and I don't seem to have used this one.

Thanks
 
Andreik,

When you use an interrupt the plc will stop what it is doing and execute the interrupt routine and then return back to the program before the interrupt happened.

"So the if the whole Program is interrupted, the Program itself will not be usable and all of the I/O's and DM's will be idle?"

Yes in a sense, only the interrupt logic will be processed at this time.
 
"So the if the whole Program is interrupted, the Program itself will not be usable and all of the I/O's and DM's will be idle?"
That would not be my preferred view. My view of an interrupt is that is is just a shift in priority. The interrupt becomes top priority and runs, then the normal program resumes where it was before the interrupt. Anything that got changed by the interrupt is still changed when the normal program resumes.
 

Similar Topics

Hi, When I use an interrupt OB (let's say OB38 which is processed every 10ms), does it read the state of the inputs at the time it is called, or...
Replies
18
Views
2,361
Hello to all, I know there are a few people here very experienced with Codesys. I wonder does Codesys have something similar to OB35 in STEP7...
Replies
3
Views
612
Dear all, I want to use the interrupt service routine in FATEK PLC using WinproLadder Software. I had configured the interrupt in software as...
Replies
17
Views
1,557
HI everyone as a beginner i have been working with the time delay interrupt to understand how it works the SRT_DINT instruction starts the...
Replies
5
Views
2,236
Question about interrupt handling: having never used interrupts when programming PLCs, I am doing an educational exercise with a Siemens S7-1200...
Replies
5
Views
2,742
Back
Top Bottom