Hey there,
I'm using the MPLAB IDE C18, but there's a very strange problem with my test program:
The thing is, the LED in the PORTB didn't light up or whatever it is. Then I checked using PIC Kit 2 programmer software, and it says something like th e "Configuration Bits not present".Code:#pragma config OSC=INTIO2, WDT=OFF, LVP=OFF, DEBUG=ON #include <p18f1320.h> void main(void) { TRISB = 0; PORTBbits.RB0 = 1; while(1); }
I thought I included that in the code already?![]()

Reply With Quote

