Ai đã từng xử lý vấn đề đo độ rộng xung sử dụng capture input cho mình chút là nên dùng mấy chân CCP để đo, tần số xung của mình vào quãng 10-20 Hz thì nên xử lý thế nào cho hay.. mình đã viết code mà sao đo vẫn sai quá
ai có thể giúp mình thì trả lời trực tiếp hoặc cho mình xin sđt hay gì đó để liên hệ mình cần gấp xin cảm ơn
#include "C:\Users\dungtran\Desktop\ex of ccs\doan.h"
#define LCD_ENABLE_PIN PIN_E0
#define LCD_RS_PIN PIN_E1
#define LCD_RW_PIN PIN_E2
#define LCD_TYPE 2
#include <lcd.c>
long rise,fall,pulse_width,n;
#int_ccp2
void do_xung()
{
disable_interrupts(GLOBAL);
CLEAR_INTERRUPT(INT_TIMER1);
rise = CCP_1;
fall = CCP_2;
pulse_width =n+fall - rise;
n=0;
set_timer1(0);
enable_interrupts(GLOBAL);
}
#int_timer1
void tinh_tran()
{
disable_interrupts(GLOBAL);
CLEAR_INTERRUPT(INT_TIMER1);
n+=0xffff;
enable_interrupts(GLOBAL);
}
void lcd_put_int(int16 num)
{
int16 temp;
unsigned char i = 0, c[5];
temp = num;
if (temp != 0)
{
while(temp)
{
c[i++] = temp%10;
temp /= 10;
}
while(i) lcd_putc(c[--i] + '0');
}
else lcd_putc('0');
}
void lcd_put_float(float num)
{
unsigned int16 temp;
temp = (unsigned int)num/1;
//temp=19;
lcd_put_int(temp);
temp = (unsigned int)((num - temp)*100);
lcd_putc(',');
lcd_put_int(temp);
}
void main()
{
lcd_init();
setup_ccp1(CCP_CAPTURE_RE); // Configure CCP1 to capture rise
setup_ccp2(CCP_CAPTURE_FE); // Configure CCP2 to capture fall
setup_timer_1(T1_INTERNAL); // Start timer 1
enable_interrupts(INT_CCP2); // Setup interrupt on falling edge
enable_interrupts(GLOBAL);
while(TRUE)
{
lcd_gotoxy(13,1);
lcd_putc("w");
lcd_gotoxy(13,0);
lcd_put_float(pulse_width);
///////////////////////////
lcd_gotoxy(1,1);
lcd_putc("rise");
lcd_gotoxy(1,0);
lcd_put_float(rise);
/////////////////////////////
lcd_gotoxy(7,1);
lcd_putc("fall");
lcd_gotoxy(7,0);
lcd_put_float(fall);
/////////////////////////////////////
delay_ms(1000);
}
}
ai có thể giúp mình thì trả lời trực tiếp hoặc cho mình xin sđt hay gì đó để liên hệ mình cần gấp xin cảm ơn
#include "C:\Users\dungtran\Desktop\ex of ccs\doan.h"
#define LCD_ENABLE_PIN PIN_E0
#define LCD_RS_PIN PIN_E1
#define LCD_RW_PIN PIN_E2
#define LCD_TYPE 2
#include <lcd.c>
long rise,fall,pulse_width,n;
#int_ccp2
void do_xung()
{
disable_interrupts(GLOBAL);
CLEAR_INTERRUPT(INT_TIMER1);
rise = CCP_1;
fall = CCP_2;
pulse_width =n+fall - rise;
n=0;
set_timer1(0);
enable_interrupts(GLOBAL);
}
#int_timer1
void tinh_tran()
{
disable_interrupts(GLOBAL);
CLEAR_INTERRUPT(INT_TIMER1);
n+=0xffff;
enable_interrupts(GLOBAL);
}
void lcd_put_int(int16 num)
{
int16 temp;
unsigned char i = 0, c[5];
temp = num;
if (temp != 0)
{
while(temp)
{
c[i++] = temp%10;
temp /= 10;
}
while(i) lcd_putc(c[--i] + '0');
}
else lcd_putc('0');
}
void lcd_put_float(float num)
{
unsigned int16 temp;
temp = (unsigned int)num/1;
//temp=19;
lcd_put_int(temp);
temp = (unsigned int)((num - temp)*100);
lcd_putc(',');
lcd_put_int(temp);
}
void main()
{
lcd_init();
setup_ccp1(CCP_CAPTURE_RE); // Configure CCP1 to capture rise
setup_ccp2(CCP_CAPTURE_FE); // Configure CCP2 to capture fall
setup_timer_1(T1_INTERNAL); // Start timer 1
enable_interrupts(INT_CCP2); // Setup interrupt on falling edge
enable_interrupts(GLOBAL);
while(TRUE)
{
lcd_gotoxy(13,1);
lcd_putc("w");
lcd_gotoxy(13,0);
lcd_put_float(pulse_width);
///////////////////////////
lcd_gotoxy(1,1);
lcd_putc("rise");
lcd_gotoxy(1,0);
lcd_put_float(rise);
/////////////////////////////
lcd_gotoxy(7,1);
lcd_putc("fall");
lcd_gotoxy(7,0);
lcd_put_float(fall);
/////////////////////////////////////
delay_ms(1000);
}
}