Top "Pic" questions

PIC is a family of Harvard architecture microcontrollers made by Microchip Technology.

Difference between PORT and LATCH on PIC 18F

I already read the datasheet and google but I still don't understand something. In my case, I set PIN RC6 …

port pic pic18
Free PIC C compiler

I am looking for a free, and possibly open source C compiler for PIC. I might go without C, but …

pic
How many sensors will work at a time in an Arduino for Home automation?

As I am thinking to do a Home automation using Arduino, using Light sensor, temperature control , motion sensor , gas leakage …

arduino microcontroller sensors pic home-automation
Reading state of input pins on a PIC18

I have been able to get outputs working on my PIC and can make a bunch of LEDs dance on …

microcontroller pic pic18 mplab
Whats the best resource to learn Assembly language for PIC microcontroller's

I'm going to start working on a project where I need to have a decent understanding of Assembly language for …

assembly embedded microcontroller pic microchip
Free alternative to MPLAB (PIC development)

I started using MPLAB recently, but for someone that works with Eclipse and VS the IDE it's very limited. Do …

ide embedded microcontroller pic mplab
PIC Microcontroller Operating System

I heard it is possible to write an Operating System, using the built in bootloader and a kernel that you …

operating-system kernel pic bootloader rtos
PIC and XC8 Compiler issue

Im sure Im missing something simple, and obvious, but I am tired of searching for the answer. Im using a …

c compiler-construction delay pic microchip
Reading input pin of pic microcontroller with MIKROC

I need to write a program that will check if an input pin of PIC has a voltage. If a …

microcontroller pic mikroc
What does __attribute__((__interrupt__, no_auto_psv)) do?

void __attribute__((__interrupt__, no_auto_psv)) _T1Interrupt(void) // 5 Hz __attribute__ directive or macro is from GCC but __interrupt__ and …

c gcc interrupt pic