Hi all,
I managed to get my interrupts working, and i have figured out a way to calculate the heart rate which is:
z = 60/(0.39*R7) = 153.84/R7 = 154/R7
But when i tried this formula, the LCD only display 77 BPM and 154 BPM. It seems that the overflow counter, R7, only count 1 - 2.
This is my code:
;*************************************** ;-----------INTERRUPT CONFIGURATIONS----------- ;*************************************** SETB EA ; Enable Global Interrupts SETB ET0 ; Enable Timer 0 Interrupt SETB EX0 ; Enable External Interrupt 0 SETB PX0 ; External Interrupt 0 High Priority ;*************************************** ;------------TIMER 0 CONFIGURATIONS------------ ;*************************************** TIMER_0 EQU 65535 SETB IT0 ; External Interrupt 0 detect falling-edge MOV TMOD,#01H ; Set Timer 0 to Mode 1 MOV A,CKCON ; Move CKCON to Accumualtor CLR ACC.3 ; Set system clock to divided by 12 MOV 70H,#00H ; Move 0 to 70H MOV R7,#02H ; Move 4 to R7 MOV 62H,#01H ; Move 1 to 62H MOV TH0,#HIGH TIMER_0 ; Set High Byte of Timer 0 MOV TL0,#LOW TIMER_0 ; Set Low Byte of Timer 0 ;********************** ;-Wait Until 4th Pulse- ;********************** WAIT: CJNE R7,#00H,WAIT ; Compare and jump to subroutine "WAIT" if R7 != 0 CLR TR0 ; Stop Timer 0 ;****** ;-Math- ;****** MATH: MOV A,#9AH ; Move 154 to A MOV B,70H DIV AB MOV R6,A ;********************** ;-External Interrupt 0- ;********************** EX_INT0: DJNZ 62H,COUNT ; Decrement 62H and jump if != 0 SETB TR0 ; Start Timer 0 COUNT: DEC R7 ; Decrement R7 RETI ; Return from Interrupt ;*********************** ;-Timer 0 Overflow Flag- ;*********************** T0_INT: INC 70H ; Overflow Counter MOV TH0,#HIGH TIMER_0 ; Reloads Timer 0 with High Byte MOV TL0,#LOW TIMER_0 ; Reloads Timer 0 with Low Byte RETI ; Return from Interrupt
Any advice would be greatly apprectiated.
But your code does not measure the time for one heart beat interval, even if you initialize your register to 2. It measures the time between two or three heart beats, i.e. it measures randomly between one and two intervals.
But your code does not measure the time for one heart beat interval, even if you initialize your register to 2.
Huh? I don't understand...
Don't the external interrupt detect falling edges? So if i initialize the register to 2, the 1st pulse will decrement R7 and the 2nd pulse will make it 0, than the program will stop the timer...
Sorry, my fault. You do start the timer in the ext1 interrupt routine.
Oh.. Its ok... Thanks for your help... ^^
One question...
Does the 8051 have a range for detecting pulses?
For example, below/above certain frequencies or below/above certain amplitudes... How can i check?
You need an ADC input and a lot of code to perform that.
Exactly what is your problem?
I just want to know does the 8051 have a tange for detecting pulses as in range of amplitude or range of frequencies...
Because when i tried inputting 0.7Vp-p, it cannot detect the pulses... When i input high frequencies like 5Hz or above, it does not detect the pulses too...
When using an interrupt input, you must supply a TTL-level signal, as explained in one of your earlier threads. Digital pins requires digital signals!
If the voltages are within range - and your chip has an ADC - you may also send in an analog value to one of the ADC inputs. Then you will have to figure out if the specific chip has capture/compare support to react to a specific level. If not, you will have to react to every single sample, and consider what to do.
The easiest solution - already mentioned - is to use an OP as comparator, to decide if your input signal should be considered high or low. Temporal filtering (in case the comparator may generate multiple pulses) can be implemented in the interrupt service routine.
I see... So i have to find out the range using those methods above? Thanks...
What are you inputting the signal to ? Your 8051 chip or the "heartbeat detector" you mentioned in an earlier post ?
http://www.keil.com/forum/docs/thread10117.asp
If it is the latter, your problem might have nothing to do with the 8051 - it may well be a limitation of the heartbeat detector (0.7V pp is fairly low for an ECG signal, and 300 bpm/5 Hz is a very unlikely value for a human heart rate - it would be ventricular fibrillation instead of normal heart action).
I am inputting it to the 8051 chip...
Could you please inform me where you are likely to be using the fruits of this project.
If it's in the vicinity of a hospital, I want to make sure that I and my family are nowhere near it. Just in case one of us ends up needing to be monitored!
Do you think u can manage to make all of your projects perfectly at a single try?
Everyones' a newbie once... ok? And I'm the one that is slow to learn...
In that case, you need to refer to (i.e. read) the datasheet of your chip.
It will tell you which voltages on the logic input pins the chip will consider LOW and HIGH.
If you input a signal with 0.7V p-p to a logic input pin, of course the chip will not detect any changes of that pin - because for a logic input pin, any voltage below a certain threshold is 0.
For the frequency limitation - that is an issue with your algorithm. A '51 should easily be able to deal with input frequencies in the kHz range if programmed correctly.
I see... Thanks Franck... I'll go re-read my datasheet again...
No, I definitely don't always get my projects right first time.
But I do like to think that I try to get an understanding the basics of the operation before embarking on said projects!