Reputation: 53
I am trying to program pic16f73 microcontroller, but in configuration bit setting there are no options to select internal or external clock.
Can any one help me to find the solution.
Upvotes: 1
Views: 763
Reputation: 4288
The PIC16F73 don't have an internal oscillator:
The PIC16F7X can be operated in four different oscillator modes. The user can program two configuration bits (FOSC1 and FOSC0) to select one of these four modes:
This controller always needs an external pullup resistor (e.g. 10k) on the MCLR pin.
Upvotes: 1
Reputation: 361
From the datasheet, it looks like an external clock is required for PIC16F7X.
If you have a look at the datasheet Oscillator Configurations on the Configuration bits section (Page 91) there are four modes:
On figure 12-1 of the datasheet, there is how to configure CRYSTAL/CERAMIC RESONATOR.
By table 12-2 of the datasheet, the HS mode is for crystal frequency >= 4MHz the XT mode is for <=4MHz and the LP is for <= 200 KHz.
So the configuration mode is dependent on the crystal resonator connected. For more details datasheet has them all.
Upvotes: 0