0
votes
0answers
34 views

PIC interrupt based soft UART timing trouble

I've tried to implement a software UART on a pic 18F452 using timer interrupts - although I'm a begginer with microcontrollers - and I can't get the timing working. I'm using MPLAB asm for compilation ...
0
votes
1answer
31 views

timer interrupt thread python

I've been trying to make a precise timer in python, or as precise a OS allows it to be. But It seams to be more complicated than I initially thought. This is how I would like it to work: from time ...
2
votes
1answer
65 views

I2C and timer interrupt (timer1)

I'm trying to read from multiple I2C slave devices using a dsPIC33 microcontroller. I was hoping someone could advise me on the correct method to user a timer interrupt (in this case timer1) and ...
0
votes
1answer
114 views

How do I pass parameters to a callback function for a timer interrupt on Arduino?

I want a timer interrupt to call a function with a set of parameters on an Arduino. I have looked at the Timer1 library, but it seems unable to be used in a way to pass parameters to the callback ...
0
votes
0answers
130 views

HCS12 Microcontroller TC5 Interrupt

I'm writing code in assembly for the HCS12 microcontroller family. I'm trying to create an interrupt for the TC5 timer interrupt. I know I have to define the vector address at $FFE4 and FDB ISR_TC5. ...
0
votes
1answer
60 views

Overriden timer interrupt not working properly

I am working on a small kernel as a project for my University. I have overridden (not sure if that's the correct expression) a timer interrupt routine. It works well until the first context ...
2
votes
3answers
258 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 ...
3
votes
1answer
147 views

Interrupting a timer

I'm creating part of a program right now for a personal project and I need some help on one aspect of it. Here is how the program works: User enters the amount of time to run User enters the text - ...
0
votes
1answer
120 views

How to run hrtimer handler in softirq context?

I have found this tutorial about hrtimer: http://www.ibm.com/developerworks/linux/library/l-timers-list/ I believe the way it uses will run the callback handler in hardirq context,right? But it also ...
1
vote
0answers
134 views

context switch inside timer interrupt, unexpected compilation error

I'm testing a context switch which is implemented in dispatch() function. To my understanding, problem ocures when I invoke dispatch inside interrupt timer. It won't even compile if I do that! Strange ...
2
votes
2answers
342 views

Install timer/clock ISR on Windows - Asynchronous call in a single threaded environment

I'm refining some code which simulated a context-switching scheduler on x86 Windows systems. The program compiles on Windows XP (Edit: probably not Windows 7) with some ancient Borland C compiler, and ...
0
votes
0answers
75 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 ...
1
vote
1answer
388 views

Need to produce a stable 10mSec interrupt

I have an application that I need to run at a 10mSec rate (100hz) on a Windows 7/32 bit computer (that will also be running other applications at the same time). This interrupt can have some ...
0
votes
1answer
343 views

How to make a timer interrupt a waiting process?

I am trying to implement alarms in a program that uses a standard read-eval-print loop. An example of the code would be something like this: while True: input = get_input() # A function that ...
1
vote
2answers
771 views

boost::asio asynchronous timer as an interrupt

As I understand it, I should be able to use a boost:asio asynchronous timer to trigger a callback every n milliseconds whilst my program is doing something else without needing threads. Is that ...
0
votes
1answer
252 views

Timer to generate overflow every 4ms

On atmega2560 (STK600 board), I am using Timer0 which is 8-bit timer. I want to generate an overflow every 4ms...how do I set the timer for 4ms? (the clock speed is 8MHz, I am aware of setting up a ...
0
votes
1answer
231 views

timer doesn't generate interrupts… or what?

#define TIMER_IVT_ENTRYNUM 0x1C or #define TIMER_IVT_ENTRYNUM 0x08 prevInt = getvect(TIMER_IVT_ENTRYNUM); setvect(TIMER_IVT_ENTRYNUM, currInt); that is how I set my own interrupt ...
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 ...
1
vote
1answer
405 views

Modify Timer Interrupt in Linux

At college I'm studying Operative Systems, and as a first part of the project we have to modify the Timer Interrupt to execute my own code, may be with threads, and I think that Linux present less ...
4
votes
3answers
711 views

Stepper Motor Control Timing

I have a question regarding stepper motor control while using the Microchip TCP/IP stack. In the past I have used a timer for my stepper motor control. I set the period of a timer to the required ...
0
votes
2answers
647 views

Timer Interrupt Service Routine on a host computer running at a rate of 10 microseconds or faster

I am trying to run the following pseudocode at a rate of 10 microseconds or faster on a host computer (512 mb RAM, Intel 2.5 GHz Pentium 4 processor, etc.) running on a Windows XP operating system: ...