struct / union in initializer, RFE #901.
[sdcc.git] / sdcc / device / non-free / include / pic14 / pic16f687.h
blob8718b77cc043bb6fc34c8bf74747a708ee9696be
1 /*
2 * This declarations of the PIC16F687 MCU.
4 * This file is part of the GNU PIC library for SDCC, originally
5 * created by Molnar Karoly <molnarkaroly@users.sf.net> 2016.
7 * This file is generated automatically by the cinc2h.pl, 2016-04-13 17:22:57 UTC.
9 * SDCC is licensed under the GNU Public license (GPL) v2. Note that
10 * this license covers the code to the compiler and other executables,
11 * but explicitly does not cover any code or objects generated by sdcc.
13 * For pic device libraries and header files which are derived from
14 * Microchip header (.inc) and linker script (.lkr) files Microchip
15 * requires that "The header files should state that they are only to be
16 * used with authentic Microchip devices" which makes them incompatible
17 * with the GPL. Pic device libraries and header files are located at
18 * non-free/lib and non-free/include directories respectively.
19 * Sdcc should be run with the --use-non-free command line option in
20 * order to include non-free header files and libraries.
22 * See http://sdcc.sourceforge.net/ for the latest information on sdcc.
25 #ifndef __PIC16F687_H__
26 #define __PIC16F687_H__
28 //==============================================================================
30 // Register Addresses
32 //==============================================================================
34 #ifndef NO_ADDR_DEFINES
36 #define INDF_ADDR 0x0000
37 #define TMR0_ADDR 0x0001
38 #define PCL_ADDR 0x0002
39 #define STATUS_ADDR 0x0003
40 #define FSR_ADDR 0x0004
41 #define PORTA_ADDR 0x0005
42 #define PORTB_ADDR 0x0006
43 #define PORTC_ADDR 0x0007
44 #define PCLATH_ADDR 0x000A
45 #define INTCON_ADDR 0x000B
46 #define PIR1_ADDR 0x000C
47 #define PIR2_ADDR 0x000D
48 #define TMR1_ADDR 0x000E
49 #define TMR1L_ADDR 0x000E
50 #define TMR1H_ADDR 0x000F
51 #define T1CON_ADDR 0x0010
52 #define SSPBUF_ADDR 0x0013
53 #define SSPCON_ADDR 0x0014
54 #define RCSTA_ADDR 0x0018
55 #define TXREG_ADDR 0x0019
56 #define RCREG_ADDR 0x001A
57 #define ADRESH_ADDR 0x001E
58 #define ADCON0_ADDR 0x001F
59 #define OPTION_REG_ADDR 0x0081
60 #define TRISA_ADDR 0x0085
61 #define TRISB_ADDR 0x0086
62 #define TRISC_ADDR 0x0087
63 #define PIE1_ADDR 0x008C
64 #define PIE2_ADDR 0x008D
65 #define PCON_ADDR 0x008E
66 #define OSCCON_ADDR 0x008F
67 #define OSCTUNE_ADDR 0x0090
68 #define MSK_ADDR 0x0093
69 #define SSPADD_ADDR 0x0093
70 #define SSPMSK_ADDR 0x0093
71 #define SSPSTAT_ADDR 0x0094
72 #define WPU_ADDR 0x0095
73 #define WPUA_ADDR 0x0095
74 #define IOC_ADDR 0x0096
75 #define IOCA_ADDR 0x0096
76 #define WDTCON_ADDR 0x0097
77 #define TXSTA_ADDR 0x0098
78 #define SPBRG_ADDR 0x0099
79 #define SPBRGH_ADDR 0x009A
80 #define BAUDCTL_ADDR 0x009B
81 #define ADRESL_ADDR 0x009E
82 #define ADCON1_ADDR 0x009F
83 #define EEDAT_ADDR 0x010C
84 #define EEDATA_ADDR 0x010C
85 #define EEADR_ADDR 0x010D
86 #define WPUB_ADDR 0x0115
87 #define IOCB_ADDR 0x0116
88 #define VRCON_ADDR 0x0118
89 #define CM1CON0_ADDR 0x0119
90 #define CM2CON0_ADDR 0x011A
91 #define CM2CON1_ADDR 0x011B
92 #define ANSEL_ADDR 0x011E
93 #define ANSELH_ADDR 0x011F
94 #define EECON1_ADDR 0x018C
95 #define EECON2_ADDR 0x018D
96 #define SRCON_ADDR 0x019E
98 #endif // #ifndef NO_ADDR_DEFINES
100 //==============================================================================
102 // Register Definitions
104 //==============================================================================
106 extern __at(0x0000) __sfr INDF;
107 extern __at(0x0001) __sfr TMR0;
108 extern __at(0x0002) __sfr PCL;
110 //==============================================================================
111 // STATUS Bits
113 extern __at(0x0003) __sfr STATUS;
115 typedef union
117 struct
119 unsigned C : 1;
120 unsigned DC : 1;
121 unsigned Z : 1;
122 unsigned NOT_PD : 1;
123 unsigned NOT_TO : 1;
124 unsigned RP0 : 1;
125 unsigned RP1 : 1;
126 unsigned IRP : 1;
129 struct
131 unsigned : 5;
132 unsigned RP : 2;
133 unsigned : 1;
135 } __STATUSbits_t;
137 extern __at(0x0003) volatile __STATUSbits_t STATUSbits;
139 #define _C 0x01
140 #define _DC 0x02
141 #define _Z 0x04
142 #define _NOT_PD 0x08
143 #define _NOT_TO 0x10
144 #define _RP0 0x20
145 #define _RP1 0x40
146 #define _IRP 0x80
148 //==============================================================================
150 extern __at(0x0004) __sfr FSR;
152 //==============================================================================
153 // PORTA Bits
155 extern __at(0x0005) __sfr PORTA;
157 typedef union
159 struct
161 unsigned RA0 : 1;
162 unsigned RA1 : 1;
163 unsigned RA2 : 1;
164 unsigned RA3 : 1;
165 unsigned RA4 : 1;
166 unsigned RA5 : 1;
167 unsigned : 1;
168 unsigned : 1;
171 struct
173 unsigned RA : 6;
174 unsigned : 2;
176 } __PORTAbits_t;
178 extern __at(0x0005) volatile __PORTAbits_t PORTAbits;
180 #define _RA0 0x01
181 #define _RA1 0x02
182 #define _RA2 0x04
183 #define _RA3 0x08
184 #define _RA4 0x10
185 #define _RA5 0x20
187 //==============================================================================
190 //==============================================================================
191 // PORTB Bits
193 extern __at(0x0006) __sfr PORTB;
195 typedef struct
197 unsigned : 1;
198 unsigned : 1;
199 unsigned : 1;
200 unsigned : 1;
201 unsigned RB4 : 1;
202 unsigned RB5 : 1;
203 unsigned RB6 : 1;
204 unsigned RB7 : 1;
205 } __PORTBbits_t;
207 extern __at(0x0006) volatile __PORTBbits_t PORTBbits;
209 #define _RB4 0x10
210 #define _RB5 0x20
211 #define _RB6 0x40
212 #define _RB7 0x80
214 //==============================================================================
217 //==============================================================================
218 // PORTC Bits
220 extern __at(0x0007) __sfr PORTC;
222 typedef struct
224 unsigned RC0 : 1;
225 unsigned RC1 : 1;
226 unsigned RC2 : 1;
227 unsigned RC3 : 1;
228 unsigned RC4 : 1;
229 unsigned RC5 : 1;
230 unsigned RC6 : 1;
231 unsigned RC7 : 1;
232 } __PORTCbits_t;
234 extern __at(0x0007) volatile __PORTCbits_t PORTCbits;
236 #define _RC0 0x01
237 #define _RC1 0x02
238 #define _RC2 0x04
239 #define _RC3 0x08
240 #define _RC4 0x10
241 #define _RC5 0x20
242 #define _RC6 0x40
243 #define _RC7 0x80
245 //==============================================================================
247 extern __at(0x000A) __sfr PCLATH;
249 //==============================================================================
250 // INTCON Bits
252 extern __at(0x000B) __sfr INTCON;
254 typedef struct
256 unsigned RABIF : 1;
257 unsigned INTF : 1;
258 unsigned T0IF : 1;
259 unsigned RABIE : 1;
260 unsigned INTE : 1;
261 unsigned T0IE : 1;
262 unsigned PEIE : 1;
263 unsigned GIE : 1;
264 } __INTCONbits_t;
266 extern __at(0x000B) volatile __INTCONbits_t INTCONbits;
268 #define _RABIF 0x01
269 #define _INTF 0x02
270 #define _T0IF 0x04
271 #define _RABIE 0x08
272 #define _INTE 0x10
273 #define _T0IE 0x20
274 #define _PEIE 0x40
275 #define _GIE 0x80
277 //==============================================================================
280 //==============================================================================
281 // PIR1 Bits
283 extern __at(0x000C) __sfr PIR1;
285 typedef union
287 struct
289 unsigned TMR1IF : 1;
290 unsigned : 1;
291 unsigned : 1;
292 unsigned SSPIF : 1;
293 unsigned TXIF : 1;
294 unsigned RCIF : 1;
295 unsigned ADIF : 1;
296 unsigned : 1;
299 struct
301 unsigned T1IF : 1;
302 unsigned : 1;
303 unsigned : 1;
304 unsigned : 1;
305 unsigned : 1;
306 unsigned : 1;
307 unsigned : 1;
308 unsigned : 1;
310 } __PIR1bits_t;
312 extern __at(0x000C) volatile __PIR1bits_t PIR1bits;
314 #define _TMR1IF 0x01
315 #define _T1IF 0x01
316 #define _SSPIF 0x08
317 #define _TXIF 0x10
318 #define _RCIF 0x20
319 #define _ADIF 0x40
321 //==============================================================================
324 //==============================================================================
325 // PIR2 Bits
327 extern __at(0x000D) __sfr PIR2;
329 typedef struct
331 unsigned : 1;
332 unsigned : 1;
333 unsigned : 1;
334 unsigned : 1;
335 unsigned EEIF : 1;
336 unsigned C1IF : 1;
337 unsigned C2IF : 1;
338 unsigned OSFIF : 1;
339 } __PIR2bits_t;
341 extern __at(0x000D) volatile __PIR2bits_t PIR2bits;
343 #define _EEIF 0x10
344 #define _C1IF 0x20
345 #define _C2IF 0x40
346 #define _OSFIF 0x80
348 //==============================================================================
350 extern __at(0x000E) __sfr TMR1;
351 extern __at(0x000E) __sfr TMR1L;
352 extern __at(0x000F) __sfr TMR1H;
354 //==============================================================================
355 // T1CON Bits
357 extern __at(0x0010) __sfr T1CON;
359 typedef union
361 struct
363 unsigned TMR1ON : 1;
364 unsigned TMR1CS : 1;
365 unsigned NOT_T1SYNC : 1;
366 unsigned T1OSCEN : 1;
367 unsigned T1CKPS0 : 1;
368 unsigned T1CKPS1 : 1;
369 unsigned TMR1GE : 1;
370 unsigned T1GINV : 1;
373 struct
375 unsigned : 4;
376 unsigned T1CKPS : 2;
377 unsigned : 2;
379 } __T1CONbits_t;
381 extern __at(0x0010) volatile __T1CONbits_t T1CONbits;
383 #define _TMR1ON 0x01
384 #define _TMR1CS 0x02
385 #define _NOT_T1SYNC 0x04
386 #define _T1OSCEN 0x08
387 #define _T1CKPS0 0x10
388 #define _T1CKPS1 0x20
389 #define _TMR1GE 0x40
390 #define _T1GINV 0x80
392 //==============================================================================
394 extern __at(0x0013) __sfr SSPBUF;
396 //==============================================================================
397 // SSPCON Bits
399 extern __at(0x0014) __sfr SSPCON;
401 typedef union
403 struct
405 unsigned SSPM0 : 1;
406 unsigned SSPM1 : 1;
407 unsigned SSPM2 : 1;
408 unsigned SSPM3 : 1;
409 unsigned CKP : 1;
410 unsigned SSPEN : 1;
411 unsigned SSPOV : 1;
412 unsigned WCOL : 1;
415 struct
417 unsigned SSPM : 4;
418 unsigned : 4;
420 } __SSPCONbits_t;
422 extern __at(0x0014) volatile __SSPCONbits_t SSPCONbits;
424 #define _SSPM0 0x01
425 #define _SSPM1 0x02
426 #define _SSPM2 0x04
427 #define _SSPM3 0x08
428 #define _CKP 0x10
429 #define _SSPEN 0x20
430 #define _SSPOV 0x40
431 #define _WCOL 0x80
433 //==============================================================================
436 //==============================================================================
437 // RCSTA Bits
439 extern __at(0x0018) __sfr RCSTA;
441 typedef struct
443 unsigned RX9D : 1;
444 unsigned OERR : 1;
445 unsigned FERR : 1;
446 unsigned ADDEN : 1;
447 unsigned CREN : 1;
448 unsigned SREN : 1;
449 unsigned RX9 : 1;
450 unsigned SPEN : 1;
451 } __RCSTAbits_t;
453 extern __at(0x0018) volatile __RCSTAbits_t RCSTAbits;
455 #define _RX9D 0x01
456 #define _OERR 0x02
457 #define _FERR 0x04
458 #define _ADDEN 0x08
459 #define _CREN 0x10
460 #define _SREN 0x20
461 #define _RX9 0x40
462 #define _SPEN 0x80
464 //==============================================================================
466 extern __at(0x0019) __sfr TXREG;
467 extern __at(0x001A) __sfr RCREG;
468 extern __at(0x001E) __sfr ADRESH;
470 //==============================================================================
471 // ADCON0 Bits
473 extern __at(0x001F) __sfr ADCON0;
475 typedef union
477 struct
479 unsigned ADON : 1;
480 unsigned GO_NOT_DONE : 1;
481 unsigned CHS0 : 1;
482 unsigned CHS1 : 1;
483 unsigned CHS2 : 1;
484 unsigned CHS3 : 1;
485 unsigned VCFG : 1;
486 unsigned ADFM : 1;
489 struct
491 unsigned : 1;
492 unsigned GO : 1;
493 unsigned : 1;
494 unsigned : 1;
495 unsigned : 1;
496 unsigned : 1;
497 unsigned : 1;
498 unsigned : 1;
501 struct
503 unsigned : 1;
504 unsigned NOT_DONE : 1;
505 unsigned : 1;
506 unsigned : 1;
507 unsigned : 1;
508 unsigned : 1;
509 unsigned : 1;
510 unsigned : 1;
513 struct
515 unsigned : 1;
516 unsigned GO_DONE : 1;
517 unsigned : 1;
518 unsigned : 1;
519 unsigned : 1;
520 unsigned : 1;
521 unsigned : 1;
522 unsigned : 1;
525 struct
527 unsigned : 2;
528 unsigned CHS : 4;
529 unsigned : 2;
531 } __ADCON0bits_t;
533 extern __at(0x001F) volatile __ADCON0bits_t ADCON0bits;
535 #define _ADON 0x01
536 #define _GO_NOT_DONE 0x02
537 #define _GO 0x02
538 #define _NOT_DONE 0x02
539 #define _GO_DONE 0x02
540 #define _CHS0 0x04
541 #define _CHS1 0x08
542 #define _CHS2 0x10
543 #define _CHS3 0x20
544 #define _VCFG 0x40
545 #define _ADFM 0x80
547 //==============================================================================
550 //==============================================================================
551 // OPTION_REG Bits
553 extern __at(0x0081) __sfr OPTION_REG;
555 typedef union
557 struct
559 unsigned PS0 : 1;
560 unsigned PS1 : 1;
561 unsigned PS2 : 1;
562 unsigned PSA : 1;
563 unsigned T0SE : 1;
564 unsigned T0CS : 1;
565 unsigned INTEDG : 1;
566 unsigned NOT_RABPU : 1;
569 struct
571 unsigned PS : 3;
572 unsigned : 5;
574 } __OPTION_REGbits_t;
576 extern __at(0x0081) volatile __OPTION_REGbits_t OPTION_REGbits;
578 #define _PS0 0x01
579 #define _PS1 0x02
580 #define _PS2 0x04
581 #define _PSA 0x08
582 #define _T0SE 0x10
583 #define _T0CS 0x20
584 #define _INTEDG 0x40
585 #define _NOT_RABPU 0x80
587 //==============================================================================
590 //==============================================================================
591 // TRISA Bits
593 extern __at(0x0085) __sfr TRISA;
595 typedef union
597 struct
599 unsigned TRISA0 : 1;
600 unsigned TRISA1 : 1;
601 unsigned TRISA2 : 1;
602 unsigned TRISA3 : 1;
603 unsigned TRISA4 : 1;
604 unsigned TRISA5 : 1;
605 unsigned : 1;
606 unsigned : 1;
609 struct
611 unsigned TRISA : 6;
612 unsigned : 2;
614 } __TRISAbits_t;
616 extern __at(0x0085) volatile __TRISAbits_t TRISAbits;
618 #define _TRISA0 0x01
619 #define _TRISA1 0x02
620 #define _TRISA2 0x04
621 #define _TRISA3 0x08
622 #define _TRISA4 0x10
623 #define _TRISA5 0x20
625 //==============================================================================
628 //==============================================================================
629 // TRISB Bits
631 extern __at(0x0086) __sfr TRISB;
633 typedef struct
635 unsigned : 1;
636 unsigned : 1;
637 unsigned : 1;
638 unsigned : 1;
639 unsigned TRISB4 : 1;
640 unsigned TRISB5 : 1;
641 unsigned TRISB6 : 1;
642 unsigned TRISB7 : 1;
643 } __TRISBbits_t;
645 extern __at(0x0086) volatile __TRISBbits_t TRISBbits;
647 #define _TRISB4 0x10
648 #define _TRISB5 0x20
649 #define _TRISB6 0x40
650 #define _TRISB7 0x80
652 //==============================================================================
655 //==============================================================================
656 // TRISC Bits
658 extern __at(0x0087) __sfr TRISC;
660 typedef struct
662 unsigned TRISC0 : 1;
663 unsigned TRISC1 : 1;
664 unsigned TRISC2 : 1;
665 unsigned TRISC3 : 1;
666 unsigned TRISC4 : 1;
667 unsigned TRISC5 : 1;
668 unsigned TRISC6 : 1;
669 unsigned TRISC7 : 1;
670 } __TRISCbits_t;
672 extern __at(0x0087) volatile __TRISCbits_t TRISCbits;
674 #define _TRISC0 0x01
675 #define _TRISC1 0x02
676 #define _TRISC2 0x04
677 #define _TRISC3 0x08
678 #define _TRISC4 0x10
679 #define _TRISC5 0x20
680 #define _TRISC6 0x40
681 #define _TRISC7 0x80
683 //==============================================================================
686 //==============================================================================
687 // PIE1 Bits
689 extern __at(0x008C) __sfr PIE1;
691 typedef union
693 struct
695 unsigned TMR1IE : 1;
696 unsigned : 1;
697 unsigned : 1;
698 unsigned SSPIE : 1;
699 unsigned TXIE : 1;
700 unsigned RCIE : 1;
701 unsigned ADIE : 1;
702 unsigned : 1;
705 struct
707 unsigned T1IE : 1;
708 unsigned : 1;
709 unsigned : 1;
710 unsigned : 1;
711 unsigned : 1;
712 unsigned : 1;
713 unsigned : 1;
714 unsigned : 1;
716 } __PIE1bits_t;
718 extern __at(0x008C) volatile __PIE1bits_t PIE1bits;
720 #define _TMR1IE 0x01
721 #define _T1IE 0x01
722 #define _SSPIE 0x08
723 #define _TXIE 0x10
724 #define _RCIE 0x20
725 #define _ADIE 0x40
727 //==============================================================================
730 //==============================================================================
731 // PIE2 Bits
733 extern __at(0x008D) __sfr PIE2;
735 typedef struct
737 unsigned : 1;
738 unsigned : 1;
739 unsigned : 1;
740 unsigned : 1;
741 unsigned EEIE : 1;
742 unsigned C1IE : 1;
743 unsigned C2IE : 1;
744 unsigned OSFIE : 1;
745 } __PIE2bits_t;
747 extern __at(0x008D) volatile __PIE2bits_t PIE2bits;
749 #define _EEIE 0x10
750 #define _C1IE 0x20
751 #define _C2IE 0x40
752 #define _OSFIE 0x80
754 //==============================================================================
757 //==============================================================================
758 // PCON Bits
760 extern __at(0x008E) __sfr PCON;
762 typedef struct
764 unsigned NOT_BOR : 1;
765 unsigned NOT_POR : 1;
766 unsigned : 1;
767 unsigned : 1;
768 unsigned SBOREN : 1;
769 unsigned ULPWUE : 1;
770 unsigned : 1;
771 unsigned : 1;
772 } __PCONbits_t;
774 extern __at(0x008E) volatile __PCONbits_t PCONbits;
776 #define _NOT_BOR 0x01
777 #define _NOT_POR 0x02
778 #define _SBOREN 0x10
779 #define _ULPWUE 0x20
781 //==============================================================================
784 //==============================================================================
785 // OSCCON Bits
787 extern __at(0x008F) __sfr OSCCON;
789 typedef union
791 struct
793 unsigned SCS : 1;
794 unsigned LTS : 1;
795 unsigned HTS : 1;
796 unsigned OSTS : 1;
797 unsigned IRCF0 : 1;
798 unsigned IRCF1 : 1;
799 unsigned IRCF2 : 1;
800 unsigned : 1;
803 struct
805 unsigned : 4;
806 unsigned IRCF : 3;
807 unsigned : 1;
809 } __OSCCONbits_t;
811 extern __at(0x008F) volatile __OSCCONbits_t OSCCONbits;
813 #define _SCS 0x01
814 #define _LTS 0x02
815 #define _HTS 0x04
816 #define _OSTS 0x08
817 #define _IRCF0 0x10
818 #define _IRCF1 0x20
819 #define _IRCF2 0x40
821 //==============================================================================
824 //==============================================================================
825 // OSCTUNE Bits
827 extern __at(0x0090) __sfr OSCTUNE;
829 typedef union
831 struct
833 unsigned TUN0 : 1;
834 unsigned TUN1 : 1;
835 unsigned TUN2 : 1;
836 unsigned TUN3 : 1;
837 unsigned TUN4 : 1;
838 unsigned : 1;
839 unsigned : 1;
840 unsigned : 1;
843 struct
845 unsigned TUN : 5;
846 unsigned : 3;
848 } __OSCTUNEbits_t;
850 extern __at(0x0090) volatile __OSCTUNEbits_t OSCTUNEbits;
852 #define _TUN0 0x01
853 #define _TUN1 0x02
854 #define _TUN2 0x04
855 #define _TUN3 0x08
856 #define _TUN4 0x10
858 //==============================================================================
861 //==============================================================================
862 // MSK Bits
864 extern __at(0x0093) __sfr MSK;
866 typedef struct
868 unsigned MSK0 : 1;
869 unsigned MSK1 : 1;
870 unsigned MSK2 : 1;
871 unsigned MSK3 : 1;
872 unsigned MSK4 : 1;
873 unsigned MSK5 : 1;
874 unsigned MSK6 : 1;
875 unsigned MSK7 : 1;
876 } __MSKbits_t;
878 extern __at(0x0093) volatile __MSKbits_t MSKbits;
880 #define _MSK0 0x01
881 #define _MSK1 0x02
882 #define _MSK2 0x04
883 #define _MSK3 0x08
884 #define _MSK4 0x10
885 #define _MSK5 0x20
886 #define _MSK6 0x40
887 #define _MSK7 0x80
889 //==============================================================================
891 extern __at(0x0093) __sfr SSPADD;
893 //==============================================================================
894 // SSPMSK Bits
896 extern __at(0x0093) __sfr SSPMSK;
898 typedef struct
900 unsigned MSK0 : 1;
901 unsigned MSK1 : 1;
902 unsigned MSK2 : 1;
903 unsigned MSK3 : 1;
904 unsigned MSK4 : 1;
905 unsigned MSK5 : 1;
906 unsigned MSK6 : 1;
907 unsigned MSK7 : 1;
908 } __SSPMSKbits_t;
910 extern __at(0x0093) volatile __SSPMSKbits_t SSPMSKbits;
912 #define _SSPMSK_MSK0 0x01
913 #define _SSPMSK_MSK1 0x02
914 #define _SSPMSK_MSK2 0x04
915 #define _SSPMSK_MSK3 0x08
916 #define _SSPMSK_MSK4 0x10
917 #define _SSPMSK_MSK5 0x20
918 #define _SSPMSK_MSK6 0x40
919 #define _SSPMSK_MSK7 0x80
921 //==============================================================================
924 //==============================================================================
925 // SSPSTAT Bits
927 extern __at(0x0094) __sfr SSPSTAT;
929 typedef union
931 struct
933 unsigned BF : 1;
934 unsigned UA : 1;
935 unsigned R_NOT_W : 1;
936 unsigned S : 1;
937 unsigned P : 1;
938 unsigned D_NOT_A : 1;
939 unsigned CKE : 1;
940 unsigned SMP : 1;
943 struct
945 unsigned : 1;
946 unsigned : 1;
947 unsigned R : 1;
948 unsigned I2C_START : 1;
949 unsigned I2C_STOP : 1;
950 unsigned D : 1;
951 unsigned : 1;
952 unsigned : 1;
955 struct
957 unsigned : 1;
958 unsigned : 1;
959 unsigned I2C_READ : 1;
960 unsigned : 1;
961 unsigned : 1;
962 unsigned I2C_DATA : 1;
963 unsigned : 1;
964 unsigned : 1;
967 struct
969 unsigned : 1;
970 unsigned : 1;
971 unsigned NOT_W : 1;
972 unsigned : 1;
973 unsigned : 1;
974 unsigned NOT_A : 1;
975 unsigned : 1;
976 unsigned : 1;
979 struct
981 unsigned : 1;
982 unsigned : 1;
983 unsigned NOT_WRITE : 1;
984 unsigned : 1;
985 unsigned : 1;
986 unsigned NOT_ADDRESS : 1;
987 unsigned : 1;
988 unsigned : 1;
991 struct
993 unsigned : 1;
994 unsigned : 1;
995 unsigned R_W : 1;
996 unsigned : 1;
997 unsigned : 1;
998 unsigned D_A : 1;
999 unsigned : 1;
1000 unsigned : 1;
1003 struct
1005 unsigned : 1;
1006 unsigned : 1;
1007 unsigned READ_WRITE : 1;
1008 unsigned : 1;
1009 unsigned : 1;
1010 unsigned DATA_ADDRESS : 1;
1011 unsigned : 1;
1012 unsigned : 1;
1014 } __SSPSTATbits_t;
1016 extern __at(0x0094) volatile __SSPSTATbits_t SSPSTATbits;
1018 #define _BF 0x01
1019 #define _UA 0x02
1020 #define _R_NOT_W 0x04
1021 #define _R 0x04
1022 #define _I2C_READ 0x04
1023 #define _NOT_W 0x04
1024 #define _NOT_WRITE 0x04
1025 #define _R_W 0x04
1026 #define _READ_WRITE 0x04
1027 #define _S 0x08
1028 #define _I2C_START 0x08
1029 #define _P 0x10
1030 #define _I2C_STOP 0x10
1031 #define _D_NOT_A 0x20
1032 #define _D 0x20
1033 #define _I2C_DATA 0x20
1034 #define _NOT_A 0x20
1035 #define _NOT_ADDRESS 0x20
1036 #define _D_A 0x20
1037 #define _DATA_ADDRESS 0x20
1038 #define _CKE 0x40
1039 #define _SMP 0x80
1041 //==============================================================================
1044 //==============================================================================
1045 // WPU Bits
1047 extern __at(0x0095) __sfr WPU;
1049 typedef union
1051 struct
1053 unsigned WPUA0 : 1;
1054 unsigned WPUA1 : 1;
1055 unsigned WPUA2 : 1;
1056 unsigned : 1;
1057 unsigned WPUA4 : 1;
1058 unsigned WPUA5 : 1;
1059 unsigned : 1;
1060 unsigned : 1;
1063 struct
1065 unsigned WPU0 : 1;
1066 unsigned WPU1 : 1;
1067 unsigned WPU2 : 1;
1068 unsigned : 1;
1069 unsigned WPU4 : 1;
1070 unsigned WPU5 : 1;
1071 unsigned : 1;
1072 unsigned : 1;
1074 } __WPUbits_t;
1076 extern __at(0x0095) volatile __WPUbits_t WPUbits;
1078 #define _WPUA0 0x01
1079 #define _WPU0 0x01
1080 #define _WPUA1 0x02
1081 #define _WPU1 0x02
1082 #define _WPUA2 0x04
1083 #define _WPU2 0x04
1084 #define _WPUA4 0x10
1085 #define _WPU4 0x10
1086 #define _WPUA5 0x20
1087 #define _WPU5 0x20
1089 //==============================================================================
1092 //==============================================================================
1093 // WPUA Bits
1095 extern __at(0x0095) __sfr WPUA;
1097 typedef union
1099 struct
1101 unsigned WPUA0 : 1;
1102 unsigned WPUA1 : 1;
1103 unsigned WPUA2 : 1;
1104 unsigned : 1;
1105 unsigned WPUA4 : 1;
1106 unsigned WPUA5 : 1;
1107 unsigned : 1;
1108 unsigned : 1;
1111 struct
1113 unsigned WPU0 : 1;
1114 unsigned WPU1 : 1;
1115 unsigned WPU2 : 1;
1116 unsigned : 1;
1117 unsigned WPU4 : 1;
1118 unsigned WPU5 : 1;
1119 unsigned : 1;
1120 unsigned : 1;
1122 } __WPUAbits_t;
1124 extern __at(0x0095) volatile __WPUAbits_t WPUAbits;
1126 #define _WPUA_WPUA0 0x01
1127 #define _WPUA_WPU0 0x01
1128 #define _WPUA_WPUA1 0x02
1129 #define _WPUA_WPU1 0x02
1130 #define _WPUA_WPUA2 0x04
1131 #define _WPUA_WPU2 0x04
1132 #define _WPUA_WPUA4 0x10
1133 #define _WPUA_WPU4 0x10
1134 #define _WPUA_WPUA5 0x20
1135 #define _WPUA_WPU5 0x20
1137 //==============================================================================
1140 //==============================================================================
1141 // IOC Bits
1143 extern __at(0x0096) __sfr IOC;
1145 typedef union
1147 struct
1149 unsigned IOCA0 : 1;
1150 unsigned IOCA1 : 1;
1151 unsigned IOCA2 : 1;
1152 unsigned IOCA3 : 1;
1153 unsigned IOCA4 : 1;
1154 unsigned IOCA5 : 1;
1155 unsigned : 1;
1156 unsigned : 1;
1159 struct
1161 unsigned IOC0 : 1;
1162 unsigned IOC1 : 1;
1163 unsigned IOC2 : 1;
1164 unsigned IOC3 : 1;
1165 unsigned IOC4 : 1;
1166 unsigned IOC5 : 1;
1167 unsigned : 1;
1168 unsigned : 1;
1171 struct
1173 unsigned IOC : 6;
1174 unsigned : 2;
1177 struct
1179 unsigned IOCA : 6;
1180 unsigned : 2;
1182 } __IOCbits_t;
1184 extern __at(0x0096) volatile __IOCbits_t IOCbits;
1186 #define _IOCA0 0x01
1187 #define _IOC0 0x01
1188 #define _IOCA1 0x02
1189 #define _IOC1 0x02
1190 #define _IOCA2 0x04
1191 #define _IOC2 0x04
1192 #define _IOCA3 0x08
1193 #define _IOC3 0x08
1194 #define _IOCA4 0x10
1195 #define _IOC4 0x10
1196 #define _IOCA5 0x20
1197 #define _IOC5 0x20
1199 //==============================================================================
1202 //==============================================================================
1203 // IOCA Bits
1205 extern __at(0x0096) __sfr IOCA;
1207 typedef union
1209 struct
1211 unsigned IOCA0 : 1;
1212 unsigned IOCA1 : 1;
1213 unsigned IOCA2 : 1;
1214 unsigned IOCA3 : 1;
1215 unsigned IOCA4 : 1;
1216 unsigned IOCA5 : 1;
1217 unsigned : 1;
1218 unsigned : 1;
1221 struct
1223 unsigned IOC0 : 1;
1224 unsigned IOC1 : 1;
1225 unsigned IOC2 : 1;
1226 unsigned IOC3 : 1;
1227 unsigned IOC4 : 1;
1228 unsigned IOC5 : 1;
1229 unsigned : 1;
1230 unsigned : 1;
1233 struct
1235 unsigned IOC : 6;
1236 unsigned : 2;
1239 struct
1241 unsigned IOCA : 6;
1242 unsigned : 2;
1244 } __IOCAbits_t;
1246 extern __at(0x0096) volatile __IOCAbits_t IOCAbits;
1248 #define _IOCA_IOCA0 0x01
1249 #define _IOCA_IOC0 0x01
1250 #define _IOCA_IOCA1 0x02
1251 #define _IOCA_IOC1 0x02
1252 #define _IOCA_IOCA2 0x04
1253 #define _IOCA_IOC2 0x04
1254 #define _IOCA_IOCA3 0x08
1255 #define _IOCA_IOC3 0x08
1256 #define _IOCA_IOCA4 0x10
1257 #define _IOCA_IOC4 0x10
1258 #define _IOCA_IOCA5 0x20
1259 #define _IOCA_IOC5 0x20
1261 //==============================================================================
1264 //==============================================================================
1265 // WDTCON Bits
1267 extern __at(0x0097) __sfr WDTCON;
1269 typedef union
1271 struct
1273 unsigned SWDTEN : 1;
1274 unsigned WDTPS0 : 1;
1275 unsigned WDTPS1 : 1;
1276 unsigned WDTPS2 : 1;
1277 unsigned WDTPS3 : 1;
1278 unsigned : 1;
1279 unsigned : 1;
1280 unsigned : 1;
1283 struct
1285 unsigned : 1;
1286 unsigned WDTPS : 4;
1287 unsigned : 3;
1289 } __WDTCONbits_t;
1291 extern __at(0x0097) volatile __WDTCONbits_t WDTCONbits;
1293 #define _SWDTEN 0x01
1294 #define _WDTPS0 0x02
1295 #define _WDTPS1 0x04
1296 #define _WDTPS2 0x08
1297 #define _WDTPS3 0x10
1299 //==============================================================================
1302 //==============================================================================
1303 // TXSTA Bits
1305 extern __at(0x0098) __sfr TXSTA;
1307 typedef union
1309 struct
1311 unsigned TX9D : 1;
1312 unsigned TRMT : 1;
1313 unsigned BRGH : 1;
1314 unsigned SENDB : 1;
1315 unsigned SYNC : 1;
1316 unsigned TXEN : 1;
1317 unsigned TX9 : 1;
1318 unsigned CSRC : 1;
1321 struct
1323 unsigned : 1;
1324 unsigned : 1;
1325 unsigned : 1;
1326 unsigned SENB : 1;
1327 unsigned : 1;
1328 unsigned : 1;
1329 unsigned : 1;
1330 unsigned : 1;
1332 } __TXSTAbits_t;
1334 extern __at(0x0098) volatile __TXSTAbits_t TXSTAbits;
1336 #define _TX9D 0x01
1337 #define _TRMT 0x02
1338 #define _BRGH 0x04
1339 #define _SENDB 0x08
1340 #define _SENB 0x08
1341 #define _SYNC 0x10
1342 #define _TXEN 0x20
1343 #define _TX9 0x40
1344 #define _CSRC 0x80
1346 //==============================================================================
1349 //==============================================================================
1350 // SPBRG Bits
1352 extern __at(0x0099) __sfr SPBRG;
1354 typedef struct
1356 unsigned BRG0 : 1;
1357 unsigned BRG1 : 1;
1358 unsigned BRG2 : 1;
1359 unsigned BRG3 : 1;
1360 unsigned BRG4 : 1;
1361 unsigned BRG5 : 1;
1362 unsigned BRG6 : 1;
1363 unsigned BRG7 : 1;
1364 } __SPBRGbits_t;
1366 extern __at(0x0099) volatile __SPBRGbits_t SPBRGbits;
1368 #define _BRG0 0x01
1369 #define _BRG1 0x02
1370 #define _BRG2 0x04
1371 #define _BRG3 0x08
1372 #define _BRG4 0x10
1373 #define _BRG5 0x20
1374 #define _BRG6 0x40
1375 #define _BRG7 0x80
1377 //==============================================================================
1380 //==============================================================================
1381 // SPBRGH Bits
1383 extern __at(0x009A) __sfr SPBRGH;
1385 typedef struct
1387 unsigned BRG8 : 1;
1388 unsigned BRG9 : 1;
1389 unsigned BRG10 : 1;
1390 unsigned BRG11 : 1;
1391 unsigned BRG12 : 1;
1392 unsigned BRG13 : 1;
1393 unsigned BRG14 : 1;
1394 unsigned BRG15 : 1;
1395 } __SPBRGHbits_t;
1397 extern __at(0x009A) volatile __SPBRGHbits_t SPBRGHbits;
1399 #define _BRG8 0x01
1400 #define _BRG9 0x02
1401 #define _BRG10 0x04
1402 #define _BRG11 0x08
1403 #define _BRG12 0x10
1404 #define _BRG13 0x20
1405 #define _BRG14 0x40
1406 #define _BRG15 0x80
1408 //==============================================================================
1411 //==============================================================================
1412 // BAUDCTL Bits
1414 extern __at(0x009B) __sfr BAUDCTL;
1416 #define BAUDCON BAUDCTL
1418 typedef struct
1420 unsigned ABDEN : 1;
1421 unsigned WUE : 1;
1422 unsigned : 1;
1423 unsigned BRG16 : 1;
1424 unsigned SCKP : 1;
1425 unsigned : 1;
1426 unsigned RCIDL : 1;
1427 unsigned ABDOVF : 1;
1428 } __BAUDCTLbits_t;
1430 extern __at(0x009B) volatile __BAUDCTLbits_t BAUDCTLbits;
1432 #define BAUDCONbits BAUDCTLbits
1434 #define _ABDEN 0x01
1435 #define _WUE 0x02
1436 #define _BRG16 0x08
1437 #define _SCKP 0x10
1438 #define _RCIDL 0x40
1439 #define _ABDOVF 0x80
1441 //==============================================================================
1443 extern __at(0x009E) __sfr ADRESL;
1445 //==============================================================================
1446 // ADCON1 Bits
1448 extern __at(0x009F) __sfr ADCON1;
1450 typedef union
1452 struct
1454 unsigned : 1;
1455 unsigned : 1;
1456 unsigned : 1;
1457 unsigned : 1;
1458 unsigned ADCS0 : 1;
1459 unsigned ADCS1 : 1;
1460 unsigned ADCS2 : 1;
1461 unsigned : 1;
1464 struct
1466 unsigned : 4;
1467 unsigned ADCS : 3;
1468 unsigned : 1;
1470 } __ADCON1bits_t;
1472 extern __at(0x009F) volatile __ADCON1bits_t ADCON1bits;
1474 #define _ADCS0 0x10
1475 #define _ADCS1 0x20
1476 #define _ADCS2 0x40
1478 //==============================================================================
1480 extern __at(0x010C) __sfr EEDAT;
1481 extern __at(0x010C) __sfr EEDATA;
1482 extern __at(0x010D) __sfr EEADR;
1484 //==============================================================================
1485 // WPUB Bits
1487 extern __at(0x0115) __sfr WPUB;
1489 typedef struct
1491 unsigned : 1;
1492 unsigned : 1;
1493 unsigned : 1;
1494 unsigned : 1;
1495 unsigned WPUB4 : 1;
1496 unsigned WPUB5 : 1;
1497 unsigned WPUB6 : 1;
1498 unsigned WPUB7 : 1;
1499 } __WPUBbits_t;
1501 extern __at(0x0115) volatile __WPUBbits_t WPUBbits;
1503 #define _WPUB4 0x10
1504 #define _WPUB5 0x20
1505 #define _WPUB6 0x40
1506 #define _WPUB7 0x80
1508 //==============================================================================
1511 //==============================================================================
1512 // IOCB Bits
1514 extern __at(0x0116) __sfr IOCB;
1516 typedef struct
1518 unsigned : 1;
1519 unsigned : 1;
1520 unsigned : 1;
1521 unsigned : 1;
1522 unsigned IOCB4 : 1;
1523 unsigned IOCB5 : 1;
1524 unsigned IOCB6 : 1;
1525 unsigned IOCB7 : 1;
1526 } __IOCBbits_t;
1528 extern __at(0x0116) volatile __IOCBbits_t IOCBbits;
1530 #define _IOCB4 0x10
1531 #define _IOCB5 0x20
1532 #define _IOCB6 0x40
1533 #define _IOCB7 0x80
1535 //==============================================================================
1538 //==============================================================================
1539 // VRCON Bits
1541 extern __at(0x0118) __sfr VRCON;
1543 typedef union
1545 struct
1547 unsigned VR0 : 1;
1548 unsigned VR1 : 1;
1549 unsigned VR2 : 1;
1550 unsigned VR3 : 1;
1551 unsigned VP6EN : 1;
1552 unsigned VRR : 1;
1553 unsigned C2VREN : 1;
1554 unsigned C1VREN : 1;
1557 struct
1559 unsigned VR : 4;
1560 unsigned : 4;
1562 } __VRCONbits_t;
1564 extern __at(0x0118) volatile __VRCONbits_t VRCONbits;
1566 #define _VR0 0x01
1567 #define _VR1 0x02
1568 #define _VR2 0x04
1569 #define _VR3 0x08
1570 #define _VP6EN 0x10
1571 #define _VRR 0x20
1572 #define _C2VREN 0x40
1573 #define _C1VREN 0x80
1575 //==============================================================================
1578 //==============================================================================
1579 // CM1CON0 Bits
1581 extern __at(0x0119) __sfr CM1CON0;
1583 typedef union
1585 struct
1587 unsigned C1CH0 : 1;
1588 unsigned C1CH1 : 1;
1589 unsigned C1R : 1;
1590 unsigned : 1;
1591 unsigned C1POL : 1;
1592 unsigned C1OE : 1;
1593 unsigned C1OUT : 1;
1594 unsigned C1ON : 1;
1597 struct
1599 unsigned C1CH : 2;
1600 unsigned : 6;
1602 } __CM1CON0bits_t;
1604 extern __at(0x0119) volatile __CM1CON0bits_t CM1CON0bits;
1606 #define _C1CH0 0x01
1607 #define _C1CH1 0x02
1608 #define _C1R 0x04
1609 #define _C1POL 0x10
1610 #define _C1OE 0x20
1611 #define _C1OUT 0x40
1612 #define _C1ON 0x80
1614 //==============================================================================
1617 //==============================================================================
1618 // CM2CON0 Bits
1620 extern __at(0x011A) __sfr CM2CON0;
1622 typedef union
1624 struct
1626 unsigned C2CH0 : 1;
1627 unsigned C2CH1 : 1;
1628 unsigned C2R : 1;
1629 unsigned : 1;
1630 unsigned C2POL : 1;
1631 unsigned C2OE : 1;
1632 unsigned C2OUT : 1;
1633 unsigned C2ON : 1;
1636 struct
1638 unsigned C2CH : 2;
1639 unsigned : 6;
1641 } __CM2CON0bits_t;
1643 extern __at(0x011A) volatile __CM2CON0bits_t CM2CON0bits;
1645 #define _C2CH0 0x01
1646 #define _C2CH1 0x02
1647 #define _C2R 0x04
1648 #define _C2POL 0x10
1649 #define _C2OE 0x20
1650 #define _C2OUT 0x40
1651 #define _C2ON 0x80
1653 //==============================================================================
1656 //==============================================================================
1657 // CM2CON1 Bits
1659 extern __at(0x011B) __sfr CM2CON1;
1661 typedef struct
1663 unsigned C2SYNC : 1;
1664 unsigned T1GSS : 1;
1665 unsigned : 1;
1666 unsigned : 1;
1667 unsigned : 1;
1668 unsigned : 1;
1669 unsigned MC2OUT : 1;
1670 unsigned MC1OUT : 1;
1671 } __CM2CON1bits_t;
1673 extern __at(0x011B) volatile __CM2CON1bits_t CM2CON1bits;
1675 #define _C2SYNC 0x01
1676 #define _T1GSS 0x02
1677 #define _MC2OUT 0x40
1678 #define _MC1OUT 0x80
1680 //==============================================================================
1683 //==============================================================================
1684 // ANSEL Bits
1686 extern __at(0x011E) __sfr ANSEL;
1688 typedef struct
1690 unsigned ANS0 : 1;
1691 unsigned ANS1 : 1;
1692 unsigned ANS2 : 1;
1693 unsigned ANS3 : 1;
1694 unsigned ANS4 : 1;
1695 unsigned ANS5 : 1;
1696 unsigned ANS6 : 1;
1697 unsigned ANS7 : 1;
1698 } __ANSELbits_t;
1700 extern __at(0x011E) volatile __ANSELbits_t ANSELbits;
1702 #define _ANS0 0x01
1703 #define _ANS1 0x02
1704 #define _ANS2 0x04
1705 #define _ANS3 0x08
1706 #define _ANS4 0x10
1707 #define _ANS5 0x20
1708 #define _ANS6 0x40
1709 #define _ANS7 0x80
1711 //==============================================================================
1714 //==============================================================================
1715 // ANSELH Bits
1717 extern __at(0x011F) __sfr ANSELH;
1719 typedef struct
1721 unsigned ANS8 : 1;
1722 unsigned ANS9 : 1;
1723 unsigned ANS10 : 1;
1724 unsigned ANS11 : 1;
1725 unsigned : 1;
1726 unsigned : 1;
1727 unsigned : 1;
1728 unsigned : 1;
1729 } __ANSELHbits_t;
1731 extern __at(0x011F) volatile __ANSELHbits_t ANSELHbits;
1733 #define _ANS8 0x01
1734 #define _ANS9 0x02
1735 #define _ANS10 0x04
1736 #define _ANS11 0x08
1738 //==============================================================================
1741 //==============================================================================
1742 // EECON1 Bits
1744 extern __at(0x018C) __sfr EECON1;
1746 typedef struct
1748 unsigned RD : 1;
1749 unsigned WR : 1;
1750 unsigned WREN : 1;
1751 unsigned WRERR : 1;
1752 unsigned : 1;
1753 unsigned : 1;
1754 unsigned : 1;
1755 unsigned : 1;
1756 } __EECON1bits_t;
1758 extern __at(0x018C) volatile __EECON1bits_t EECON1bits;
1760 #define _RD 0x01
1761 #define _WR 0x02
1762 #define _WREN 0x04
1763 #define _WRERR 0x08
1765 //==============================================================================
1767 extern __at(0x018D) __sfr EECON2;
1769 //==============================================================================
1770 // SRCON Bits
1772 extern __at(0x019E) __sfr SRCON;
1774 typedef union
1776 struct
1778 unsigned : 1;
1779 unsigned : 1;
1780 unsigned PULSR : 1;
1781 unsigned PULSS : 1;
1782 unsigned C2REN : 1;
1783 unsigned C1SEN : 1;
1784 unsigned SR0 : 1;
1785 unsigned SR1 : 1;
1788 struct
1790 unsigned : 6;
1791 unsigned SR : 2;
1793 } __SRCONbits_t;
1795 extern __at(0x019E) volatile __SRCONbits_t SRCONbits;
1797 #define _PULSR 0x04
1798 #define _PULSS 0x08
1799 #define _C2REN 0x10
1800 #define _C1SEN 0x20
1801 #define _SR0 0x40
1802 #define _SR1 0x80
1804 //==============================================================================
1807 //==============================================================================
1809 // Configuration Bits
1811 //==============================================================================
1813 #define _CONFIG 0x2007
1815 //----------------------------- CONFIG Options -------------------------------
1817 #define _FOSC_LP 0x3FF8 // LP oscillator: Low-power crystal on RA4/OSC2/CLKOUT and RA5/OSC1/CLKIN.
1818 #define _LP_OSC 0x3FF8 // LP oscillator: Low-power crystal on RA4/OSC2/CLKOUT and RA5/OSC1/CLKIN.
1819 #define _FOSC_XT 0x3FF9 // XT oscillator: Crystal/resonator on RA4/OSC2/CLKOUT and RA5/OSC1/CLKIN.
1820 #define _XT_OSC 0x3FF9 // XT oscillator: Crystal/resonator on RA4/OSC2/CLKOUT and RA5/OSC1/CLKIN.
1821 #define _FOSC_HS 0x3FFA // HS oscillator: High-speed crystal/resonator on RA4/OSC2/CLKOUT and RA5/OSC1/CLKIN.
1822 #define _HS_OSC 0x3FFA // HS oscillator: High-speed crystal/resonator on RA4/OSC2/CLKOUT and RA5/OSC1/CLKIN.
1823 #define _FOSC_EC 0x3FFB // EC: I/O function on RA4/OSC2/CLKOUT pin, CLKIN on RA5/OSC1/CLKIN.
1824 #define _EC_OSC 0x3FFB // EC: I/O function on RA4/OSC2/CLKOUT pin, CLKIN on RA5/OSC1/CLKIN.
1825 #define _FOSC_INTRCIO 0x3FFC // INTOSCIO oscillator: I/O function on RA4/OSC2/CLKOUT pin, I/O function on RA5/OSC1/CLKIN.
1826 #define _INTRC_OSC_NOCLKOUT 0x3FFC // INTOSCIO oscillator: I/O function on RA4/OSC2/CLKOUT pin, I/O function on RA5/OSC1/CLKIN.
1827 #define _INTOSCIO 0x3FFC // INTOSCIO oscillator: I/O function on RA4/OSC2/CLKOUT pin, I/O function on RA5/OSC1/CLKIN.
1828 #define _FOSC_INTRCCLK 0x3FFD // INTOSC oscillator: CLKOUT function on RA4/OSC2/CLKOUT pin, I/O function on RA5/OSC1/CLKIN.
1829 #define _INTRC_OSC_CLKOUT 0x3FFD // INTOSC oscillator: CLKOUT function on RA4/OSC2/CLKOUT pin, I/O function on RA5/OSC1/CLKIN.
1830 #define _INTOSC 0x3FFD // INTOSC oscillator: CLKOUT function on RA4/OSC2/CLKOUT pin, I/O function on RA5/OSC1/CLKIN.
1831 #define _FOSC_EXTRCIO 0x3FFE // RCIO oscillator: I/O function on RA4/OSC2/CLKOUT pin, RC on RA5/OSC1/CLKIN.
1832 #define _EXTRC_OSC_NOCLKOUT 0x3FFE // RCIO oscillator: I/O function on RA4/OSC2/CLKOUT pin, RC on RA5/OSC1/CLKIN.
1833 #define _EXTRCIO 0x3FFE // RCIO oscillator: I/O function on RA4/OSC2/CLKOUT pin, RC on RA5/OSC1/CLKIN.
1834 #define _FOSC_EXTRCCLK 0x3FFF // RC oscillator: CLKOUT function on RA4/OSC2/CLKOUT pin, RC on RA5/OSC1/CLKIN.
1835 #define _EXTRC_OSC_CLKOUT 0x3FFF // RC oscillator: CLKOUT function on RA4/OSC2/CLKOUT pin, RC on RA5/OSC1/CLKIN.
1836 #define _EXTRC 0x3FFF // RC oscillator: CLKOUT function on RA4/OSC2/CLKOUT pin, RC on RA5/OSC1/CLKIN.
1837 #define _WDTE_OFF 0x3FF7 // WDT disabled and can be enabled by SWDTEN bit of the WDTCON register.
1838 #define _WDT_OFF 0x3FF7 // WDT disabled and can be enabled by SWDTEN bit of the WDTCON register.
1839 #define _WDTE_ON 0x3FFF // WDT enabled.
1840 #define _WDT_ON 0x3FFF // WDT enabled.
1841 #define _PWRTE_ON 0x3FEF // PWRT enabled.
1842 #define _PWRTE_OFF 0x3FFF // PWRT disabled.
1843 #define _MCLRE_OFF 0x3FDF // MCLR pin function is digital input, MCLR internally tied to VDD.
1844 #define _MCLRE_ON 0x3FFF // MCLR pin function is MCLR.
1845 #define _CP_ON 0x3FBF // Program memory code protection is enabled.
1846 #define _CP_OFF 0x3FFF // Program memory code protection is disabled.
1847 #define _CPD_ON 0x3F7F // Data memory code protection is enabled.
1848 #define _CPD_OFF 0x3FFF // Data memory code protection is disabled.
1849 #define _BOREN_OFF 0x3CFF // BOR disabled.
1850 #define _BOD_OFF 0x3CFF // BOR disabled.
1851 #define _BOR_OFF 0x3CFF // BOR disabled.
1852 #define _BOREN_SBODEN 0x3DFF // BOR controlled by SBOREN bit of the PCON register.
1853 #define _BOD_SBODEN 0x3DFF // BOR controlled by SBOREN bit of the PCON register.
1854 #define _BOR_SBODEN 0x3DFF // BOR controlled by SBOREN bit of the PCON register.
1855 #define _BOREN_NSLEEP 0x3EFF // BOR enabled during operation and disabled in Sleep.
1856 #define _BOD_NSLEEP 0x3EFF // BOR enabled during operation and disabled in Sleep.
1857 #define _BOR_NSLEEP 0x3EFF // BOR enabled during operation and disabled in Sleep.
1858 #define _BOREN_ON 0x3FFF // BOR enabled.
1859 #define _BOD_ON 0x3FFF // BOR enabled.
1860 #define _BOR_ON 0x3FFF // BOR enabled.
1861 #define _IESO_OFF 0x3BFF // Internal External Switchover mode is disabled.
1862 #define _IESO_ON 0x3FFF // Internal External Switchover mode is enabled.
1863 #define _FCMEN_OFF 0x37FF // Fail-Safe Clock Monitor is disabled.
1864 #define _FCMEN_ON 0x3FFF // Fail-Safe Clock Monitor is enabled.
1866 //==============================================================================
1868 #define _DEVID1 0x2006
1870 #define _IDLOC0 0x2000
1871 #define _IDLOC1 0x2001
1872 #define _IDLOC2 0x2002
1873 #define _IDLOC3 0x2003
1875 //==============================================================================
1877 #ifndef NO_BIT_DEFINES
1879 #define ADON ADCON0bits.ADON // bit 0
1880 #define GO_NOT_DONE ADCON0bits.GO_NOT_DONE // bit 1, shadows bit in ADCON0bits
1881 #define GO ADCON0bits.GO // bit 1, shadows bit in ADCON0bits
1882 #define NOT_DONE ADCON0bits.NOT_DONE // bit 1, shadows bit in ADCON0bits
1883 #define GO_DONE ADCON0bits.GO_DONE // bit 1, shadows bit in ADCON0bits
1884 #define CHS0 ADCON0bits.CHS0 // bit 2
1885 #define CHS1 ADCON0bits.CHS1 // bit 3
1886 #define CHS2 ADCON0bits.CHS2 // bit 4
1887 #define CHS3 ADCON0bits.CHS3 // bit 5
1888 #define VCFG ADCON0bits.VCFG // bit 6
1889 #define ADFM ADCON0bits.ADFM // bit 7
1891 #define ADCS0 ADCON1bits.ADCS0 // bit 4
1892 #define ADCS1 ADCON1bits.ADCS1 // bit 5
1893 #define ADCS2 ADCON1bits.ADCS2 // bit 6
1895 #define ANS0 ANSELbits.ANS0 // bit 0
1896 #define ANS1 ANSELbits.ANS1 // bit 1
1897 #define ANS2 ANSELbits.ANS2 // bit 2
1898 #define ANS3 ANSELbits.ANS3 // bit 3
1899 #define ANS4 ANSELbits.ANS4 // bit 4
1900 #define ANS5 ANSELbits.ANS5 // bit 5
1901 #define ANS6 ANSELbits.ANS6 // bit 6
1902 #define ANS7 ANSELbits.ANS7 // bit 7
1904 #define ANS8 ANSELHbits.ANS8 // bit 0
1905 #define ANS9 ANSELHbits.ANS9 // bit 1
1906 #define ANS10 ANSELHbits.ANS10 // bit 2
1907 #define ANS11 ANSELHbits.ANS11 // bit 3
1909 #define ABDEN BAUDCTLbits.ABDEN // bit 0
1910 #define WUE BAUDCTLbits.WUE // bit 1
1911 #define BRG16 BAUDCTLbits.BRG16 // bit 3
1912 #define SCKP BAUDCTLbits.SCKP // bit 4
1913 #define RCIDL BAUDCTLbits.RCIDL // bit 6
1914 #define ABDOVF BAUDCTLbits.ABDOVF // bit 7
1916 #define C1CH0 CM1CON0bits.C1CH0 // bit 0
1917 #define C1CH1 CM1CON0bits.C1CH1 // bit 1
1918 #define C1R CM1CON0bits.C1R // bit 2
1919 #define C1POL CM1CON0bits.C1POL // bit 4
1920 #define C1OE CM1CON0bits.C1OE // bit 5
1921 #define C1OUT CM1CON0bits.C1OUT // bit 6
1922 #define C1ON CM1CON0bits.C1ON // bit 7
1924 #define C2CH0 CM2CON0bits.C2CH0 // bit 0
1925 #define C2CH1 CM2CON0bits.C2CH1 // bit 1
1926 #define C2R CM2CON0bits.C2R // bit 2
1927 #define C2POL CM2CON0bits.C2POL // bit 4
1928 #define C2OE CM2CON0bits.C2OE // bit 5
1929 #define C2OUT CM2CON0bits.C2OUT // bit 6
1930 #define C2ON CM2CON0bits.C2ON // bit 7
1932 #define C2SYNC CM2CON1bits.C2SYNC // bit 0
1933 #define T1GSS CM2CON1bits.T1GSS // bit 1
1934 #define MC2OUT CM2CON1bits.MC2OUT // bit 6
1935 #define MC1OUT CM2CON1bits.MC1OUT // bit 7
1937 #define RD EECON1bits.RD // bit 0
1938 #define WR EECON1bits.WR // bit 1
1939 #define WREN EECON1bits.WREN // bit 2
1940 #define WRERR EECON1bits.WRERR // bit 3
1942 #define RABIF INTCONbits.RABIF // bit 0
1943 #define INTF INTCONbits.INTF // bit 1
1944 #define T0IF INTCONbits.T0IF // bit 2
1945 #define RABIE INTCONbits.RABIE // bit 3
1946 #define INTE INTCONbits.INTE // bit 4
1947 #define T0IE INTCONbits.T0IE // bit 5
1948 #define PEIE INTCONbits.PEIE // bit 6
1949 #define GIE INTCONbits.GIE // bit 7
1951 #define IOCA0 IOCbits.IOCA0 // bit 0, shadows bit in IOCbits
1952 #define IOC0 IOCbits.IOC0 // bit 0, shadows bit in IOCbits
1953 #define IOCA1 IOCbits.IOCA1 // bit 1, shadows bit in IOCbits
1954 #define IOC1 IOCbits.IOC1 // bit 1, shadows bit in IOCbits
1955 #define IOCA2 IOCbits.IOCA2 // bit 2, shadows bit in IOCbits
1956 #define IOC2 IOCbits.IOC2 // bit 2, shadows bit in IOCbits
1957 #define IOCA3 IOCbits.IOCA3 // bit 3, shadows bit in IOCbits
1958 #define IOC3 IOCbits.IOC3 // bit 3, shadows bit in IOCbits
1959 #define IOCA4 IOCbits.IOCA4 // bit 4, shadows bit in IOCbits
1960 #define IOC4 IOCbits.IOC4 // bit 4, shadows bit in IOCbits
1961 #define IOCA5 IOCbits.IOCA5 // bit 5, shadows bit in IOCbits
1962 #define IOC5 IOCbits.IOC5 // bit 5, shadows bit in IOCbits
1964 #define IOCB4 IOCBbits.IOCB4 // bit 4
1965 #define IOCB5 IOCBbits.IOCB5 // bit 5
1966 #define IOCB6 IOCBbits.IOCB6 // bit 6
1967 #define IOCB7 IOCBbits.IOCB7 // bit 7
1969 #define MSK0 MSKbits.MSK0 // bit 0
1970 #define MSK1 MSKbits.MSK1 // bit 1
1971 #define MSK2 MSKbits.MSK2 // bit 2
1972 #define MSK3 MSKbits.MSK3 // bit 3
1973 #define MSK4 MSKbits.MSK4 // bit 4
1974 #define MSK5 MSKbits.MSK5 // bit 5
1975 #define MSK6 MSKbits.MSK6 // bit 6
1976 #define MSK7 MSKbits.MSK7 // bit 7
1978 #define PS0 OPTION_REGbits.PS0 // bit 0
1979 #define PS1 OPTION_REGbits.PS1 // bit 1
1980 #define PS2 OPTION_REGbits.PS2 // bit 2
1981 #define PSA OPTION_REGbits.PSA // bit 3
1982 #define T0SE OPTION_REGbits.T0SE // bit 4
1983 #define T0CS OPTION_REGbits.T0CS // bit 5
1984 #define INTEDG OPTION_REGbits.INTEDG // bit 6
1985 #define NOT_RABPU OPTION_REGbits.NOT_RABPU // bit 7
1987 #define SCS OSCCONbits.SCS // bit 0
1988 #define LTS OSCCONbits.LTS // bit 1
1989 #define HTS OSCCONbits.HTS // bit 2
1990 #define OSTS OSCCONbits.OSTS // bit 3
1991 #define IRCF0 OSCCONbits.IRCF0 // bit 4
1992 #define IRCF1 OSCCONbits.IRCF1 // bit 5
1993 #define IRCF2 OSCCONbits.IRCF2 // bit 6
1995 #define TUN0 OSCTUNEbits.TUN0 // bit 0
1996 #define TUN1 OSCTUNEbits.TUN1 // bit 1
1997 #define TUN2 OSCTUNEbits.TUN2 // bit 2
1998 #define TUN3 OSCTUNEbits.TUN3 // bit 3
1999 #define TUN4 OSCTUNEbits.TUN4 // bit 4
2001 #define NOT_BOR PCONbits.NOT_BOR // bit 0
2002 #define NOT_POR PCONbits.NOT_POR // bit 1
2003 #define SBOREN PCONbits.SBOREN // bit 4
2004 #define ULPWUE PCONbits.ULPWUE // bit 5
2006 #define TMR1IE PIE1bits.TMR1IE // bit 0, shadows bit in PIE1bits
2007 #define T1IE PIE1bits.T1IE // bit 0, shadows bit in PIE1bits
2008 #define SSPIE PIE1bits.SSPIE // bit 3
2009 #define TXIE PIE1bits.TXIE // bit 4
2010 #define RCIE PIE1bits.RCIE // bit 5
2011 #define ADIE PIE1bits.ADIE // bit 6
2013 #define EEIE PIE2bits.EEIE // bit 4
2014 #define C1IE PIE2bits.C1IE // bit 5
2015 #define C2IE PIE2bits.C2IE // bit 6
2016 #define OSFIE PIE2bits.OSFIE // bit 7
2018 #define TMR1IF PIR1bits.TMR1IF // bit 0, shadows bit in PIR1bits
2019 #define T1IF PIR1bits.T1IF // bit 0, shadows bit in PIR1bits
2020 #define SSPIF PIR1bits.SSPIF // bit 3
2021 #define TXIF PIR1bits.TXIF // bit 4
2022 #define RCIF PIR1bits.RCIF // bit 5
2023 #define ADIF PIR1bits.ADIF // bit 6
2025 #define EEIF PIR2bits.EEIF // bit 4
2026 #define C1IF PIR2bits.C1IF // bit 5
2027 #define C2IF PIR2bits.C2IF // bit 6
2028 #define OSFIF PIR2bits.OSFIF // bit 7
2030 #define RA0 PORTAbits.RA0 // bit 0
2031 #define RA1 PORTAbits.RA1 // bit 1
2032 #define RA2 PORTAbits.RA2 // bit 2
2033 #define RA3 PORTAbits.RA3 // bit 3
2034 #define RA4 PORTAbits.RA4 // bit 4
2035 #define RA5 PORTAbits.RA5 // bit 5
2037 #define RB4 PORTBbits.RB4 // bit 4
2038 #define RB5 PORTBbits.RB5 // bit 5
2039 #define RB6 PORTBbits.RB6 // bit 6
2040 #define RB7 PORTBbits.RB7 // bit 7
2042 #define RC0 PORTCbits.RC0 // bit 0
2043 #define RC1 PORTCbits.RC1 // bit 1
2044 #define RC2 PORTCbits.RC2 // bit 2
2045 #define RC3 PORTCbits.RC3 // bit 3
2046 #define RC4 PORTCbits.RC4 // bit 4
2047 #define RC5 PORTCbits.RC5 // bit 5
2048 #define RC6 PORTCbits.RC6 // bit 6
2049 #define RC7 PORTCbits.RC7 // bit 7
2051 #define RX9D RCSTAbits.RX9D // bit 0
2052 #define OERR RCSTAbits.OERR // bit 1
2053 #define FERR RCSTAbits.FERR // bit 2
2054 #define ADDEN RCSTAbits.ADDEN // bit 3
2055 #define CREN RCSTAbits.CREN // bit 4
2056 #define SREN RCSTAbits.SREN // bit 5
2057 #define RX9 RCSTAbits.RX9 // bit 6
2058 #define SPEN RCSTAbits.SPEN // bit 7
2060 #define BRG0 SPBRGbits.BRG0 // bit 0
2061 #define BRG1 SPBRGbits.BRG1 // bit 1
2062 #define BRG2 SPBRGbits.BRG2 // bit 2
2063 #define BRG3 SPBRGbits.BRG3 // bit 3
2064 #define BRG4 SPBRGbits.BRG4 // bit 4
2065 #define BRG5 SPBRGbits.BRG5 // bit 5
2066 #define BRG6 SPBRGbits.BRG6 // bit 6
2067 #define BRG7 SPBRGbits.BRG7 // bit 7
2069 #define BRG8 SPBRGHbits.BRG8 // bit 0
2070 #define BRG9 SPBRGHbits.BRG9 // bit 1
2071 #define BRG10 SPBRGHbits.BRG10 // bit 2
2072 #define BRG11 SPBRGHbits.BRG11 // bit 3
2073 #define BRG12 SPBRGHbits.BRG12 // bit 4
2074 #define BRG13 SPBRGHbits.BRG13 // bit 5
2075 #define BRG14 SPBRGHbits.BRG14 // bit 6
2076 #define BRG15 SPBRGHbits.BRG15 // bit 7
2078 #define PULSR SRCONbits.PULSR // bit 2
2079 #define PULSS SRCONbits.PULSS // bit 3
2080 #define C2REN SRCONbits.C2REN // bit 4
2081 #define C1SEN SRCONbits.C1SEN // bit 5
2082 #define SR0 SRCONbits.SR0 // bit 6
2083 #define SR1 SRCONbits.SR1 // bit 7
2085 #define SSPM0 SSPCONbits.SSPM0 // bit 0
2086 #define SSPM1 SSPCONbits.SSPM1 // bit 1
2087 #define SSPM2 SSPCONbits.SSPM2 // bit 2
2088 #define SSPM3 SSPCONbits.SSPM3 // bit 3
2089 #define CKP SSPCONbits.CKP // bit 4
2090 #define SSPEN SSPCONbits.SSPEN // bit 5
2091 #define SSPOV SSPCONbits.SSPOV // bit 6
2092 #define WCOL SSPCONbits.WCOL // bit 7
2094 #define BF SSPSTATbits.BF // bit 0
2095 #define UA SSPSTATbits.UA // bit 1
2096 #define R_NOT_W SSPSTATbits.R_NOT_W // bit 2, shadows bit in SSPSTATbits
2097 #define R SSPSTATbits.R // bit 2, shadows bit in SSPSTATbits
2098 #define I2C_READ SSPSTATbits.I2C_READ // bit 2, shadows bit in SSPSTATbits
2099 #define NOT_W SSPSTATbits.NOT_W // bit 2, shadows bit in SSPSTATbits
2100 #define NOT_WRITE SSPSTATbits.NOT_WRITE // bit 2, shadows bit in SSPSTATbits
2101 #define R_W SSPSTATbits.R_W // bit 2, shadows bit in SSPSTATbits
2102 #define READ_WRITE SSPSTATbits.READ_WRITE // bit 2, shadows bit in SSPSTATbits
2103 #define S SSPSTATbits.S // bit 3, shadows bit in SSPSTATbits
2104 #define I2C_START SSPSTATbits.I2C_START // bit 3, shadows bit in SSPSTATbits
2105 #define P SSPSTATbits.P // bit 4, shadows bit in SSPSTATbits
2106 #define I2C_STOP SSPSTATbits.I2C_STOP // bit 4, shadows bit in SSPSTATbits
2107 #define D_NOT_A SSPSTATbits.D_NOT_A // bit 5, shadows bit in SSPSTATbits
2108 #define D SSPSTATbits.D // bit 5, shadows bit in SSPSTATbits
2109 #define I2C_DATA SSPSTATbits.I2C_DATA // bit 5, shadows bit in SSPSTATbits
2110 #define NOT_A SSPSTATbits.NOT_A // bit 5, shadows bit in SSPSTATbits
2111 #define NOT_ADDRESS SSPSTATbits.NOT_ADDRESS // bit 5, shadows bit in SSPSTATbits
2112 #define D_A SSPSTATbits.D_A // bit 5, shadows bit in SSPSTATbits
2113 #define DATA_ADDRESS SSPSTATbits.DATA_ADDRESS // bit 5, shadows bit in SSPSTATbits
2114 #define CKE SSPSTATbits.CKE // bit 6
2115 #define SMP SSPSTATbits.SMP // bit 7
2117 #define C STATUSbits.C // bit 0
2118 #define DC STATUSbits.DC // bit 1
2119 #define Z STATUSbits.Z // bit 2
2120 #define NOT_PD STATUSbits.NOT_PD // bit 3
2121 #define NOT_TO STATUSbits.NOT_TO // bit 4
2122 #define RP0 STATUSbits.RP0 // bit 5
2123 #define RP1 STATUSbits.RP1 // bit 6
2124 #define IRP STATUSbits.IRP // bit 7
2126 #define TMR1ON T1CONbits.TMR1ON // bit 0
2127 #define TMR1CS T1CONbits.TMR1CS // bit 1
2128 #define NOT_T1SYNC T1CONbits.NOT_T1SYNC // bit 2
2129 #define T1OSCEN T1CONbits.T1OSCEN // bit 3
2130 #define T1CKPS0 T1CONbits.T1CKPS0 // bit 4
2131 #define T1CKPS1 T1CONbits.T1CKPS1 // bit 5
2132 #define TMR1GE T1CONbits.TMR1GE // bit 6
2133 #define T1GINV T1CONbits.T1GINV // bit 7
2135 #define TRISA0 TRISAbits.TRISA0 // bit 0
2136 #define TRISA1 TRISAbits.TRISA1 // bit 1
2137 #define TRISA2 TRISAbits.TRISA2 // bit 2
2138 #define TRISA3 TRISAbits.TRISA3 // bit 3
2139 #define TRISA4 TRISAbits.TRISA4 // bit 4
2140 #define TRISA5 TRISAbits.TRISA5 // bit 5
2142 #define TRISB4 TRISBbits.TRISB4 // bit 4
2143 #define TRISB5 TRISBbits.TRISB5 // bit 5
2144 #define TRISB6 TRISBbits.TRISB6 // bit 6
2145 #define TRISB7 TRISBbits.TRISB7 // bit 7
2147 #define TRISC0 TRISCbits.TRISC0 // bit 0
2148 #define TRISC1 TRISCbits.TRISC1 // bit 1
2149 #define TRISC2 TRISCbits.TRISC2 // bit 2
2150 #define TRISC3 TRISCbits.TRISC3 // bit 3
2151 #define TRISC4 TRISCbits.TRISC4 // bit 4
2152 #define TRISC5 TRISCbits.TRISC5 // bit 5
2153 #define TRISC6 TRISCbits.TRISC6 // bit 6
2154 #define TRISC7 TRISCbits.TRISC7 // bit 7
2156 #define TX9D TXSTAbits.TX9D // bit 0
2157 #define TRMT TXSTAbits.TRMT // bit 1
2158 #define BRGH TXSTAbits.BRGH // bit 2
2159 #define SENDB TXSTAbits.SENDB // bit 3, shadows bit in TXSTAbits
2160 #define SENB TXSTAbits.SENB // bit 3, shadows bit in TXSTAbits
2161 #define SYNC TXSTAbits.SYNC // bit 4
2162 #define TXEN TXSTAbits.TXEN // bit 5
2163 #define TX9 TXSTAbits.TX9 // bit 6
2164 #define CSRC TXSTAbits.CSRC // bit 7
2166 #define VR0 VRCONbits.VR0 // bit 0
2167 #define VR1 VRCONbits.VR1 // bit 1
2168 #define VR2 VRCONbits.VR2 // bit 2
2169 #define VR3 VRCONbits.VR3 // bit 3
2170 #define VP6EN VRCONbits.VP6EN // bit 4
2171 #define VRR VRCONbits.VRR // bit 5
2172 #define C2VREN VRCONbits.C2VREN // bit 6
2173 #define C1VREN VRCONbits.C1VREN // bit 7
2175 #define SWDTEN WDTCONbits.SWDTEN // bit 0
2176 #define WDTPS0 WDTCONbits.WDTPS0 // bit 1
2177 #define WDTPS1 WDTCONbits.WDTPS1 // bit 2
2178 #define WDTPS2 WDTCONbits.WDTPS2 // bit 3
2179 #define WDTPS3 WDTCONbits.WDTPS3 // bit 4
2181 #define WPUA0 WPUbits.WPUA0 // bit 0, shadows bit in WPUbits
2182 #define WPU0 WPUbits.WPU0 // bit 0, shadows bit in WPUbits
2183 #define WPUA1 WPUbits.WPUA1 // bit 1, shadows bit in WPUbits
2184 #define WPU1 WPUbits.WPU1 // bit 1, shadows bit in WPUbits
2185 #define WPUA2 WPUbits.WPUA2 // bit 2, shadows bit in WPUbits
2186 #define WPU2 WPUbits.WPU2 // bit 2, shadows bit in WPUbits
2187 #define WPUA4 WPUbits.WPUA4 // bit 4, shadows bit in WPUbits
2188 #define WPU4 WPUbits.WPU4 // bit 4, shadows bit in WPUbits
2189 #define WPUA5 WPUbits.WPUA5 // bit 5, shadows bit in WPUbits
2190 #define WPU5 WPUbits.WPU5 // bit 5, shadows bit in WPUbits
2192 #define WPUB4 WPUBbits.WPUB4 // bit 4
2193 #define WPUB5 WPUBbits.WPUB5 // bit 5
2194 #define WPUB6 WPUBbits.WPUB6 // bit 6
2195 #define WPUB7 WPUBbits.WPUB7 // bit 7
2197 #endif // #ifndef NO_BIT_DEFINES
2199 #endif // #ifndef __PIC16F687_H__