Typical fastest setup (80MHz with 1x divide, 20x multiply, 2 x divide)

Using an 8MHz crystal


#pragma config FPLLIDIV = DIV_2 //PLL Input Divider (Must produce 4-5MHz from crystal frequency)
#pragma config FPLLODIV = DIV_1 //PLL Output Divider
#pragma config FPLLMUL = MUL_20 //PLL Multiplier

//SYSTEMConfigPerformance(80000000ul); //Note this sets peripheral bus to '1' max speed (regardless of configuration bit setting) //Use PBCLK divider of 1:1 to calculate UART baud, timer tick etc

Reduced speed of 40MHz to reduce power consumption (40MHz with 2 x divide, 20x multiply, 2 x divide)


#pragma config FPLLIDIV = DIV_2 //PLL Input Divider (Must produce 4-5MHz from crystal frequency)
#pragma config FPLLODIV = DIV_2 //PLL Output Divider
#pragma config FPLLMUL = MUL_20 //PLL Multiplier

SYSTEMConfigPerformance(40000000ul); //<<

Reduced speed of 20MHz to reduce power consumption (20MHz with 2x divide, 20x multiply, 4 x divide)


	#pragma config FPLLIDIV = DIV_2			//PLL Input Divider
	#pragma config FPLLODIV = DIV_4			//PLL Output Divider
	#pragma config FPLLMUL = MUL_20			//PLL Multiplier

	SYSTEMConfigPerformance(20000000L);		//Note this sets peripheral bus to '1' max speed (regardless of configuration bit setting)

 

 

USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through mini sites like this. We hope you find the site helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support on this site. If you need help with a problem please use one of the many online forums.

Comments

Your email address will not be published. Required fields are marked *