just a few comments
trying to capture a serial stream with a bit-banged routine triggered from an isr is difficult to make reliable far better to use the eusart module.
to reset rbcif flag you...
Can't get accurate current readings. VBUS voltage is correct but I can't figure out the code for current. All voltages will be <36 volts and current <0.8 amps. Any help would be greatly...
raywmson Today, 22:38Did you see here it is PicBasic pro forum ??? :rolleyes:
I bet you didn't ...
Looks to be written with XC8, the C compiler from Microchip ... :D
Am I right ?
One sure thing: LOTS are...
I am new to PICS. I am using MPLAB with a PICKT 3 programmer. I have wrote a simple program to blink a LED, it complies OK and appears to successfully load to my PIC. The LED comes on but does to...
MikeYeu Today, 18:54Greetings Richard,
thanks for the help.
The code is still under development...i'm progressing while resolving issues...
Just rambling sharing ideas and thoughts about my inventory adventure:
https://youtu.be/KopIe9lj6KM
I'm still learning OBS Studio, so I still make mistakes in setting and macros, but at least...
This is how I went about with version 2 of mylar linings.
https://youtu.be/ZgteFRSEuNs
there are a number of issues here
@ INT_DISABLE RBC_INT
this is most likely pointless. a pic can execute one and only one interrupt at a time, only a low priority interrupt can be interrupted
i...
Hi guys,
dos this makes any sense to you?
I added a debugin line with timeout and jump label inside my interrupt block and this is causing the code not work as expected as well!
Debugin...
Re: PIC 16F1613 progam not working
maybe you mean
richard Today, 23:20while(1){
LATAbits.LATA4=1;
_delay(1000000);
LATAbits.LATA4=0;
_delay(1000000);
}
while(1)