Hello
Where can I find the homepage that were on these two links?
And where do I download the latest DT_INTS?
DT_INTS-14 (12F-16F)
http://darreltaylor.com/DT_INTS-14/intro.html
DT_INTS-18 (18F)
http://darreltaylor.com/DT_INTS-18/home.html
Hello
Where can I find the homepage that were on these two links?
And where do I download the latest DT_INTS?
DT_INTS-14 (12F-16F)
http://darreltaylor.com/DT_INTS-14/intro.html
DT_INTS-18 (18F)
http://darreltaylor.com/DT_INTS-18/home.html
My Creality Ender 3 S1 Plus is a giant paperweight that can't even be used as a boat anchor, cause I'd be fined for polluting our waterways with electronic devices.
Not as dumb as yesterday, but stupider than tomorrow!
I'm working on a project using 18LF13K22. I need to use RAB Change Interrupt with DT Ints18. I made changes on DT_INTS-18.bas below but i couldn't succeed. Any suggestion?
.........Code:#define RABC_INT INTCON, RABIF ;-- RAB Port Change
Thanks..Code:ifdef RABIF INT_Source INTCON,RABIF, INTCON, RABIE,INTCON2,RABIP endif
I had to do the same thing with the PIC18F14K50.
Our entries look similar except your label is RABC_INT.
andCode:#define RAB_INT INTCON, RABIF ;-- RAB Port Change, Added 3/15/14 for PIC18F14K50
Could it be you're not enabling it with:Code:ifdef RABIF ;----{ RAB Port Change Interrupt }-----------[INTCON, RABIF]--- (Added 3/15/14 for PIC18F14K50 INT_Source INTCON,RABIF, INTCON,RABIE, INTCON2,RABIP endif
Code:INT_ENABLE RABC_INT ; Enable IOC
Louie
Edit: ooops, forgot the "@".
Code:@ INT_ENABLE RABC_INT ; Enable IOC
Louie
The chips have arrived. I tried RAB change interrupt on a demo board. The situation is the same with isis. This is my test code below.
Code:INCLUDE "DT_INTS-18.bas" ' Base Interrupt System INCLUDE "ReEnterPBP-18.bas" ' Include if using PBP interrupts ........ OSCCON = %00110100 OSCCON2 = 0 OSCTUNE = %10000000 TRISA = %11101111 TRISB = %11111111 TRISC = %00000000 ANSEL = 0 ANSELH = 0 INTCON2.7 = 0 WPUA = %00101111 WPUB = %11110000 IOCA = %00000111 IOCB = %01010000 ASM INT_LIST macro ; IntSource, Label, Type, ResetFlag? INT_Handler RABC_INT, _RABC, PBP, yes endm INT_CREATE ; Creates the interrupt processor INT_ENABLE RABC_INT ENDASM MAIN: ...... GOTO MAIN RABC : COUNTER = COUNTER + 1 @ INT_RETURN
I tried your INT code mod and sample code here (added Counter VAR Word) and it compiled okay.
A couple questions:
What are you try to do that is not happening?
And excuse my ignorance, but what is ISIS?
Louie
Bookmarks