Set Configuration Bits -PIC16f877.
How Configuration Bits are set
Each PIC MCU has it's own set of configuration bits. The Special Features section of the individual datasheets contains the definition for each of the bits.
The setting for each configuration bit is determined by directives written in the application software. The syntax for the configuration bit settings is available from the compiler manual. This tutorial will show how to generate proper configuration code without consulting the compiler manual for the proper syntax.
How to display the Configuration Bits window
From the main menu select Window ▶ PIC Memory Views ▶ Configuration Bits
The Configuration Bits window will open in a tab in the Output area under the editor.
How to set configuration bits and generate initialization code
In the configuration bits window, click on any value in the Option column and it will turn into a combo box that will allow you to select the value you desire.
The example on the left shows the WatchDog timer being changed from "enabled" to "disabled"
Click on the Generate Source Code to Outputbutton:
The IDE will automatically generate the code necessary to initialize all the configuration bits to the settings you specified in the window. This code may now be copied and pasted into one of your source files, or you may save it to its own file and add it to your project. To save the file, right click anywhere in the output window and select Save Asfrom the popup menu as shown in the screenshot at left.