Hi,
For the RC5 stuff I was attempting to use the timer0_isr_interval
jallib library, but I ran in the following issue (using a 18f device):

The INTCON_T0IE var is not recognized in the 18f device file, just
took a quick look in a 16f628 device file and compared it with the
18f2450 device file and noticed the following

16f628 device file

var volatile bit   INTCON_TMR0IE        at INTCON : 5
var volatile bit   INTCON_T0IE          at INTCON : 5


18F device file
var volatile bit    INTCON_TMR0IE        shared at INTCON : 5
var volatile bit    REG_T0IE             shared at INTCON : 5


So my question, is the REG_T0IE var wrongly declared in the 18f device
(s) file or should the timer lib use INTCON_TMR0IE instead of file
INTCON_T0IE? This is also applicable for more variables in the device
file.

Furthermore I noticed that the DELAY_SLOTS constant is not pre-pended
with timer0_isr, I think we should change that because I can imagine
to create a similar device file for other timers (e.g. timer1)

Albert




--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jallib" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/jallib?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to