Thursday, October 7, 2021

Internal Oscillator of PIC18F1220

 

Introduction

Clock source of PIC18F1220 is driven from external source or internal source. Using external crystal, clocking frequency is broad but it needs additional clocking circuitry and components.

Internal Oscillator of PIC18F1220
Oscillator type

External Crystal Oscillator

External clock source are Low Power (LP), Crystal/Resonator (XT), and High Speed (HS) crystal oscillator. Its frequency ranges from 32kHz to 20MHz.

Internal Oscillator of PIC18F1220
Crystal oscillator and its capacitors value used

Internal RC Oscillator

Internal oscillator is an inside RC oscillator that can be set in program. Its frequency ranges from 31kHz to 8MHz. To use this feature, programmer need to work with PIC18F1220 configuration bits, Oscillator Control Register, and Oscillator Tuning Register.

Internal Oscillator of PIC18F1220
Clock diagram of PIC18F1220

Using internal oscillator save components requirement, and on-board design space.

Setting Up in Program

Setting configuration bits of PIC18F1220 is a priority for internal oscillator.

Configuration Bits

There are up to 13 configuration registers in PIC18F1220. However CONFIGH1H (address 300001h) contains setting for internal oscillator.

Internal Oscillator of PIC18F1220
CONFIG1H Configuration Register

However in XC8 programmer use “#pragma config” directive. Programmer can select only internal oscillator only, or with I/O function on RA6 and RA7.

Registers Setting

There are two registers in SFR relate to internal oscillator.

Oscillator Tuning Registers – OSCTUNE

This register make a frequency tuning of internal oscillator between its lowest frequency and its highest frequency.

Internal Oscillator of PIC18F1220
Oscillator Tuning Registers – OSCTUNE

Oscillator Control Register – OSCCON

This register set system clock mode, switch between discrete frequency of internal oscillator, and status checking.

Internal Oscillator of PIC18F1220
Oscillator Control Register – OSCCON

Programming Example

We want to test selected 4MHz internal oscillator. LED connects to RA7 blinks at a specific rate. A push button connects to RA0 toggles an output LED on RA6 whenever it’s pressed.

Schematic Diagram

Since internal oscillator is used, there is no requirement to add external crystal oscillator.

Internal Oscillator of PIC18F1220
Schematic Diagram

C Programming

Port A is multiplexed with analog input function. User needs to disable this feature to make this port as a solely digital I/O.

C

Configuration bits contain setting for this controller especially internal oscillator setting. We choose internal oscillator with I/O function on both RA6 and RA7.

C

Click here to download this programming example package.


No comments:

Post a Comment

Search This Blog

Labels

25AA010A (1) 8051 (7) 93AA46B (1) ADC (30) Analog Comparator (1) Arduino (15) ARM (6) AT89C52 (7) ATMega32 (54) AVR (57) CCS PICC (28) DAC (1) DHT11 (2) Display (105) Distance Sensor (3) DS18B20 (3) dsPIC (2) dsPIC30F1010 (2) EEPROM (5) Environment Sensor (4) esp8266 (1) I2C (29) Input/Output (67) Interrupt (19) Keil (5) Keypad (10) LCD (46) Master/Slave (1) MAX7221 (1) MCP23017 (5) MCP23S17 (4) Meter (3) MikroC (2) Motor (15) MPLABX (66) Nokia 5110 LCD (3) OLED (2) One-Wire (6) Oscillator (8) PCB (6) PCD8544 (3) PCF8574 (5) PIC (107) PIC12F (2) PIC16F628A (2) PIC16F630 (1) PIC16F716 (3) PIC16F818 (10) PIC16F818/819 (2) PIC16F84A (15) PIC16F876A (1) PIC16F877A (9) PIC16F88 (1) PIC16F887 (60) PIC18 (19) PIC18F1220 (4) PIC18F2550 (3) PIC18F4550 (12) PWM (11) RTC (8) Sensor (10) SH1106 (1) Shift Register (11) Shift Registers (2) SPI (24) STM32 (6) STM32 Blue Pill (6) STM32CubeIDE (6) STM32F103C8T6 (6) SysTick (3) temperature sensor (11) Thermometer (21) Timer/Counter (30) TM1637 (2) UART (7) Ultrasonic (4) Voltmeter (7) WDT (1) XC16 (2) XC8 (94)