Top "Interrupt" questions

Use for questions related to interrupt signals and interrupt handling.

How should I close a socket in a signal handler?

I'm writing a very simple server that loops forever until Ctrl-C is pressed. I'd like to have the signal handler …

sockets signals interrupt
STM32F3 Discovery - Implement GPIO-Interrupt

I want to implement a GPIO-Interrupt, but I dont know how, I also found no real sample or explaination for …

c arm microcontroller interrupt stm32
How to determine the IRQ number for a USB device?

I am new to driver development. However, I purchased an OSR USB FX2 Learning Kit, which comes with sample codes …

linux usb driver interrupt irq
Overrun errors with two USART interrupts

Using two USARTs running at 115200 baud on a STM32F2, one to communicate with a radio module and one for …

serial-port embedded interrupt stm32
Android usb host: asynchronous interrupt transfer

I'm trying to connect a USB-Device ( build by myself ) to communicate with my development board ( ODROID-X ) Unfortunately, the examples are …

android asynchronous usb interrupt host
Jumping from one firmware to another in MCU internal FLASH

I am currently working on a bootloader firmware application targeted to STM32F030C8. I specified in my scatter file …

c memory interrupt stm32 remap
What is the exact definition of 'process preemption'?

Wikipedia says: In computing, preemption is the act of temporarily interrupting a task being carried out by a computer system, …

operating-system cpu scheduling interrupt preemption
Stopping a python program

I have a python program that displays battery voltages and temperatures in an electric car. I typically run it from …

python interrupt control-c
graceful interrupt of while loop in ipython notebook

I'm running some data analysis in ipython notebook. A separate machine collects some data and saves them to a server …

ipython interrupt jupyter-notebook ipywidgets
Are polling and event-driven programming different words for the same technique?

I studied interrupts vs cyclical polling and learnt the advantages of interrupts that don't have to wait for a poll. …

listener interrupt interrupt-handling event-driven-design