Buenas tardes, queria saber si este PIC tiene un clock interno, y si es asi ¿como se configura?. Para hacer el programa estoy usando el compilador CCS y para bajar el programa el Pickit 3 con el software Pickit 3 Standalone. Este es el codigo que tengo (es solo un codigo de prueba, pero nisiquiera asi lo quiere hacer):
#include "D:\Mis Documentos\PIC\Proyectos CCS\PruebasLED.h"
void main()
{
for(;

{
output_high(PIN_B1);
delay_ms(200);
output_low(PIN_B1);
delay_ms(200);
}
}
Y estoy son los FUSES
#FUSES NOWDT //No Watch Dog Timer
#FUSES WDT128 //Watch Dog Timer uses 1:128 Postscale
#FUSES XT //Crystal osc <= 4mhz for PCM/PCH , 3mhz to 10 mhz for PCD
#FUSES NOPROTECT //Code not protected from reading
#FUSES IESO //Internal External Switch Over mode enabled
#FUSES NOBROWNOUT //No brownout reset
#FUSES BORV21 //Brownout reset at 2.1V
#FUSES NOPUT //No Power Up Timer
#FUSES NOCPD //No EE protection
#FUSES STVREN //Stack full/underflow will cause reset
#FUSES NODEBUG //No Debug mode for ICD
#FUSES NOLVP //No low voltage prgming, B3(PIC16) or B5(PIC18) used for I/O
#FUSES NOWRT //Program memory not write protected
#FUSES NOWRTD //Data EEPROM not write protected
#FUSES NOEBTR //Memory not protected from table reads
#FUSES NOCPB //No Boot Block code protection
#FUSES NOEBTRB //Boot block not protected from table reads
#FUSES NOWRTC //configuration not registers write protected
#FUSES NOWRTB //Boot block not write protected
#FUSES FCMEN //Fail-safe clock monitor enabled
#FUSES NOXINST //Extended set extension and Indexed Addressing mode disabled (Legacy mode)
#FUSES PBADEN //PORTB pins are configured as analog input channels on RESET
#FUSES LPT1OSC //Timer1 configured for low-power operation
#FUSES MCLR //Master Clear pin enabled
Estoy conectando MCLR a 5V, y estoy conectando ambos pines de VDD y VSS a 5V y GND respectivamente.
Alguien que pueda darme una mano.