/** ADC1 Generated Driver File @Company Microchip Technology Inc. @File Name adc1.c @Summary This is the generated driver implementation file for the ADC1 driver using PIC10 / PIC12 / PIC16 / PIC18 MCUs @Description This source file provides implementations for driver APIs for ADC1. Generation Information : Product Revision : PIC10 / PIC12 / PIC16 / PIC18 MCUs - 1.65.2 Device : PIC16F1579 Driver Version : 2.01 The generated drivers are tested against the following: Compiler : XC8 1.45 MPLAB : MPLAB X 4.15 */ /* (c) 2018 Microchip Technology Inc. and its subsidiaries. Subject to your compliance with these terms, you may use Microchip software and any derivatives exclusively with Microchip products. It is your responsibility to comply with third party license terms applicable to your use of third party software (including open source software) that may accompany Microchip software. THIS SOFTWARE IS SUPPLIED BY MICROCHIP "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, APPLY TO THIS SOFTWARE, INCLUDING ANY IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY, AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL MICROCHIP BE LIABLE FOR ANY INDIRECT, SPECIAL, PUNITIVE, INCIDENTAL OR CONSEQUENTIAL LOSS, DAMAGE, COST OR EXPENSE OF ANY KIND WHATSOEVER RELATED TO THE SOFTWARE, HOWEVER CAUSED, EVEN IF MICROCHIP HAS BEEN ADVISED OF THE POSSIBILITY OR THE DAMAGES ARE FORESEEABLE. TO THE FULLEST EXTENT ALLOWED BY LAW, MICROCHIP'S TOTAL LIABILITY ON ALL CLAIMS IN ANY WAY RELATED TO THIS SOFTWARE WILL NOT EXCEED THE AMOUNT OF FEES, IF ANY, THAT YOU HAVE PAID DIRECTLY TO MICROCHIP FOR THIS SOFTWARE. */ /** Section: Included Files */ #include #include "adc1.h" #include "device_config.h" /** Section: Macro Declarations */ #define ACQ_US_DELAY 5 /** Section: ADC Module APIs */ void ADC1_Initialize(void) { // set the ADC1 to the options selected in the User Interface // GO_nDONE stop; ADON enabled; CHS AN0; ADCON0 = 0x01; // ADFM right; ADPREF VDD; ADCS FOSC/8; ADCON1 = 0x90; // TRIGSEL no_auto_trigger; ADCON2 = 0x00; // ADRESL 0; ADRESL = 0x00; // ADRESH 0; ADRESH = 0x00; } void ADC1_SelectChannel(adc_channel_t channel) { // select the A/D channel ADCON0bits.CHS = channel; // Turn on the ADC module ADCON0bits.ADON = 1; } void ADC1_StartConversion() { // Start the conversion ADCON0bits.GO_nDONE = 1; } bool ADC1_IsConversionDone() { // Start the conversion return ((bool)(!ADCON0bits.GO_nDONE)); } adc_result_t ADC1_GetConversionResult(void) { // Conversion finished, return the result return ((adc_result_t)((ADRESH << 8) + ADRESL)); } adc_result_t ADC1_GetConversion(adc_channel_t channel) { // select the A/D channel ADCON0bits.CHS = channel; // Turn on the ADC module ADCON0bits.ADON = 1; // Acquisition time delay __delay_us(ACQ_US_DELAY); // Start the conversion ADCON0bits.GO_nDONE = 1; // Wait for the conversion to finish while (ADCON0bits.GO_nDONE) { } //GdS: turn ADC off ADCON0bits.ADON = 0; // Conversion finished, return the result return ((adc_result_t)((ADRESH << 8) + ADRESL)); } void ADC1_TemperatureAcquisitionDelay(void) { __delay_us(200); } /** End of File */