-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfiguration_bits.c
33 lines (30 loc) · 2.15 KB
/
configuration_bits.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/******************************************************************************/
/* Main Files to Include */
/******************************************************************************/
#if defined(__XC)
#include <xc.h> /* XC8 General Include File */
#elif defined(HI_TECH_C)
#include <htc.h> /* HiTech General Include File */
#endif
/******************************************************************************/
/* Configuration Bits */
/* */
/* Refer to your Hi-Tech User Manual in the PICC installation directory */
/* /doc folder for more information on filling in configuration bits. */
/* In addition, configuration bit mnemonics can be found in your */
/* PICC\version\include\<processor name>.h file for your device. The XC8 */
/* compiler contains documentation on the configuration bit macros within */
/* the compiler installation /docs folder in a file called */
/* pic18_chipinfo.html. */
/* */
/* For additional information about what the hardware configurations mean in */
/* terms of device operation, refer to the device datasheet. */
/* */
/* A feature of MPLAB X is the 'Generate Source Code to Output' utility in */
/* the Configuration Bits window. Under Window > PIC Memory Views > */
/* Configuration Bits, a user controllable configuration bits window is */
/* available to Generate Configuration Bits source code which the user can */
/* paste into this project. */
/* */
/******************************************************************************/
/* TODO Fill in your config bits here. Use the configuration bits generator/ */