You are on page 1of 2

/*

* File: main.c
* Author: luisda
*
* Created on 22 de julio de 2014, 08:56 AM
*/
#include <stdio.h>
#include <stdlib.h>
#include <xc.h>
// PIC16F1827 Configuration Bit Settings
// 'C' source line config statements
#include <xc.h>
// #pragma config statements should precede project file includes.
// Use project enums instead of #define for ON and OFF.
// CONFIG1
#pragma config FOSC = INTOSC // Oscillator Selection (INTOSC oscillator: I/O
function on CLKIN pin)
#pragma config WDTE = ON // Watchdog Timer Enable (WDT enabled)
#pragma config PWRTE = OFF // Power-up Timer Enable (PWRT disabled)
#pragma config MCLRE = OFF // MCLR Pin Function Select (MCLR/VPP pin functi
on is digital input)
#pragma config CP = ON // Flash Program Memory Code Protection (Program
memory code protection is enabled)
#pragma config CPD = OFF // Data Memory Code Protection (Data memory code
protection is disabled)
#pragma config BOREN = ON // Brown-out Reset Enable (Brown-out Reset enabl
ed)
#pragma config CLKOUTEN = OFF // Clock Out Enable (CLKOUT function is disabled
. I/O or oscillator function on the CLKOUT pin)
#pragma config IESO = ON // Internal/External Switchover (Internal/Extern
al Switchover mode is enabled)
#pragma config FCMEN = ON // Fail-Safe Clock Monitor Enable (Fail-Safe Clo
ck Monitor is enabled)
// CONFIG2
#pragma config WRT = OFF // Flash Memory Self-Write Protection (Write pro
tection off)
#pragma config PLLEN = ON // PLL Enable (4x PLL enabled)
#pragma config STVREN = ON // Stack Overflow/Underflow Reset Enable (Stack
Overflow or Underflow will cause a Reset)
#pragma config BORV = LO // Brown-out Reset Voltage Selection (Brown-out
Reset Voltage (Vbor), low trip point selected.)
#pragma config LVP = OFF // Low-Voltage Programming Enable (High-voltage
on MCLR/VPP must be used for programming)
//#include "ADC.h"
#include "pwm.h"
#define _XTAL_FREQ 4000000
int main(int argc, char** argv) {
//TRISA = 1; ANSELA=1;
TRISB = 0; ANSELB=0;
OSCCONbits.IRCF = 0B1101;
conf_ccp1();
conf_ccp2();
pwm_ccp1(10);
pwm_ccp2(25);
return (EXIT_SUCCESS);
}

You might also like