I'm using a pic12f1840 width a pickit3 and mplab x ide (and x8 c compiler). It is probably really easy, but I can't figure out how to read the value of a pin!
void main(void) {
//setting up TESA
TRISA = 0b111111;
TRISA5 = 0; //pin 5 is output
TRISA1 = 1; //pin 1 in input
for (;;) {
RA5 = RA1;
}
}
This is my code at the moment (I left out the configs and include). I have a led connected to pin 5, and a button (with a pulldown resistor) connected to pin 1. I'm running the whole thing on 3.3 volts.
When dealing with Microchip controllers like the PIC it a real good idea to post a complete code that builds. From my experience the real issue is almost always in the stuff the Original Poster left out.
This code works for me in the simulator:
In your case it seems to be two things:
My example code uses the syntax that's been typically supported by almost all versions of the XC8 compilers for about 10 years now.
The shorter forms you have used may not always available for every controller you could target.