python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Problem Showing Interrupt message on Easy68k
I'm trying to do a program for the 68k processor using assembly. And I'm using Easy68k
The main Idea of the program is that a message appears when the reset button is hit along with change in the seve...
Simon temp
Votes: 0
Answers: 1
Stack alignment and ISR
How do you assure stack alignment inside an ISR? Does the arm C compiler force stack alignment in ISR?
For example, in my understanding local scope variables in a function are pushed onto the stack. S...
FourierFlux
Votes: 0
Answers: 1
How to access class's virtual method from interrupt service routine?
I am trying to implement PWM using Timer0 for Atmega328P in C++. Indeed, I have achieved this. But, I have another related problem.
I have a PWM abstract base class that provides an interface for PWM ...
BHOS
Votes: 0
Answers: 2
Assigning architecture specific interrupt handler
The "handle_arch_irq" function pointer is assigned in 2 places with interrupt handler.
1st place:
void setup_arch()
{
handle_arch_irq = mdesc->handle_irq;
}
2nd place:
int set_handle...
Ravi A
Votes: 0
Answers: 0