Tagged Questions
0
votes
1answer
201 views
do_gettimeofday() in Beaglebone giving wrong time
I am trying to measure the time period of a square wave on a Beaglebone running Angstrom OS. I have written a kernel driver to register an ISR in which I'm timing the pulses. Everything is working ...
5
votes
3answers
216 views
Embedded: C Coding for Ctrl-C interrupt in u-boot terminal
I'm a beginner in embedded programming. I'm working on craneboard (ARM Cortex A8). The source code is available at github.
I have created a C code to make an external LED connected via GPIO, to ...
0
votes
1answer
148 views
How to disable interrupt in Linux
I am using mini2440 arm board, and GPIO to control the hardware connected with the GPIO. I am using BSP that ships with the cd of the board. I have only enabled functionality which I will need for ...
1
vote
2answers
132 views
What's the role of __irq in ARM System Programming?
I understand __irq is used to define Interrupt Service Routine function for ARM7(v4) architecture. But what changes does it make to the function?
As per ARM Information Center:
The __irq keyword ...
9
votes
4answers
204 views
How to keep interrupts short?
The most heard advice in embedded programming is "keep your interrupts short".
Now my situation is that I have a very long running task in my main() loop (writing large blocks of data to SDcard), ...
0
votes
2answers
129 views
real time operating system scheduler handling
Should I use IRQ mode to handle scheduler? I mean I use timer interrupt and in interrupt procedure I put a code that saves environment (registers, stac), select a new task and load its environment. I ...
1
vote
1answer
384 views
Should my interrupt handler disable interrupts or does the ARM processor do it automatically?
Our group is using a custom driver to interface four MAX3107 UARTs on a shared I2C bus. The interrupts of the four MAX3107's are connected (i.e. shared interrupt via logic or'ing)) to a GPIO pin on ...
1
vote
0answers
91 views
IRQ is not working properly on LPC238 (Crossworks + GCC)
I'm currently working with Crossworks ARM (2.1) and I have some problem with interrupts on my LPC2368 mcu.
Two courses of action (in UART example):
1) Working one:
whole uart initialization and ...
1
vote
0answers
112 views
Why ARM Process IPI at the end of ISR
I am studying IRQ handling on Linux.
I have a question, why we need to handle IPI at the end of each ISR[for SMP].
Is there something special with IPI? why not we process in do_asm_IRQ with other ...
0
votes
0answers
104 views
SoftIRQ and tasklet for ARM
As we all know ,softirq and tasklet are used for deferring IRQ processing (deferring less critical work later).
But on ARM platform ,I see softirq and tasklet are all processed in IRQ context , ...
1
vote
0answers
405 views
Multiple External Interrupt on LPC1768 : only one interrupt is working
I've wrote code for external interrupt EINT1. That works, but if I want to add a second interrupt (EINT3), only the new works. I can have the both.
Here under is my code, may be I'm wrong but I do ...
2
votes
4answers
192 views
What's the race condition in these two interrupt service routines?
I'm using an ARM microcontroller for a real-time systems course in my university. In the project I'm working on at the moment, I'm implementing the vector field histogram (VFH) algorithm.
The problem ...
0
votes
1answer
172 views
enter low power mode within u-boot, wake up on interrupt
I try to implement a low power "deep sleep" functionality into uboot on button press. Button press is handled by linux and a magic code is set to make u-boot aware of the stay asleep do not reboot"
...
0
votes
1answer
243 views
Difference between IRQ and FIQ in kernel?
What is the difference between IRQ and FIQ as per the Linux API wise? Are they use same api?
Is the difference only inside ARM core or is it do do with the kernel function calls also?
0
votes
0answers
226 views
compensating latency on ARM interrupts?
I'm working on a project on a STM32F4 CPU, generating signals.
I have a generic timer on CPU clock (no prescaler) on a STM32 triggering interrupts on overflow, to generate a periodic signal with GPIO ...
0
votes
0answers
80 views
Data abort if CPU suspend in FIQ?
I'm developing the embedded system on ARM platform. And I just try to solve a random data abort issue on it. And as I try to focus the problematic lines on the register map for debugging, but another ...
0
votes
0answers
77 views
How to setup hardware timer interrupt in OKL4 running on Tegra2/ARM?
I'm writing program for OKL4 version 3.0 real-time OS. It is running on Tegra2 chipset with ARM processor (for now, emulated with QEMU). I want to setup one of the hardware timers of Tegra2 to ...
-3
votes
1answer
368 views
Software Interrupt in system call
In fork system call in arm,
swi #0
instruction is used, what exactly it does?
Thank you.
3
votes
1answer
2k views
how to know the Interrupt/GPIO number for a specific pin in linux
i'm doing a project in which i need to handle an interrupt in Linux.
the board i'm using is an ARM9Board based on the s3c6410 MCU by Samsung (arm 11 processor) and it has the following I/O interface ...
0
votes
1answer
198 views
Interrupt Priority in ARM
In ARM , Interrupt Priority is used. How is priority decided.
Is it done at hardware level or software level.
Hardware level - Is there an option in Interrupt Controller to set the interrupt ...
1
vote
2answers
541 views
Cortex-M3: Changing Interrupt Return Address
I need to edit the return address of an ISR. The ISR should return to a specific address after the interrupt is handled, regardless of where it came from. This is to facilitate a fast system reset. ...
6
votes
2answers
472 views
Why two vector table addresses on ARM?
In ARM architecture there is one low vector address0x0 and high vector address 0xFFFF0000.
I was wondering why two vector addresses might be needed ?
In Intel microprocessors and microcontrollers ...
0
votes
1answer
139 views
How to implement ISRs and main() synchronization?
I'm a beginner in ARM microcontroller programming and have the following problem to be solved.
There are two ISRs in the program: ISR_Timer and ISR_Buffer. ISR_Timer is executed each 5 minutes. ...
0
votes
1answer
341 views
help understanding timer and period of interrupts
I am having a hard time understanding some code I found for utilizing a timer and interrupts on an ARM board I have. The timer basically toggles an LED every interrupt between on and off to make it ...
4
votes
1answer
747 views
Can I configure an interrupt for a GPIO pin on a STM32F103ZE chip?
Is there any GPIO interrupt available for STM32F103ZE?
I went through the datasheet but didn't find anything related to that.
I am new to this processor but recently used TI's MSP430.
In MSP430 we ...
5
votes
2answers
593 views
Can this be atomically executed?
I would like to know whether it is possible to ensure line is atomically executed, given that it could be executed by both the ISR and Main context. I'm working on an ARM9 (LPC313x) and using RealView ...
3
votes
4answers
4k views
ARM Cortex M3 How do I determine the program counter value before a hard fault?
I have an embedded project using a STM32F103 (ARM Cortex M3), it is getting a occasionally getting hard fault in release mode. As part of recovery, I would like to retrieve the PC value from before ...
0
votes
2answers
212 views
Regarding interrupt based communication
We have a simple architecture :
Main chip (arm9 based)
PIC controller
The PIC communicates to ARM via an interrupt based I2C communication protocol for transfer of data. Inside the interrupt we ...
10
votes
11answers
16k views
What is the difference between FIQ and IRQ interrupt system?
I want to know the difference between FIQ and IRQ interrupt system in
any microprocessor, e.g: ARM926EJ.
1
vote
1answer
1k views
What is the typical interrupt latency for WinCE 6.0 on an ARM target?
What is a typical interrupt latency for WinCE 6.0 on an ARM target?
(Just looking for a ballpark value for performance estimation)

