I am trying to setup a PIC18F4455 with 48MHz external oscillator. I don't want any fancy things. I'll just be using I/O pins and the UART. No USB or memory protection, etc.
Where can I find what the config parameters mean?
I am using the Hi-Tech C compiler.
I copied these from a tutorial:
But when I search the 18F4455 datasheet for the terms, they don't appear.
Where can I find what the config parameters mean?
I am using the Hi-Tech C compiler.
I copied these from a tutorial:
Code:
__CONFIG(1,HSPLL & USBPLL & PLLDIV5 & CPUDIV1 & FCMDIS & IESODIS);
__CONFIG(2,VREGEN & PWRTDIS & BOREN & BORV20 & WDTDIS & WDTPS32K);
__CONFIG(3,CCP2RC1 & PBADDIS & LPT1DIS & MCLREN);
__CONFIG(4,STVREN & LVPDIS & XINSTDIS & DEBUGDIS);
__CONFIG(5,UNPROTECT);
__CONFIG(6,UNPROTECT);
__CONFIG(7,UNPROTECT);
But when I search the 18F4455 datasheet for the terms, they don't appear.