Untitled
unknown
plain_text
2 years ago
2.1 kB
6
Indexable
#include <xc.h> #include<stdio.h> #include<stdlib.h> #include <time.h> #pragma config OSC = INTIO67 //OSCILLATOR SELECTION BITS (INTERNAL OSCILLATOR BLOCK, PORT FUNCTION ON RA6 AND RA7) #pragma config WDT = OFF //Watchdog Timer Enable bit (WDT disabled (control is placed on the SWDTEN bit)) #pragma config PWRT = OFF //Power-up Timer Enable bit (PWRT disabled) #pragma config BOREN = ON //Brown-out Reset Enable bits (Brown-out Reset enabled in hardware only (SBOREN is disabled)) #pragma config PBADEN = OFF //PORTB A/D Enable bit (PORTB<4:0> pins are configured as digital I/O on Reset) #pragma config LVP = OFF //Single-Supply ICSP Enable bit (Single-Supply ICSP disabled) #pragma config CPD = OFF //Data EEPROM Code Protection bit (Data EEPROM not code-protected) void MSdelay(unsigned int val) { unsigned int i,j; for(i=0;i<val;i++) for(j=0;j<165;j++); } void __interrupt(high_priority)H_ISR(){ //step4 int value = ((ADRESH << 2) | (ADRESL >> 6)); LATC = (int)(value/(1024/15)); //do things //clear flag bit PIR1bits.ADIF = 0; //step5 & go back step3 /* delay at least 2tad ADCON0bits.GO = 1; */ MSdelay(200); ADCON0bits.GO = 1; return; } void main(void) { //configure OSC and port OSCCONbits.IRCF = 0b100; //1MHz TRISAbits.RA0 = 1; //analog input port //step1 ADCON1bits.VCFG0 = 0; ADCON1bits.VCFG1 = 0; ADCON1bits.PCFG = 0b1110; //AN0 為analog input,其他則是 digital ADCON0bits.CHS = 0b0000; //AN0 當作 analog input ADCON2bits.ADCS = 0b000; //查表後設000(1Mhz < 2.86Mhz) ADCON2bits.ACQT = 0b001; //Tad = 2 us acquisition time設2Tad = 4 > 2.4 ADCON0bits.ADON = 1; ADCON2bits.ADFM = 0; //left justified //step2 PIE1bits.ADIE = 1; PIR1bits.ADIF = 0; INTCONbits.PEIE = 1; INTCONbits.GIE = 1; //step3 ADCON0bits.GO = 1; TRISC = 0; while(1); return; }
Editor is loading...
Leave a Comment