Tagged Questions
1
vote
1answer
56 views
How can I surpress GCC warnings for no prototypes for interrupt routines when -Wmissing-prototypes is used?
I'm writing embedded code in C using MPLABX (IDE for Microchip products) and the XC16 compiler (which is based on GCC).
I'm using -Wmissing-prototypes to make sure that I have prototypes for all of ...
5
votes
3answers
247 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 ...
9
votes
4answers
222 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), ...
3
votes
3answers
118 views
Prevent nested calls
I have a function to disable interrupts, but the problem is that if I disable them and I call a function which also disables/enables them, they get re-enabled too early. Is the following logic enough ...
0
votes
2answers
250 views
ATMega32 C++ Object in Timer Interrupt
Is there a possibility to call a member function, say the output over UART, to be triggered by an interrupt?
Normally I would have used the TIMER0_COMP vect but I can't seem to get it to work with ...
2
votes
3answers
302 views
Temporarily disable timer interrupt
I'm working on an embedded project in C on a stm32f4xx uC.
I have a portion of a code that does an loop-operation XYZ continuously, and from time to time a TIM4 interrupt changes some global ...
0
votes
1answer
549 views
Arduino interrupt alternatives
From what I've read, the solution to my problem is to use an interrupt, but if I understand them correctly, I can't use a delay in the routine that gets called by the interrupt. I've got a large ...
2
votes
1answer
334 views
How to simulate interrupts in C/C++?
I am trying to design an artificial learning unit. Naturally I want to simulate the model before microcontroller implementation. The main issue with simulation is trying to simulate microcontroller ...
0
votes
1answer
190 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
2answers
359 views
NXP LPC17xx pending interrupts
I am facing a weird problem with the external interrupts of the LPC17xx series.
I have an external button set to external interrupt 1, falling edge with both an internal as an external pull-up ...
0
votes
0answers
104 views
Task scheduling in embedded webserver with out Operating system (OS)
I am looking for the task scheduling processes in the embedded web server with out the opearting system. But still now do not have solid idea that can be implemented in the real enviroment.
GOt some ...
0
votes
1answer
117 views
Task Scheduling in Embedded web server with out OS
I am doing project on the Embedded web server. The Embedded server is without the Operating system. At this conditions how the multiple task will be scheduled in such system?
are the ...
0
votes
0answers
82 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 ...
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 ...
1
vote
7answers
585 views
How our software recognizes an interrupt has occured?
As we know we write Embedded C programming, for task management, memory management, ISR, File system and all.
I would like to know if some task or process is running and at the same time an interrupt ...
1
vote
2answers
225 views
Can External Interrupt Program be too long to be able to work properly?
I have a question to ask regarding about external interrupt program. If i'm using INT1(External Interrupt 1 set to Falling Edge) of DS89C450 and my program of the external interrupt is very long, ...
3
votes
1answer
98 views
Fault model for interrupt crossover in embedded system
I am currently working on a software project which needs to handle certain security related issues, one of them being faults during interrupt execution. A number of sources (IEC standards and google) ...
1
vote
1answer
792 views
Implementing SPI slave ISR on PIC32?
I have two PIC32MX microcontrollers that are connected over a 1.53MHz SPI bus with Chip Select. I am having trouble getting my slave side interrupt service routine to transmit data correctly. As a ...
3
votes
2answers
769 views
PIC32 SPI ISR not being called when RXIF flag set?
I'm using a PIC32MX795F512L SPI3 module in slave mode. My master is sending data over the SPI line but my slave's interrupt service routine is never being called. The RX interrupt flag is being set ...
0
votes
1answer
2k views
No interrupts being triggered in UART Receive on PIC18F2680
I have been working with this code for days and cannot figure out why my interrupts are not being triggered. I know data is coming through successfully because I used a probe on a logic analyzer, ...
2
votes
4answers
249 views
Where to put calculations? Inside interrupt handler or main loop? (embedded realtime application)
I'm developing an embedded application for motor control and I have doubts on what to to with some calculations that transform ADC numeric values into signed physical values (Amps).
Should I make the ...
1
vote
1answer
105 views
ADI BF533 programmable flag interrupt
When I press PF8 button, I want the blackfin goes into a ISR and the counter increases 1.
I should clear or set a bit which indicates the processor has entered the ISR, but I don't know how to clear ...
0
votes
1answer
356 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
781 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 ...
4
votes
3answers
355 views
Schedule task on precise periods in Linux or Windows
I have this weird question.
I would like to know if it is possible to make a program in C/C++ that will run on Linux or Windows and will hook interrupt handler on a system timer set to specific period ...
8
votes
4answers
1k views
How to throttle Interrupt Driven UART transmission PIC24H?
I am transmitting data from my PIC24H microcontroller over 460Kbaud UART to a bluetooth radio module. Under most conditions, this flow works just fine and the bluetooth module uses CTS and RTS lines ...
1
vote
2answers
1k views
Task scheduling - controlling the execution of a function
In an embedded project, we're supposed to implement a task scheduler with different priorities, the project implementation is in C and is run on an Arduino device.
Now that we're in the researching ...
12
votes
1answer
3k views
Do interrupts interrupt other interrupts on Arduino?
I have an Arduino Uno (awesome little device!). It has two interrupts; let's call them 0 and 1. I attach a handler to interrupt 0 and a different one to interrupt 1, using attachInterrupt() : ...
3
votes
5answers
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 ...
1
vote
3answers
184 views
Handling many sources of interrupts
Consider that there are 100 plus ways of interrupts occuring from various sensors. There are chances that all can occur at the same time too. How can the software be designed to handle it efficiently ...
2
votes
2answers
641 views
Polling and interrupt based methods for packet processing in multicore processor
This query is related with the packet processing in multicore processors. Packet processing can be either in Linux or pure datapath. Is it true that if the packet processing application is on Linux, ...
11
votes
11answers
7k views
Polling or Interrupt based method
When should one use polling method and when should one use interrupt based method ?
Are there scenarios in which both can be used ?
4
votes
3answers
4k views
TI MSP430 Interrupt source
I know that when working with the MSP430F2619 and TI's CCSv4, I can get more than one interrupt to use the same interrupt handler with code that looks something like this:
#pragma ...
8
votes
4answers
1k views
How do you test your interrupt handling module?
I've got an interrupt handling module which controls the interrupt controller hardware on an embedded processor. Now I want to add more tests to it. Currently, the tests only tests if nesting of ...
4
votes
10answers
2k views
Keeping time using timer interrupts an embedded microcontroller
This question is about programming small microcontrollers without an OS. In particular, I'm interested in PICs at the moment, but the question is general.
I've seen several times the following ...
5
votes
5answers
1k views
How do you handle large data transfers on very memory constrained, embedded systems?
I have a microcontroller that must download a large file from a PC serial port (115200 baud) and write it to serial flash memory over SPI (~2 MHz). The flash writes must be in 256 byte blocks preceded ...
