Estoy tratando de configurar el oscilador interno en mi PIC para que oscile a 16MHz y estoy tratando de probar si está funcionando correctamente parpadeando un LED. Como lo entiendo, cada comando toma 4 ciclos de reloj para ejecutarse, y tengo dos declaraciones en mi bucle while. Incremento mi contador y tengo una instrucción if para verificar si el contador ha alcanzado 4000000 todavía. Si lo ha alcanzado, entonces cambia el LED y reinicia el contador.
Si tanto el incremento como la instrucción toman 4 ciclos de reloj para ejecutarse, eso significa que el LED debería alternar aproximadamente una vez cada 2 segundos, ya que debería tomar aproximadamente 32000000 ciclos de reloj para i igual a 4000000. Sin embargo, mi LED solo está alternando una vez cada 20 segundos ¿Podría alguien decirme qué estoy haciendo mal o qué no entiendo?
// PIC12F1822 Configuration Bit Settings
// 'C' source line config statements
// CONFIG1
#pragma config FOSC = INTOSC // Oscillator Selection (INTOSC oscillator: I/O function on CLKIN pin)
#pragma config WDTE = OFF // Watchdog Timer Enable (WDT disabled)
#pragma config PWRTE = OFF // Power-up Timer Enable (PWRT disabled)
#pragma config MCLRE = OFF // MCLR Pin Function Select (MCLR/VPP pin function is digital input)
#pragma config CP = OFF // Flash Program Memory Code Protection (Program memory code protection is disabled)
#pragma config CPD = OFF // Data Memory Code Protection (Data memory code protection is disabled)
#pragma config BOREN = OFF // Brown-out Reset Enable (Brown-out Reset disabled)
#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/External Switchover mode is enabled)
#pragma config FCMEN = ON // Fail-Safe Clock Monitor Enable (Fail-Safe Clock Monitor is enabled)
// CONFIG2
#pragma config WRT = OFF // Flash Memory Self-Write Protection (Write protection 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 = ON // Low-Voltage Programming Enable (Low-voltage programming enabled)
// #pragma config statements should precede project file includes.
// Use project enums instead of #define for ON and OFF.
#include <xc.h>
#include <stdio.h>
#include <stdlib.h>
/*
*
*/
int main(int argc, char** argv) {
OSCCONbits.SCS=0b11;//needs to be 1x for high frequency oscillator
OSCCONbits.IRCF = 0b1111; //sets to 16MHz
unsigned long i=0x0;
TRISA=0X00; //portA as an output
PORTA=0X00; //LED off
while (1)
{
i++;//increment counter
if (i>4000000) //is time to toggle?
{
i=0; //reset counter
PORTA=~PORTA; //toggle LED
}
}
return (EXIT_SUCCESS);
}