that's it
just to keep my hand in i made this, one with the lot [ slight differences in led pins]
#CONFIG
CONFIG OSC = IRCIO67 ; Internal oscillator block, port function on RA6 and...
Type: Posts; User: richard; Keyword(s):
that's it
just to keep my hand in i made this, one with the lot [ slight differences in led pins]
#CONFIG
CONFIG OSC = IRCIO67 ; Internal oscillator block, port function on RA6 and...
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...
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...
it only works for and with ON INTERRUPT, and that's not a real interrupt
no , the isr must return to the point it was triggered from. if you try manipulating the stack to alter the return address without the proper skillset and understanding it will always result in...