venkates2218
Full Member level 6
Code:
#define XTAL_FREQ 8MHZ
#include <xc.h>
#include "delay.h"
#include "lcd.h"
// CONFIG1H
#pragma config OSC = HS // Oscillator Selection bits (HS oscillator)
#pragma config FCMEN = OFF // Fail-Safe Clock Monitor Enable bit (Fail-Safe Clock Monitor disabled)
#pragma config IESO = OFF // Internal/External Oscillator Switchover bit (Oscillator Switchover mode disabled)
// CONFIG2L
#pragma config PWRT = ON // Power-up Timer Enable bit (PWRT disabled)
#pragma config BOREN = OFF // Brown-out Reset Enable bits (Brown-out Reset disabled in hardware and software)
#pragma config BORV = 3 // Brown Out Reset Voltage bits (Minimum setting)
// CONFIG2H
#pragma config WDT = OFF // Watchdog Timer Enable bit (WDT disabled (control is placed on the SWDTEN bit))
#pragma config WDTPS = 32768 // Watchdog Timer Postscale Select bits (1:32768)
// CONFIG3H
#pragma config CCP2MX = PORTC // CCP2 MUX bit (CCP2 input/output is multiplexed with RC1)
#pragma config PBADEN = OFF // PORTB A/D Enable bit (PORTB<4:0> pins are configured as digital I/O on Reset)
#pragma config LPT1OSC = OFF // Low-Power Timer1 Oscillator Enable bit (Timer1 configured for higher power operation)
#pragma config MCLRE = ON // MCLR Pin Enable bit (MCLR pin enabled; RE3 input pin disabled)
// CONFIG4L
#pragma config STVREN = OFF // Stack Full/Underflow Reset Enable bit (Stack full/underflow will cause Reset)
#pragma config LVP = OFF // Single-Supply ICSP Enable bit (Single-Supply ICSP disabled)
#pragma config XINST = OFF // Extended Instruction Set Enable bit (Instruction set extension and Indexed Addressing mode disabled (Legacy mode))
// CONFIG5L
#pragma config CP0 = OFF // Code Protection bit (Block 0 (000800-001FFFh) not code-protected)
#pragma config CP1 = OFF // Code Protection bit (Block 1 (002000-003FFFh) not code-protected)
#pragma config CP2 = OFF // Code Protection bit (Block 2 (004000-005FFFh) not code-protected)
#pragma config CP3 = OFF // Code Protection bit (Block 3 (006000-007FFFh) not code-protected)
// CONFIG5H
#pragma config CPB = OFF // Boot Block Code Protection bit (Boot block (000000-0007FFh) not code-protected)
#pragma config CPD = OFF // Data EEPROM Code Protection bit (Data EEPROM code-protected)
// CONFIG6L
#pragma config WRT0 = OFF // Write Protection bit (Block 0 (000800-001FFFh) not write-protected)
#pragma config WRT1 = OFF // Write Protection bit (Block 1 (002000-003FFFh) not write-protected)
#pragma config WRT2 = OFF // Write Protection bit (Block 2 (004000-005FFFh) not write-protected)
#pragma config WRT3 = OFF // Write Protection bit (Block 3 (006000-007FFFh) not write-protected)
// CONFIG6H
#pragma config WRTC = OFF // Configuration Register Write Protection bit (Configuration registers (300000-3000FFh) not write-protected)
#pragma config WRTB = OFF // Boot Block Write Protection bit (Boot block (000000-0007FFh) not write-protected)
#pragma config WRTD = OFF // Data EEPROM Write Protection bit (Data EEPROM not write-protected)
// CONFIG7L
#pragma config EBTR0 = OFF // Table Read Protection bit (Block 0 (000800-001FFFh) not protected from table reads executed in other blocks)
#pragma config EBTR1 = OFF // Table Read Protection bit (Block 1 (002000-003FFFh) not protected from table reads executed in other blocks)
#pragma config EBTR2 = OFF // Table Read Protection bit (Block 2 (004000-005FFFh) not protected from table reads executed in other blocks)
#pragma config EBTR3 = OFF // Table Read Protection bit (Block 3 (006000-007FFFh) not protected from table reads executed in other blocks)
// CONFIG7H
#pragma config EBTRB = OFF // Boot Block Table Read Protection bit (Boot block (000000-0007FFh) not protected from table reads executed in other blocks)
#define sw1 PORTBbits.RB0
unsigned long long int a122, b122, c122, d122, e122, f122, i122, j122, k122, l122, i;
unsigned long long int rpm;
void System_init(void) {
TRISA = 0b00000011;
PORTA = 0b00000011;
ADCON1 = 0XFF;
CMCON = 0X07;
CCP1CON = 0X04;
TMR1L = 0x00;
TMR1H = 0X00;
T1CON = 0X31;
CCPR1L = 0X00;
CCPR1H = 0X00;
TRISB = 0b11111111;
PORTB = 0b11111111;
TRISC = 0b00000100;
PORTC = 0b00000100;
TRISD = 0b00000000;
PORTD = 0b00000000;
TRISE = 0X00;
PORTE = 0X00;
}
void rot_val_2(void) {
a122 = rpm / 100000;
b122 = rpm % 100000;
c122 = b122 / 10000;
d122 = b122 % 10000;
e122 = d122 / 1000;
f122 = d122 % 1000;
i122 = f122 / 100;
j122 = f122 % 100;
k122 = j122 / 10;
l122 = j122 % 10;
lcd_goto(3, 1);
lcd_putch(a122);
lcd_putch(c122);
lcd_putch(e122);
lcd_putch(i122);
lcd_putch(k122);
lcd_putch(l122);
}
void main(void) {
System_init();
lcd_init();
lcd_clear();
lcd_goto(1, 1);
lcd_puts("CCP TEST");
while (1) {
while (1) {
while (!CCP1IF == 1);
CCP1IF = 0;
rpm = CCPR1H;
}
}
}
I'm trying to design an tachometer using PIC18F4520 controller.So I tried to capture the signal from the IR SLOT sensor which fixed with the motor rotor.But I can't any output in controller.
Negative supply from the IR sensor is connected to CCP1 pin.