PIC18F67K40 Timer issues


Closed Thread
Results 1 to 6 of 6
  1. #1
    Join Date
    Jun 2017
    Posts
    27

    Post PIC18F67K40 Timer issues

    Hello everyone.
    I'm currently working with a Pic18f67k40. The issue I'm having is that the timers (1 or 2) don't seem to work. I've modified DT_INTS-18 to work with this pic but my timers still don't seem to work. I painstakingly went over the interrupt sources to make sure that they will be "seen" by the interrupt handler to no avail. I mainly listed the interrupt sources that I would be using. I didn't list them all because there are just too many for one sitting. If anyone has done this before with any success, please post any info you may have. All I'm trying to do is use a timer interrupt to blink an LED at a constant rate, that's all. Any help with this would be greatly appreciated. Many thanks to Darryl for his great contributions.


    Here is what I have done:

    Code:
    '****************************************************************
    '*  Name    : DT_INTS-1818F67k40.bas                            *
    '*  Author  : Darrel Taylor                                     *
    '*  Notice  : Copyright (c) 2003                                *
    '*  Version : 3.3    MAR 24, 2008                               *
    '*  Date    : JUL 11, 2006                                      *
    '****************************************************************
    '*  Versions:                                                   *
    '*   3.3  : MAR 24, 2008                                        *
    '*           Corrects an initialization problem affecting the   *
    '*           first pass if CLEAR is not used                    *
    '*   3.2  : Aug 26, 2007                                        *
    '*           Update for PBP 2.50 using LONG's with PBPL         *
    '*           Added many new INT sources                         *
    '*   3.1  : JUL 18, 2006                                        *
    '*           Modified to handle smaller BANKA in the newer chips*
    '****************************************************************
    DISABLE DEBUG
    
    DEFINE  INTHAND       INT_ENTRY_H  ' Context saving for High Priority Ints
    DEFINE  INTLHAND      INT_ENTRY_L  ' Context saving for Low Priority Ints
    
    wsave       var byte  BANKA  SYSTEM   ' location for WREG
    ssave       var byte  BANK0  SYSTEM   ' location for STATUS register
    bsave       var byte  BANK0  SYSTEM   ' location for BSR register
    psaveUH     VAR BYTE  BANK0  SYSTEM   ' PCLATU Hi Pri.
    psaveUL     VAR BYTE  BANK0  SYSTEM   '        Lo Pri.
    psaveH      VAR BYTE  BANK0  SYSTEM   ' PCLATH Hi Pri.
    psaveL      VAR BYTE  BANK0  SYSTEM   '        Lo Pri.
    fsave0H     var WORD  BANK0  SYSTEM   ' locations for FSR registers
    fsave1H     var WORD  BANK0  SYSTEM
    fsave2H     var WORD  BANK0  SYSTEM
    fsave0L     var WORD  BANK0  SYSTEM   ' low priority FSR locations
    fsave1L     var WORD  BANK0  SYSTEM
    fsave2L     var WORD  BANK0  SYSTEM
    RetAddrH    VAR BYTE[3]  BANKA  SYSTEM  ' 21-bit return address Hi Pri.
    RetAddrL    VAR BYTE[3]  BANKA  SYSTEM  '                       Lo Pri.
    INT_Flags   VAR BYTE  BANKA  SYSTEM
      Serviced_H  VAR INT_Flags.0
      Serviced_L  VAR INT_Flags.1
      InHPint     VAR INT_Flags.2
      NoPriority  VAR INT_Flags.3
    
    INT_Flags = 0 
    
    goto  OVER_DT_INTS_18
    
    ASM
    ;____ Check for PBPL (PBP ver. 2.50 and above only)__________________________
    PBPLongs_Used = 0
      if (R1 - R0 == 4)
    PBPLongs_Used = 1
    ;    messg PBPL Used = 1
      endif
    
      nolist
    ;____ DEFINE available interrupt sources_____________________________________
    
      #define INT0_INT  PIR0, INT0IF    ;-- INT0 External 
      #define INT1_INT  PIR0, INT1IF    ;-- INT1 External 
      #define INT2_INT  PIR0, INT2IF    ;-- INT2 External 
      #define INT3_INT  PIR0, INT3IF    ;-- INT3 External
      #define TMR0_INT  PIR0, TMR0IF    ;-- TMR0 Overflow  
      #define IOC_INT   PIR0, IOCIF     ;-- Interrupt-on-Change Flag bit
      
      #define OSC_INT   PIR1, OSCFIF    ;-- Oscillator Fail Interrupt Flag bit
      #define CSW_INT   PIR1, CSWIF     ;-- Clock-Switch Interrupt Flag bit
      #define ADT_INT   PIR1, ADTIF     ;-- ADC Threshold Interrupt Flag bit
      #define AD_INT    PIR1, ADIF      ;-- ADC Interrupt Flag bit
    
      #define ZCD_INT   PIR2, ZCDIF     ;-- Zero-Cross Detect Interrupt Flag bit            
      #define CMP1_INT  PIR2, CM1IF     ;-- Comparator1
      #define CMP2_INT  PIR2, CM2IF     ;-- Comparator2
      #define CMP3_INT  PIR2, CM3IF     ;-- Comparator3
      #define HLVD_INT  PIR2, HLVDIF    ;-- High/Low Voltage Detect 
      
      #define RX1_INT   PIR3, RC1IF     ;-- USART1 Receive 
      #define RX2_INT   PIR3, RC2IF     ;-- USART2 Receive   
      #define TX1_INT   PIR3, TX1IF     ;-- USART1 Transmit 
      #define TX2_INT   PIR3, TX2IF     ;-- USART2 Transmit 
      #define BUS1_INT  PIR3, BCL1IF    ;-- Bus 1 Collision 
      #define BUS2_INT  PIR3, BCL2IF    ;-- Bus 2 Collision  
      #define SSP1_INT  PIR3, SSP1IF    ;-- Synchronous Serial Port 1
      #define SSP2_INT  PIR3, SSP2IF    ;-- Synchronous Serial Port 2
      
      #define RX3_INT   PIR4, RC3IF     ;-- USART3 Receive 
      #define RX4_INT   PIR4, RC4IF     ;-- USART4 Receive
      #define RX5_INT   PIR4, RC5IF     ;-- USART5 Receive   
      #define TX3_INT   PIR4, TX3IF     ;-- USART3 Transmit 
      #define TX4_INT   PIR4, TX4IF     ;-- USART4 Transmit 
      #define TX5_INT   PIR4, TX5IF     ;-- USART5 Transmit  
      
      #define TMR8_INT  PIR5, TMR8IF    ;-- Timer 8
      #define TMR7_INT  PIR5, TMR7IF    ;-- Timer 7
      #define TMR6_INT  PIR5, TMR6IF    ;-- Timer 6
      #define TMR5_INT  PIR5, TMR5IF    ;-- Timer 5
      #define TMR4_INT  PIR5, TMR4IF    ;-- Timer 4
      #define TMR3_INT  PIR5, TMR3IF    ;-- Timer 3
      #define TMR2_INT  PIR5, TMR2IF    ;-- Timer 2
      #define TMR1_INT  PIR5, TMR1IF    ;-- Timer 1
      
      #define TMR7G_INT  PIR6, TMR7GIF  ;-- Timer 7 Gate
      #define TMR5G_INT  PIR6, TMR5GIF  ;-- Timer 5 Gate
      #define TMR3G_INT  PIR6, TMR3GIF  ;-- Timer 3 Gate
      #define TMR1G_INT  PIR6, TMR1GIF  ;-- Timer 1 Gate
      
      #define CCP1_INT  PIR7, CCP1IF    ;-- ECCP1 
      #define CCP2_INT  PIR7, CCP2IF    ;-- ECCP2 
      #define CCP3_INT  PIR7, CCP3IF    ;-- ECCP3 
      #define CCP4_INT  PIR7, CCP4IF    ;-- ECCP4 
      #define CCP5_INT  PIR7, CCP5IF    ;-- ECCP5   
      
      #define EE_INT    PIR2, NVMIF      ;-- EEPROM/FLASH Write Operation
    
    ENDASM
    
    asm
    ; -- macro --
    INT_Source  macro  IFR, IFB, IER, IEB, IPR, IPB
        if (IflagReg == IFR) && (IflagBit == IFB)  
      list  
    INT_Flag_Reg = IFR
    INT_Flag_Bit = IFB
    INT_Enable_Reg = IER
    INT_Enable_Bit = IEB
    INT_Priority_Reg = IPR
    INT_Priority_Bit = IPB
    Found = 1
        endif
      nolist  
        endm 
    endasm
    
    
    asm
    ;____________________________________________________________________________
    GetIntInfo  macro  IflagReg, IflagBit
      nolist
    INT_Flag_Reg = -1
    INT_Flag_Bit = -1
    INT_Enable_Reg = -1
    INT_Enable_Bit = -1
      ifdef  IPR1
    INT_Priority_Reg = -1
    INT_Priority_Bit = -1
      endif
    Found = 0
    
      ifdef INT0IF  ;----{ INT0 External Interrupt }----------[INTCON, INT0IF]---
          INT_Source  INTCON,INT0IF, PIE0,INT0IE, IPR0, INT0IP
      endif
      ifdef INT1IF  ;----{ INT1 External Interrupt }---------[INTCON, INT1IF]---
          INT_Source  INTCON,INT1IF, PIE0,INT1IE, IPR0,INT1IP
      endif
      ifdef INT2IF  ;----{ INT2 External Interrupt }---------[INTCON, INT2IF]---
          INT_Source  INTCON,INT2IF, PIE0,INT2IE, IPR0,INT2IP
      endif
      ifdef INT3IF  ;----{ INT3 External Interrupt }---------[INTCON, INT3IF]---
          INT_Source  INTCON,INT3IF, PIE0,INT3IE, IPR0,INT3IP
      endif
    
      ifdef TMR0IF  ;----{ TMR0 Overflow   }----------[PIR0, TMR0IF]---
          INT_Source  PIR0,TMR0IF, PIE0,TMR0IE, IPR0,TMR0IP
      endif
      ifdef TMR1IF  ;----{ TMR1 to PR1 Match Interrupt }------------[PIR5, TMR1IF]---
          INT_Source  PIR5,TMR1IF, PIE5,TMR1IE, IPR5,TMR1IP
      endif
      ifdef TMR2IF  ;----{ TMR2 to PR2 Match Interrupt }--------[PIR5, TMR2IF]---
          INT_Source  PIR5,TMR2IF, PIE5,TMR2IE, IPR5,TMR2IP
      endif
      ifdef TMR3IF  ;----{ TMR3 to PR3 Match Interrupt }------------[PIR5, TMR3IF]---
          INT_Source  PIR5,TMR3IF, PIE5,TMR3IE, IPR5,TMR3IP
      endif
      ifdef TMR4IF  ;----{ TMR4 to PR4 Match Interrupt }------------[PIR5, TMR4IF]---
          INT_Source  PIR5,TMR4IF, PIE5,TMR4IE, IPR5,TMR4IP
      endif
      ifdef TMR5IF  ;----{ TMR5 to PR5 Match Interrupt }------------[PIR5, TMR5IF]---
          INT_Source  PIR5,TMR5IF, PIE5,TMR5IE, IPR5,TMR5IP
      endif
      ifdef TMR6IF  ;----{ TMR6 to PR6 Match Interrupt }--------[PIR5, TMR6IF]---
          INT_Source  PIR5,TMR6IF, PIE5,TMR6IE, IPR5,TMR6IP
      endif
      ifdef TMR7IF  ;----{ TMR7 Overflow Interrupt }------------[PIR5, TMR7IF]---
          INT_Source  PIR5,TMR7IF, PIE5,TMR7IE, IPR5,TMR7IP
      endif
      ifdef TMR8IF  ;----{ TMR8 to PR8 Match Interrupt }------------[PIR5, TMR8IF]---
          INT_Source  PIR5,TMR8IF, PIE5,TMR8IE, IPR5,TMR8IP
      endif 
      
      ifdef TX1IF   ;----{ USART1 Transmit Interrupt }-----------[PIR3, TX1IF]---
          INT_Source  PIR3,TX1IF, PIE3,TX1IE, IPR3,TX1IP
      endif
      ifdef RC1IF   ;----{ USART1 Receive Interrupt }------------[PIR3, RC1IF]---
          INT_Source  PIR3,RC1IF, PIE3,RC1IE, IPR3,RC1IP
      endif  
      ifdef TX2IF   ;----{ USART2 Transmit Interrupt }-----------[PIR3, TX2IF]---
          INT_Source  PIR3,TX2IF, PIE3,TX2IE, IPR3,TX2IP
      endif 
      ifdef RC2IF   ;----{ USART2 Receive Interrupt }------------[PIR3, RC2IF]---
          INT_Source  PIR3,RC2IF, PIE3,RC2IE, IPR3,RC2IP
      endif  
      ifdef TX3IF   ;----{ USART3 Transmit Interrupt }-----------[PIR4, TX3IF]---
          INT_Source  PIR4,TX3IF, PIE4,TX3IE, IPR4,TX3IP
      endif
      ifdef RC3IF   ;----{ USART3 Receive Interrupt }------------[PIR4, RC3IF]---
          INT_Source  PIR4,RC3IF, PIE4,RC3IE, IPR4,RC3IP
      endif  
      ifdef TX4IF   ;----{ USART4 Transmit Interrupt }-----------[PIR4, TX4IF]---
          INT_Source  PIR4,TX4IF, PIE4,TX4IE, IPR4,TX4IP
      endif 
      ifdef RC4IF   ;----{ USART4 Receive Interrupt }------------[PIR4, RC4IF]---
          INT_Source  PIR4,RC4IF, PIE4,RC4IE, IPR4,RC4IP
      endif
      ifdef TX5IF   ;----{ USART5 Transmit Interrupt }-----------[PIR4, TX5IF]---
          INT_Source  PIR4,TX5IF, PIE4,TX5IE, IPR4,TX5IP
      endif
      ifdef RC5IF   ;----{ USART5 Receive Interrupt }------------[PIR4, RC5IF]---
          INT_Source  PIR4,RC5IF, PIE4,RC5IE, IPR4,RC5IP
      endif  
    
       ifdef CM1IF    ;----{ Comparator1 Interrupt }-----------------[PIR2, CM1IF]---
          INT_Source  PIR2,CM1IF, PIE2,CM1IE, IPR2,CM1IP
      endif 
       ifdef CM2IF    ;----{ Comparator2 Interrupt }-----------------[PIR2, CM2IF]---
          INT_Source  PIR2,CM2IF, PIE2,CM2IE, IPR2,CM2IP
      endif 
       ifdef CM3IF    ;----{ Comparator3 Interrupt }-----------------[PIR2, CM3IF]---
          INT_Source  PIR2,CM3IF, PIE2,CM3IE, IPR2,CM3IP
      endif 
    
      ifdef BCL1IF   ;----{ Bus 1 Collision Interrupt }-------------[PIR3, BCL1IF]---
          INT_Source  PIR3,BCL1IF, PIE3,BCL1IE, IPR3,BCL1IP
      endif  
      ifdef BCL2IF   ;----{ Bus 2 Collision Interrupt }-------------[PIR3, BCL2IF]---
          INT_Source  PIR3,BCL2IF, PIE3,BCL2IE, IPR3,BCL2IP
      endif
    
      ifdef HLVDIF  ;----{ High/Low Voltage Detect Interrupt }-----[PIR2, HLVDIF]---
          INT_Source  PIR2,HLVDIF, PIE2,HLVDIE, IPR2,HLVDIP
      endif  
      
      ifdef ADIF    ;----{ ADC Converter Interrupt }--------------[PIR1, ADIF]---
          INT_Source  PIR1,ADIF, PIE1,ADIE, IPR1,ADIP
      endif  
      ifdef ADTIF    ;----{ ADC Threshold Interrupt }--------------[PIR1, ADTIF]---
          INT_Source  PIR1,ADTIF, PIE1,ADTIE, IPR1,ADTIP
      endif 
      
      ifdef SSP1IF   ;----{ Synchronous Serial Port1 Interrupt }---[PIR3, SSP1IF]---
          INT_Source  PIR3,SSP1IF, PIE3,SSP1IE, IPR3,SSP1IP
      endif
      ifdef SSP2IF   ;----{ Synchronous Serial Port2 Interrupt }---[PIR3, SSP2IF]---
          INT_Source  PIR3,SSP2IF, PIE3,SSP2IE, IPR3,SSP2IP
      endif
    
      ifdef CCP1IF  ;----{ CCP1 Interrupt }---------------------[PIR7, CCP1IF]---
          INT_Source  PIR7,CCP1IF, PIE7,CCP1IE, IPR7,CCP1IP
      endif
      ifdef CCP2IF  ;----{ CCP2 Interrupt Flag }----------------[PIR7, CCP2IF]---
          INT_Source  PIR7,CCP2IF, PIE7,CCP2IE, IPR7,CCP2IP
      endif
      ifdef CCP3IF  ;----{ CCP3 Interrupt Flag }----------------[PIR7, CCP3IF]---
          INT_Source  PIR7,CCP3IF, PIE7,CCP3IE, IPR7,CCP3IP
      endif
      ifdef CCP4IF  ;----{ CCP4 Interrupt Flag }----------------[PIR7, CCP4IF]---
          INT_Source  PIR7,CCP4IF, PIE7,CCP4IE, IPR7,CCP4IP
      endif
      ifdef CCP5IF  ;----{ CCP5 Interrupt Flag }----------------[PIR7, CCP5IF]---
          INT_Source  PIR7,CCP5IF, PIE7,CCP5IE, IPR7,CCP5IP
      endif  
    
      ifdef OSCFIF  ;----{ Osc Fail  Interrupt Flag }-----------[PIR1, OSCFIF]---
          INT_Source  PIR1,OSCFIF, PIE1,OSCFIE, IPR1,OSCFIP
      endif
    
      ifdef CSWIF  ;----{ CLOCK SWITCH Interrupt Flag }-----------[PIR1, CSWIF]---
          INT_Source  PIR1,CSWIF, PIE1,CSWIE, IPR1,CSWIP
      endif
      
      ifdef ZCDIF  ;----{ ZERO CROSS DETECT Interrupt Flag }-----------[PIR2, ZCDIF]---
          INT_Source  PIR2,ZCDIF, PIE2,ZCDIE, IPR2,ZCDIP
      endif
      
      ifdef NVMIF    ;----{ EEPROM/FLASH Write Operation Interrupt [PIR8, EEIF]---
          INT_Source  PIR8,NVMIF, PIE8,NVMIE, IPR8,NVMIP
      endif  
      list
        endm
    endasm
    
    
    
    
    asm  ; -- CAN Module --
    
      
    
      list  
    ENDASM
    
    ;____[ if not using Low Priority INTS, create a dummy handler ]_______________
    ASM
        ifndef  USE_LOWPRIORITY
    INT_ENTRY_L
            retfie
        else
            if (USE_LOWPRIORITY != 1)
    INT_ENTRY_L
                retfie
            endif
        endif        
    ENDASM        
    
    ;_____________________________________________________________________________
    Asm
    asm = 0    ; Assembly language Interrupts
    ASM = 0
    Asm = 0
    pbp = 1    ; Basic language interrupts
    PBP = 1
    Pbp = 1
    YES = 1
    yes = 1
    Yes = 1
    NO = 0
    no = 0
    No = 0
    H equ 'H'  ; High Priority
    h equ 'H'
    L equ 'L'  ; Low Priority
    l equ 'L'
    
      nolist
      
    ;_____________________________________________________________________________
    SaveFSR  macro  F, Pr
      list
        if (F >= 0) && (F <= 2)
            if (Pr == H) || (Pr == L)
                movff    FSR#v(F)L, fsave#v(F)Pr
                movff    FSR#v(F)H, fsave#v(F)Pr + 1
              nolist
            else
                ERROR "SaveFSR - Invalid Priority"
            endif
        else
            ERROR "SaveFSR - Invalid FSR number"
        endif
        list
      endm
    ENDASM
    
    ;_____________________________________________________________________________
    Asm
    RestFSR  macro  F, Pr
      list
        if (F >= 0) && (F <= 2)
            if (Pr == H) || (Pr == L)
                movff    fsave#v(F)Pr , FSR#v(F)L
                movff    fsave#v(F)Pr + 1 , FSR#v(F)H 
              nolist
            else
                ERROR "RestFSR - Invalid Priority"
            endif
        else
            ERROR "RestFSR - Invalid FSR number"
        endif
        list
      endm
    ENDASM
    
    ;---[Stay compatible with the 14-bit version]---------------------------------
    Asm
    INT_FINISH_H   macro
      endm
    EndAsm
    
    ;---[Create the High Priority Interrupt Processor]----------------------------
    ASM
    INT_CREATE_H  macro
      local OverCREATE
        goto OverCREATE
    Priority = H    
    INT_ENTRY_H  
        movff   PCLATU, psaveUH
        movff   PCLATH, psaveH
        SaveFSR  0, H
        SaveFSR  1, H
        SaveFSR  2, H
        bsf      _InHPint, 0
    List_Start_H
        bcf      _Serviced_H, 0         ; Clear Serviced flag
        clrf  BSR
    PREV_BANK = 0
        ifdef INT_LIST_H
            INT_LIST_H                  ; Expand the users list of HP INT handlers
        else
            ifdef INT_LIST
                INT_LIST                ; Expand the 16F Compatible List
            else
                error "INT_CREATE_H - INT_LIST or INT_LIST_H not found"
            endif
        endif
        btfsc    _Serviced_H,0          ; if anything was serviced
        goto     List_Start_H           ; go around, and check again
    
        ifdef ReEnterHPused             ; was ReEnterPBP-18.bas included
            GetAddress21  INT_EXIT_H, RetAddrH
            L?GOTO   _RestorePBP_H      ; Restore PBP system Vars
        endif
    
    INT_EXIT_H
    PREV_BANK = 0
        bcf      _InHPint, 0
        RestFSR  0, H                   ; Restore FSR0, if it was saved?
        RestFSR  1, H                   ; Restore FSR1, if it was saved?
        RestFSR  2, H                   ; Restore FSR2, if it was saved?
        movff    psaveH, PCLATH
        movff    psaveUH, PCLATU
        retfie    FAST                  ; Return from Interrupt
    OverCREATE
        bsf   INTCON,GIE, 0             ; Enable High Priority Interrupts
        bsf   INTCON,PEIE, 0            ; Enable Peripheral Interrupts
      endm
    
    ;---[Stay compatible with the 14-bit version]---------------------------------
    INT_CREATE  macro
        INT_CREATE_H
      endm
    ENDASM
    
    ;---[Create the Low Priority Interrupt Processor]-----------------------------
    ASM
    INT_CREATE_L  macro
      local OverCREATE
        goto OverCREATE
        ifdef USE_LOWPRIORITY
            if (USE_LOWPRIORITY != 1)
           error "'DEFINE USE_LOWPRIORITY 1' required for Low Priority Interrupts"
            endif
        else
           error "'DEFINE USE_LOWPRIORITY 1' required for Low Priority Interrupts"
        endif
    Priority = L
    INT_ENTRY_L  
        movff   WREG, wsave             ; Wreg
        movff   STATUS, ssave           ; STATUS
        movff   BSR, bsave              ; BSR
        movff   PCLATU, psaveUL
        movff   PCLATH, psaveL
        SaveFSR  0, L                   ; FSR0
        SaveFSR  1, L                   ; FSR1
        SaveFSR  2, L                   ; FSR2
        bcf      _InHPint, 0    
    List_Start_L
      clrf  BSR
    PREV_BANK = 0
        bcf      _Serviced_L, 0
        ifdef INT_LIST_L
            INT_LIST_L                  ; Expand the users list of HP INT handlers
        else
            error "INT_CREATE_L - INT_LIST_L not defined, can not create"
        endif
        btfsc    _Serviced_L, 0         ; if anything was serviced
        goto     List_Start_L           ; go around, and check again
    
        ifdef ReEnterLPused             ; was ReEnterPBP-18LP.bas included
            GetAddress21  INT_EXIT_L, RetAddrL
            L?GOTO   _RestorePBP_L      ; Restore PBP system Vars
        endif
    
    INT_EXIT_L
    PREV_BANK = 0
        RestFSR  0, L                   ; Restore saved vars
        RestFSR  1, L
        RestFSR  2, L                
        movff   psaveUL, PCLATU
        movff   psaveL, PCLATH
        movff   bsave, BSR              ; BSR
        movff   wsave, WREG             ; WREG
        movff   ssave, STATUS           ; STATUS
        retfie                          ; Return from Interrupt
    OverCREATE
        bsf   RCON,IPEN, 0              ; Enable Interrupt Priorities
        bsf   INTCON,GIEL, 0            ; Enable Low Priority Interrupts
      endm
    ENDASM
    
    ASM
    ;---[Returns the Address of a Label as a Word]--(under 64K)------------------
    GetAddress macro Label, Wout
        CHK?RP Wout
        movlw low Label          ; get low byte
        movwf Wout
        movlw High Label         ; get high byte
        movwf Wout + 1
        endm
    
    ;---[Returns the Address of a Label as a 3 byte array]---(under/over 64k)-----
    GetAddress21 macro Label, Aout
        CHK?RP Aout
        movlw low Label          ; get low byte
        movwf Aout
        movlw high Label         ; get high byte
        movwf Aout + 1
        movlw upper Label        ; get upper byte
        movwf Aout + 2
        endm
    
    ;---[find correct bank for a PBP BIT variable]-------------------------------
    CHKRP?T  macro reg, bit
            CHK?RP  reg
        endm
        
    
    
    ;---[find Assigned Priority for specified INT Source]------------------------
    INT_Count = 0
    
    FindIntPriority  macro IntFlagReg, IntFlagBit
      local LoopCount
        nolist
    Pfound = 0
    LoopCount = 1
          while LoopCount <= INT_Count
              if  (IntFlagReg == PrList#v(LoopCount)R)
                 if (IntFlagBit == PrList#v(LoopCount)B)
      list
    Priority =  PrList#v(LoopCount)Priority
    Pfound = 1
                 endif
              endif
    LoopCount += 1
          endw
      endm  
    ENDASM
    
    ASM
    
    ;---[Add an Interrupt Source to the user's list of INT Handlers]--------------
    INT_Handler  macro  IntFlagReg, IntFlagBit, Label, Type, Reset
      list
        local AfterSave, AfterUser, NoInt
    INT_Count += 1
    PrList#v(INT_Count)R = IntFlagReg
    PrList#v(INT_Count)B = IntFlagBit
    PrList#v(INT_Count)Priority = Priority
            GetIntInfo   IntFlagReg, IntFlagBit
            if (Found == YES)
                btfss    INT_Enable_Reg, INT_Enable_Bit, 0  ; if INT is enabled
                goto   NoInt
                btfss    INT_Flag_Reg, INT_Flag_Bit, 0      ; and the Flag set?
                goto     NoInt
                if (Priority == H)
                    bsf      _Serviced_H, 0
                else
                    bsf      _Serviced_L, 0
                endif
                ifdef NO_CLRWDT
                    if  (NO_CLRWDT != 1)
                        CLRWDT
                    endif
                else
                    CLRWDT
                endif
                    
                if (Type == PBP)                         ; If INT handler is PBP
                  if (Priority == H)
                    ifdef ReEnterHPused
                        GetAddress21  AfterSave, RetAddrH  
                        L?GOTO  _SavePBP_H        ; Save PBP system Vars in HP INT
                    else
        error "ReEnterPBP-18 must be INCLUDEd to use High Priority PBP interrupts"
                    endif
                  else ; Priority = L
                    ifdef ReEnterLPused
                        GetAddress21  AfterSave, RetAddrL  
                        L?GOTO  _SavePBP_L        ; Save PBP system Vars in LP INT
                    else
       error "ReEnterPBP-18LP must be INCLUDEd to use Low Priority PBP interrupts"
                    endif
                  endif
                endif
    AfterSave
    PREV_BANK = 0
                if (Priority == H)
                      GetAddress21  AfterUser, RetAddrH  
                else ; Priority = L
                      GetAddress21  AfterUser, RetAddrL
                endif  
                L?GOTO   Label                        ; goto the users INT handler
                        
    AfterUser
    PREV_BANK = 0
                if (Reset == YES)                      ; reset flag (if specified)
                    bcf      INT_Flag_Reg, INT_Flag_Bit, 0 
                endif
            else
                error Interrupt Source (IntFlagReg,IntFlagBit) not found
            endif
    NoInt
        clrf  BSR
    PREV_BANK = 0
        endm
    ENDASM
    
    asm
    ;---[Returns from a "goto" subroutine]--(21-bit RetAddr? must be set first)---
    INT_RETURN  macro
      local Ret2LP, Ret2HP
          btfsc   _InHPint, 0
          goto    Ret2HP
    Ret2LP
          movff   RetAddrL + 2, PCLATU  ; Load PC buffers with return address
          movff   RetAddrL + 1, PCLATH
          movf    RetAddrL, W, 0
        clrf  BSR                    ; Set to BANK0 before returning
    PREV_BANK = 0                    ; Tell PBP about the BANK change
          movwf   PCL, 0             ; Go back to where we were
          
    Ret2HP       
          movff   RetAddrH + 2, PCLATU ; Load PC buffers with return address
          movff   RetAddrH + 1, PCLATH
          movf    RetAddrH, W, 0
        clrf  BSR                    ; Set to BANK0 before returning
    PREV_BANK = 0                    ; Tell PBP about the BANK change
          movwf   PCL, 0             ; Go back to where we were
        endm    
        
    ;---[Enable an interrupt source]----------------------------------------------
    INT_ENABLE  macro  IntFlagReg, IntFlagBit
          GetIntInfo   IntFlagReg, IntFlagBit
          if (Found == YES)
              FindIntPriority  IntFlagReg, IntFlagBit
              if (Pfound == 1)
                  if (INT_Priority_Reg != -1)
                      if (Priority == H)
                          bsf  INT_Priority_Reg, INT_Priority_Bit, 0
                      else
                          if (Priority == L)
                              bcf  INT_Priority_Reg, INT_Priority_Bit, 0
                          else
                              error "INT_ENABLE - Invalid Priority Specified"
                          endif
                      endif
                  else
                      if (Priority == L)
                          error "INT0_INT can NOT be assigned to Low Priority"
                      endif
                  endif
              else
                  error "INT_ENABLE - Priority State Not Found"
              endif
    ;          bcf     INT_Flag_Reg, INT_Flag_Bit, 0        ; clear the flag first 
              bsf     INT_Enable_Reg, INT_Enable_Bit, 0    ; enable the INT source  
          else
              error  "INT_ENABLE - Interrupt Source not found!"
          endif
        endm    
    
    ;---[Disable an interrupt source]---------------------------------------------
    INT_DISABLE  macro  IntFlagReg, IntFlagBit
          GetIntInfo   IntFlagReg, IntFlagBit
          if (Found == YES)
              bcf     INT_Enable_Reg, INT_Enable_Bit, 0   ; disable the INT source  
          else
              error "INT_DISABLE - Interrupt Source not found!"
          endif
        endm    
    
    ;---[Clear an interrupt Flag]-------------------------------------------------
    INT_CLEAR  macro  IntFlagReg, IntFlagBit
          GetIntInfo   IntFlagReg, IntFlagBit
          if (Found == YES)
              bcf     INT_Flag_Reg, INT_Flag_Bit, 0       ; clear the INT flag
          else
              error "INT_CLEAR -  Interrupt Source not found!"
          endif
        endm
    
    ENDASM
    
    ; ---[See if we need to save TBLPTR]------------------------------------------
    ASM
    Save_TBLPTR = 0
    
        ifdef SIN_USED
    Save_TBLPTR = 1
        endif
        ifdef DTMFOUT_USED
    Save_TBLPTR = 1
        endif
        ifdef SERDELAY_USED
    Save_TBLPTR = 1
        endif
        ifdef CONVBIT_USED
    Save_TBLPTR = 1
        endif
        ifdef ERASECODE_USED
    Save_TBLPTR = 1
        endif
        ifdef READCODE_USED
    Save_TBLPTR = 1
        endif
        ifdef WRITECODE_USED
    Save_TBLPTR = 1
        endif
        ifdef LOOKDOWN?BCLB
    Save_TBLPTR = 1
        endif
        ifdef LOOKDOWN?BCLT
    Save_TBLPTR = 1
        endif
        ifdef LOOKDOWN?BCLW
    Save_TBLPTR = 1
        endif
        ifdef LOOKDOWN?CCLB
    Save_TBLPTR = 1
        endif
        ifdef LOOKDOWN?CCLT
    Save_TBLPTR = 1
        endif
        ifdef LOOKDOWN?CCLW
    Save_TBLPTR = 1
        endif
        ifdef LOOKDOWN?WCLB
    Save_TBLPTR = 1
        endif
        ifdef LOOKDOWN?WCLT
    Save_TBLPTR = 1
        endif
        ifdef LOOKDOWN?WCLW
    Save_TBLPTR = 1
        endif
        ifdef LOOK2_USED 
    Save_TBLPTR = 1
        endif
        ifdef LOOKUP?BCLB
    Save_TBLPTR = 1
        endif
        ifdef LOOKUP?BCLT
    Save_TBLPTR = 1
        endif
        ifdef LOOKUP?BCLW
    Save_TBLPTR = 1
        endif
        ifdef LOOKUP?CCLB
    Save_TBLPTR = 1
        endif
        ifdef LOOKUP?CCLT
    Save_TBLPTR = 1
        endif
        ifdef LOOKUP?CCLW
    Save_TBLPTR = 1
        endif
        ifdef LOOKUP?TCLB
    Save_TBLPTR = 1
        endif
        ifdef LOOKUP?TCLT
    Save_TBLPTR = 1
        endif
        ifdef LOOKUP?TCLW
    Save_TBLPTR = 1
        endif
        ifdef LOOKUP?WCLB
    Save_TBLPTR = 1
        endif
        ifdef LOOKUP?WCLT
    Save_TBLPTR = 1
        endif
        ifdef LOOKUP?WCLW
    Save_TBLPTR = 1
        endif
    endasm
    
    OVER_DT_INTS_18:
    
    ENABLE DEBUG
      
    ;  #define TMR3_INT  PIR2, TMR3IF    ;-- TMR3 Overflow
    ;  #define RBC_INT   PIR0, RBIF      ;-- RB Port Change
    ;  #define TMR4_INT  PIR3, TMR4IF    ;-- TMR4 Overflow 
    ;  #define EE_INT    PIR2, EEIF      ;-- EEPROM/FLASH Write Operation  
    ;  #define LVD_INT   PIR2, LVDIF     ;-- Low Voltage Detect
    ;  #define PSP_INT   PIR1, PSPIF     ;-- Parallel Slave Port Read/Write 
    ;  #define AD_INT    PIR1, ADIF      ;-- A/D Converter 
    ;  #define SSP_INT   PIR1, SSPIF     ;-- Master Synchronous Serial Port 
    ;  #define OSC_INT   PIR2, OSCFIF    ;-- Oscillator Fail 
    ; -- Added for ver. 3.2 --
    ;  #define SPP_INT   PIR1, SPPIF     ;-- Streaming Parallel Port Read/Write
    ;  #define LCD_INT   PIR3, LCDIF     ;-- LCD Driver
    ;  #define PMP_INT   PIR1, PMPIF     ;-- Parallel Master Port
    ;  #define PT_INT    PIR3, PTIF      ;-- PWM Time Base
    ;  #define IC1IF_INT  PIR3, IC1IF    ;-- Motion Feedback
    ;  #define IC2QEIF_INT  PIR3, IC2QEIF  ;-- Motion Feedback
    ;  #define IC3DRIF_INT  PIR3, IC3DRIF  ;-- Motion Feedback
    ;_____ Comparators __________________________________________________________
    ;  #define CMP0_INT  PIR1, CMP0IF    ;-- Comparator 0 - 1230/1330 only
    
    
    
    
    ;CMPIFREG = PIR2                     ;-- Comparator 1
    ;CMPIEREG = PIE2
    ;CMPIPREG = IPR2
    ;    ifdef C1IF                      ;     18F24K20  18F25K20  18F26K20
    ;CM1IFBIT = C1IF                     ;     18F44K20  18F45K20  18F46K20
    ;    endif
    ;    ifdef CM1IF
    ;CM1IFBIT = CM1IF                    ;     several J PICs
    ;    endif
    ;    ifdef CMP1IF
    ;CMPIFREG = PIR1                     ;     1230/1330 only
    ;CM1IFBIT = CMP1IF
    ;CMPIEREG = PIE1
    ;CMPIPREG = IPR1
    ;    endif
    
    ;    ifdef CM1IFBIT
    ;       #define CMP1_INT  CMPIFREG, CM1IFBIT     
    ;    endif
    
    ;    ifdef C2IF                      ;-- Comparator 2
    ;CM2IFBIT = C2IF                     ;     18F24K20  18F25K20  18F26K20
    ;    endif                           ;     18F44K20  18F45K20  18F46K20
    ;    ifdef CM2IF
    ;CM2IFBIT = CM2IF                    ;     several J PICs
    ;    endif    
    ;    ifdef CMP2IF
    ;CM2IFBIT = CMP2IF                   ;     1230/1330 only
    ;    endif    
    
    ;    ifdef CM2IFBIT
    ;      #define CMP2_INT  CMPIFREG, CM2IFBIT     
    ;    endif
    
    ;_____ USB Module ___________________________________________________________
    
    ;  #define USB_INT       PIR2, USBIF   ;-- USB Interrupt (funnel)
    ;  #define USB_ACTV_INT  UIR,  ACTVIF  ;-- Bus Activity Detect 
    ;  #define USB_ERR_INT   UIR,  UERRIF  ;-- USB Error Condition INT (funnel)
    ;  #define USB_RST_INT   UIR,  URSTIF  ;-- USB Reset 
    ;  #define USB_IDLE_INT  UIR,  IDLEIF  ;-- Idle Detect 
    ;  #define USB_STALL_INT UIR,  STALLIF ;-- A STALL Handshake 
    ;  #define USB_TRN_INT   UIR,  TRNIF   ;-- Transaction Complete 
    ;  #define USB_SOF_INT   UIR,  SOFIF   ;-- START-OF-FRAME Token 
    
    ; -- USB Error Flags --
    ;  #define USB_BTO_INT   UEIR, BTOEF   ;-- Bus Turnaround Time-out Error
    ;  #define USB_BTS_INT   UEIR, BTSEF   ;-- Bit Stuff Error
    ;  #define USB_CRC16_INT UEIR, CRC16EF ;-- CRC16 Failure
    ;  #define USB_CRC5_INT  UEIR, CRC5EF  ;-- CRC5 Host Error
    ;  #define USB_DFN8_INT  UEIR, DFN8EF  ;-- Data Field Size Error
    ;  #define USB_PID_INT   UEIR, PIDEF   ;-- PID Check Failure
       
    ;_____ Ethernet Module ______________________________________________________
    ;  #define ETH_INT       PIR2, ETHIF   ;-- Ethernet Module
    ;  #define ETH_DMA_INT    EIR, DMAIF   ;-- DMA Interrupt
    ;  #define ETH_LINK_INT   EIR, LINKIF  ;-- Link Status Change
    ;  #define ETH_PKT_INT    EIR, PKTIF   ;-- Receive Packet Pending
    ;  #define ETH_RXER_INT   EIR, RXERIF  ;-- Receive Error
    ;  #define ETH_TXER_INT   EIR, TXERIF  ;-- Transmit Error
    ;  #define ETH_TX_INT     EIR, TXIF    ;-- Transmit
    
    ;_____ CAN Module ___________________________________________________________
    ;  #define CAN_ERR_INT    PIR3, ERRIF    ;-- CAN bus Error
    ;  #define CAN_IRX_INT    PIR3, IRXIF    ;-- Invalid Received Message
    ;  #define CAN_RXB0_INT   PIR3, RXB0IF   ;-* Receive Buffer 0      Mode 0
    ;  #define CAN_FIFOWM_INT PIR3, FIFOWMIF ;-- FIFO Watermark        Mode 1, 2
    ;  #define CAN_RXB1_INT   PIR3, RXB1IF   ;-* Receive Buffer 1      Mode 0
    ;  #define CAN_RXBn_INT   PIR3, RXBnIF   ;-- Any Receive Buffer    Mode 1, 2
    ;  #define CAN_TXB0_INT   PIR3, TXB0IF   ;-- Transmit Buffer 0
    ;  #define CAN_TXB1_INT   PIR3, TXB1IF   ;-- Transmit Buffer 1
    ;  #define CAN_TXB2_INT   PIR3, TXB2IF   ;-* Transmit Buffer 2     Mode 0
    ;  #define CAN_TXBn_INT   PIR3, TXBnIF   ;-- Any Transmit Buffer   Mode 1, 2
    ;  #define CAN_WAKE_INT   PIR3, WAKIF    ;-- CAN bus Activity Wake-up
    >

  2. #2
    Join Date
    Aug 2011
    Posts
    408


    Did you find this post helpful? Yes | No

    Default Re: PIC18F67K40 Timer issues

    There's a version of DT_INTS floating around that has support for the K40. Look around for V3.4c.

    If you want to use your file and you've changed all the xxx_INT sources, there are two addtl changes to make:

    - need to add banksel handling to the INT_Handler macro
    Code:
    INT_Handler  macro  IntFlagReg, IntFlagBit, Label, Type, Reset
      list
        local AfterSave, AfterUser, NoInt
    INT_Count += 1
    PrList#v(INT_Count)R = IntFlagReg
    PrList#v(INT_Count)B = IntFlagBit
    PrList#v(INT_Count)Priority = Priority
            GetIntInfo   IntFlagReg, IntFlagBit
            if (Found == YES)
                CHK?RP INT_Enable_Reg                    ;<<<<<<<<ADD THIS
                btfss    INT_Enable_Reg, INT_Enable_Bit  ; if INT is enabled
                goto   NoInt
                CHK?RP INT_Flag_Reg                      ;<<<<<<<<ADD THIS
                btfss    INT_Flag_Reg, INT_Flag_Bit      ; and the Flag set?
                goto     NoInt
    - the interrupt priority bit has moved in the K40... it's no longer in RCON.
    Code:
    INT_EXIT_L
    PREV_BANK = 0
        RestFSR  0, L                   ; Restore saved vars
        RestFSR  1, L
        RestFSR  2, L                
        movff   psaveUL, PCLATU
        movff   psaveL, PCLATH
        movff   bsave, BSR              ; BSR
        movff   wsave, WREG             ; WREG
        movff   ssave, STATUS           ; STATUS
        retfie                          ; Return from Interrupt
    
    OverCREATE
        bsf   INTCON,IPEN, 0            ; Enable Interrupt Priorities  <<<<<<<<CHANGE THIS
        bsf   INTCON,GIEL, 0            ; Enable Low Priority Interrupts

  3. #3
    Join Date
    Jun 2017
    Posts
    27


    Did you find this post helpful? Yes | No

    Default Re: PIC18F67K40 Timer issues

    Hello tumbleweed.

    Thanks for posting the additional lines of code. Unfortunately, it didn't help. I also searched for version 3.4c but was not able to find it. I managed to find version 3.4b but it also didn't work. Maybe I'm just setting my registers wrong.

    Here is what I use:

    ' INCLUDE "modedefs.bas"
    INCLUDE "DT_INTS-18F67K40.bas" 'Base Interrupt System Generated by Darrel Thomas.
    INCLUDE "ReEnterPBP-18.bas" 'Include if using PBP interrupts
    @ ERRORLEVEL -306

    #CONFIG
    CONFIG FEXTOSC = OFF ;Oscillator not enabled
    CONFIG RSTOSC = HFINTOSC_64MHZ ;HFINTOSC with HFFRQ = 64 MHz and CDIV = 1:1
    CONFIG CLKOUTEN = OFF ;CLKOUT function is disabled
    CONFIG CSWEN = OFF ;Writing to NOSC and NDIV is allowed
    CONFIG FCMEN = OFF ;Fail-Safe Clock Monitor enabled
    CONFIG MCLRE = EXTMCLR ;If LVP = 0, MCLR pin is MCLR; If LVP = 1, RE3 pin function is MCLR
    CONFIG PWRTE = ON ;Power up timer enabled
    CONFIG LPBOREN = OFF ;ULPBOR disabled
    CONFIG BOREN = ON ;Brown-out Reset enabled according to SBOREN
    CONFIG BORV = VBOR_285 ;Brown-out Reset Voltage (VBOR) set to 2.85V
    CONFIG ZCD = OFF ;ZCD disabled. ZCD can be enabled by setting the ZCDSEN bit of ZCDCON
    CONFIG PPS1WAY = OFF ;PPSLOCK bit can be set and cleared repeatedly (subject to the unlock sequence)
    CONFIG STVREN = OFF ;Stack full/underflow will cause Reset
    CONFIG DEBUG = OFF ;Background debugger disabled
    CONFIG XINST = OFF ;Extended Instruction Set and Indexed Addressing Mode disabled
    CONFIG WDTCPS = WDTCPS_31 ;Divider ratio 1:65536; software control of WDTPS
    CONFIG WDTE = OFF ;WDT enabled regardless of sleep
    CONFIG WDTCWS = WDTCWS_7 ;window always open (100%); software control; keyed access not required
    CONFIG WDTCCS = LFINTOSC ;WDT reference clock is the 31.0 kHz LFINTOSC
    CONFIG WRT0 = OFF ;Block 0 (000800-003FFFh) not write-protected
    CONFIG WRT1 = OFF ;Block 1 (004000-007FFFh) not write-protected
    CONFIG WRT2 = OFF ;Block 2 (008000-00BFFFh) not write-protected
    CONFIG WRT3 = OFF ;Block 3 (00C000-00FFFFh) not write-protected
    CONFIG WRT4 = OFF ;Block 4 (010000-013FFFh) not write-protected
    CONFIG WRT5 = OFF ;Block 5 (014000-017FFFh) not write-protected
    CONFIG WRT6 = OFF ;Block 6 (018000-01BFFFh) not write-protected
    CONFIG WRT7 = OFF ;Block 7 (01C000-01FFFFh) not write-protected
    CONFIG WRTC = OFF ;Configuration registers (300000-30000Bh) not write-protected
    CONFIG WRTB = OFF ;Boot Block (000000-0007FFh) not write-protected
    CONFIG WRTD = OFF ;Data EEPROM not write-protected
    CONFIG SCANE = OFF ;Scanner module is available for use, SCANMD bit can control the module
    CONFIG LVP = OFF ;HV on MCLR/VPP must be used for programming
    CONFIG CP = OFF ;UserNVM code protection disabled
    CONFIG CPD = OFF ;DataNVM code protection disabled
    CONFIG EBTR0 = OFF ;Block 0 (000800-003FFFh) not protected from table reads executed in other blocks
    CONFIG EBTR1 = OFF ;Block 1 (004000-007FFFh) not protected from table reads executed in other blocks
    CONFIG EBTR2 = OFF ;Block 2 (008000-00BFFFh) not protected from table reads executed in other blocks
    CONFIG EBTR3 = OFF ;Block 3 (00C000-00FFFFh) not protected from table reads executed in other blocks
    CONFIG EBTR4 = OFF ;Block 4 (010000-013FFFh) not protected from table reads executed in other blocks
    CONFIG EBTR5 = OFF ;Block 5 (014000-017FFFh) not protected from table reads executed in other blocks
    CONFIG EBTR6 = OFF ;Block 6 (018000-01BFFFh) not protected from table reads executed in other blocks
    CONFIG EBTR7 = OFF ;Block 7 (01C000-01FFFFh) not protected from table reads executed in other blocks
    CONFIG EBTRB = OFF ;Boot Block (000000-0007FFh) not protected from table reads executed in other blocks
    #ENDCONFIG



    ;************************************************* ******************************
    DEFINE OSC 64 ; DEFINE THE FREQUENCY USED TO CALCULATE TIME VALUES FOR PAUSES.

    ;************************************************* ******************************

    ;************************************************* ******************************
    ; Oscillator control registers.
    ;************************************************* ******************************
    ' OSCCON1 = %01100110 ' FOSC = 64 MHz
    ' OSCCON2 = %01100000
    ' OSCCON3 = %01000000
    ' OSCEN = %01000000
    ' OSCFRQ = %00000110
    ' CLKRCON = %10010000
    ' CLKRCLK = %00000001
    ;************************************************* ******************************
    ; Interrupt control registers.
    ;************************************************* ******************************
    ' INTCON = %11000000 ; Interrupt Control Register, 1 = Interrupt on rising edge of INT pin
    ' PIE0 = %00010000 ; IOCIE Bit 4 = 1, Enables the IOC change interrupt
    ' PIE1 = %00000000
    ' PIE2 = %00000000
    ' PIE3 = %00000000
    ' PIE4 = %00000001
    ' PIE5 = %00000000
    ' PIE6 = %00000000
    ' PIE7 = %00000000
    ' PIE8 = %00000000

    ;************************************************* ******************************
    ; Timer 1 control registers.
    ;************************************************* ******************************
    ' T1CON = %00110001 ; Prescaler=8, TMR1ON.
    ' T1GCON = %00000000 ; Timer 1 Gate disabled.
    ' T1CLK = %00000011 ; MFINTOSC Selected for Timer 1 clock source.
    ' TMR1H = $FF
    ' TMR1L = $FF
    ;************************************************* ******************************
    ; Port data direction control registers.
    ;************************************************* ******************************


    ANSELA = %00000000 ; Set all analog pins to digital.
    TRISA = %11111111 ; Port A set to inputs.
    WPUA = %00000000 ; Weak pull-ups disabled.
    ODCONA = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTA = %00000000 ; Clear register.
    LATA = %00000001 ; Clear register, set bit 0 high.
    SLRCONA = %00000000 ; Slew rate at maximum
    INLVLA = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    ANSELB = %00000000 ; Set all analog pins to digital.
    TRISB = %11111111 ; Port B set to inputs.
    WPUB = %00000000 ; Weak pull-ups disabled.
    ODCONB = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTB = %00000000 ; Clear register.
    LATB = %00000000 ; Clear register.
    SLRCONB = %00000000 ; Slew rate at maximum
    INLVLB = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    ' ANSELC = %00000000 ; Set all analog pins to digital.
    TRISC = %11111111 ; Port C set to outputs except for UART.
    WPUC = %00000000 ; Weak pull-ups disabled.
    ODCONC = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTC = %00000000 ; Clear register.
    LATC = %00000000 ; Clear register, set bit 0 high.
    SLRCONC = %00000000 ; Slew rate at maximum
    INLVLC = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    ANSELD = %00000000 ; Set all analog pins to digital.
    TRISD = %11111111 ; Port D set to outputs.
    WPUD = %00000000 ; Weak pull-ups disabled.
    ODCOND = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTD = %00000000 ; Clear register.
    LATD = %00000000 ; Clear register.
    SLRCOND = %00000000 ; Slew rate at maximum
    INLVLD = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    ANSELE = %00000000 ; Set all analog pins to digital.
    TRISE = %11111111 ; Clear register, only 3 pins available.
    WPUE = %00000000 ; Weak pull-ups disabled.
    ODCONE = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTE = %00000000 ; Clear register.
    LATE = %00000000 ; Set outputs high.
    SLRCONE = %00000000 ; Slew rate at maximum
    INLVLE = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    ANSELF = %00000000 ; Set all analog pins to digital.
    TRISF = %11111111 ; Clear register, only 3 pins available.
    WPUF = %00000000 ; Weak pull-ups disabled.
    ODCONF = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTF = %00000000 ; Clear register.
    LATF = %00000000 ; Set outputs high.
    SLRCONF = %00000000 ; Slew rate at maximum
    INLVLF = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    ANSELG = %00000000 ; Set all analog pins to digital.
    TRISG = %11100011 ; Clear register, only 3 pins available.
    WPUG = %00000000 ; Weak pull-ups disabled.
    ODCONG = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTG = %00000000 ; Clear register.
    LATG = %00000000 ; Set outputs high.
    SLRCONG = %00000000 ; Slew rate at maximum
    INLVLG = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    ' ANSELH = %00000000 ; Set all analog pins to digital.
    TRISH = %11110111 ; Clear register, only 3 pins available.
    WPUH = %00000000 ; Weak pull-ups disabled.
    ODCONH = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTH = %00000000 ; Clear register.
    LATH = %00000000 ; Set outputs high.
    SLRCONH = %00000000 ; Slew rate at maximum
    INLVLH = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change
    ;************************************************* ******************************
    ; Peripheral Pin Select Modules.
    ;************************************************* ******************************

    ;************************************************* ******************************
    ; Peripheral Module Disable. Page 243 of the datasheet.
    ; 0 = enabled, 1 = disabled.
    ;************************************************* ******************************
    ' PMD0 = %01110000 ; Bit 0 = 0, All IOC modules enabled, CLC.
    ' PMD1 = %00000000 ; Timer 0-7 modules module enabled.
    ' PMD2 = %11111111 ; Comaparators 1/2, ZCD modules disabled.
    ' PMD3 = %00000000 ; DAC,ADC, modules disabled.
    ' PMD4 = %11111111 ; PWM and CCP CWG moduLes disabled.
    ' PMD5 = %00000000 ; ESUART/MSSP moduLes Enabled.

    ;************************************************* ******************************
    ; Interrupt On Change for ports with IOC.
    ; 1 = enabled, 0 = diabled.
    ;************************************************* ******************************
    ' IOCAF = %00000000 ; Interrupt-on-Change PORTA flags.
    ' IOCAP = %11111111 ; Interrupt-on-Change PORTA Positive Edge Enable bits.
    ' IOCAN = %00000000 ; Interrupt-on-Change PORTA Negative Edge Enable bits.

    IOCBF = %00000000 ; Interrupt-on-Change PORTB flags.
    IOCBP = %00000000 ; Interrupt-on-Change PORTB Positive Edge Enable bits.
    IOCBN = %00000000 ; Interrupt-on-Change PORTB Negative Edge Enable bits.

    IOCCF = %00000000 ; Interrupt-on-Change PORTC flags.
    IOCCP = %00000000 ; Interrupt-on-Change PORTC Positive Edge Enable bits.
    IOCCN = %00000000 ; Interrupt-on-Change PORTC Negative Edge Enable bits.

    IOCEF = %00000000 ; Interrupt-on-Change PORTE flags.
    IOCEP = %00000000 ; Interrupt-on-Change PORTE Positive Edge Enable bits.
    IOCEN = %00000000 ; Interrupt-on-Change PORTE Negative Edge Enable bits.

    IOCGF = %00000000 ; Interrupt-on-Change PORTG flags.
    IOCGP = %00000000 ; Interrupt-on-Change PORTG Positive Edge Enable bits.
    IOCGN = %00000000 ; Interrupt-on-Change PORTG Negative Edge Enable bits.

    ;************************************************* ******************************
    ; Constants.
    ;************************************************* ******************************
    TimerCounts con 24500

    DEFINE SHIFT_PAUSEUS 100
    DEFINE WRITE_INT 1
    ;************************************************* ******************************
    ; Variables listing.
    ;************************************************* ******************************
    GPCounter var byte ; General Puspose Counter.
    Packet var byte[12] ;
    StatusFlgs var byte ;
    DatIn var StatusFlgs.0

    ;************************************************* ******************************
    ; Port Pin names.
    ;************************************************* ******************************
    HeartBeat var LATH.3
    STROBE VAR PORTG.2
    CLOCK VAR PORTG.3
    DATAOUT VAR PORTG.4
    ;************************************************* ******************************

    ;************************************************* ******************************
    ;ASM INTERRUPTS COURTESY OF DARREL TAYLOR.
    ASM
    INT_LIST macro ; IntSource, Label, Type, ResetFlag?
    ; INT_Handler RX_INT, _USB_RX_DATA, PBP, yes
    INT_Handler TMR2_INT, _Heart_Beat, PBP, yes
    endm
    INT_CREATE ; Creates the interrupt processor
    INT_ENABLE TMR2_INT ; enable Timer 2 interrupts

    ; INT_ENABLE RX_INT ; enable RECEIVER interrupts.
    ENDASM
    T2PR = $0F
    T2CON = %10010001 ; Prescaler=128, TMR2ON,POSTSCALER=1:16.
    T2HLT = %00100000
    T2CLKCON = %00000010
    ' T2RST = %00000000

    ;************************************************* ******************************
    goto Start

    ;************************************************* ******************************
    'USB_RX_DATA:
    ' HSERIN 100, DONE, [STR FRAME\8]
    'DONE:
    '@ INT_RETURN
    ;************************************************* ******************************
    Heart_Beat:
    toggle HeartBeat

    @ INT_RETURN

    ;************************************************* ******************************
    Start:
    Any other advise would be appreciated.

  4. #4
    Join Date
    Jun 2017
    Posts
    27


    Did you find this post helpful? Yes | No

    Default Re: PIC18F67K40 Timer issues

    After experimenting for a few days, I cannot get any timer interrupt to work. I even went as far as using assembly interrupts that I wrote while not using the DT_INTs-18. Nothing seems to want to work. I am at the end of my rope.
    Any suggestions from ANYONE would be greatly appreciated. I just don't understand what I'm doing wrong...

    Below is a condensed version of my code without any fluff:
    ' INCLUDE "modedefs.bas"
    ' INCLUDE "DT_INTS-18_3_4b.bas" 'Base Interrupt System Generated by Darrel Thomas.
    INCLUDE "DT_INTS-18F67K40.bas" 'Base Interrupt System Generated by Darrel Thomas.
    INCLUDE "ReEnterPBP-18.bas" 'Include if using PBP interrupts
    @ ERRORLEVEL -306

    #CONFIG
    CONFIG FEXTOSC = OFF ;Oscillator not enabled
    CONFIG RSTOSC = HFINTOSC_64MHZ ;HFINTOSC with HFFRQ = 64 MHz and CDIV = 1:1
    CONFIG CLKOUTEN = OFF ;CLKOUT function is disabled
    CONFIG CSWEN = ON ;Writing to NOSC and NDIV is allowed
    CONFIG FCMEN = OFF ;Fail-Safe Clock Monitor disnabled
    CONFIG MCLRE = EXTMCLR ;If LVP = 0, MCLR pin is MCLR; If LVP = 1, RE3 pin function is MCLR
    CONFIG PWRTE = ON ;Power up timer enabled
    CONFIG LPBOREN = OFF ;ULPBOR disabled
    CONFIG BOREN = ON ;Brown-out Reset enabled according to SBOREN
    CONFIG BORV = VBOR_285 ;Brown-out Reset Voltage (VBOR) set to 2.85V
    CONFIG ZCD = OFF ;ZCD disabled. ZCD can be enabled by setting the ZCDSEN bit of ZCDCON
    CONFIG PPS1WAY = OFF ;PPSLOCK bit can be set and cleared repeatedly (subject to the unlock sequence)
    CONFIG STVREN = OFF ;Stack full/underflow will cause Reset
    CONFIG DEBUG = OFF ;Background debugger disabled
    CONFIG XINST = OFF ;Extended Instruction Set and Indexed Addressing Mode disabled
    CONFIG WDTCPS = WDTCPS_31 ;Divider ratio 1:65536; software control of WDTPS
    CONFIG WDTE = OFF ;WDT enabled regardless of sleep
    CONFIG WDTCWS = WDTCWS_7 ;window always open (100%); software control; keyed access not required
    CONFIG WDTCCS = LFINTOSC ;WDT reference clock is the 31.0 kHz LFINTOSC
    CONFIG WRT0 = OFF ;Block 0 (000800-003FFFh) not write-protected
    CONFIG WRT1 = OFF ;Block 1 (004000-007FFFh) not write-protected
    CONFIG WRT2 = OFF ;Block 2 (008000-00BFFFh) not write-protected
    CONFIG WRT3 = OFF ;Block 3 (00C000-00FFFFh) not write-protected
    CONFIG WRT4 = OFF ;Block 4 (010000-013FFFh) not write-protected
    CONFIG WRT5 = OFF ;Block 5 (014000-017FFFh) not write-protected
    CONFIG WRT6 = OFF ;Block 6 (018000-01BFFFh) not write-protected
    CONFIG WRT7 = OFF ;Block 7 (01C000-01FFFFh) not write-protected
    CONFIG WRTC = OFF ;Configuration registers (300000-30000Bh) not write-protected
    CONFIG WRTB = OFF ;Boot Block (000000-0007FFh) not write-protected
    CONFIG WRTD = OFF ;Data EEPROM not write-protected
    CONFIG SCANE = OFF ;Scanner module is available for use, SCANMD bit can control the module
    CONFIG LVP = OFF ;HV on MCLR/VPP must be used for programming
    CONFIG CP = OFF ;UserNVM code protection disabled
    CONFIG CPD = OFF ;DataNVM code protection disabled
    CONFIG EBTR0 = OFF ;Block 0 (000800-003FFFh) not protected from table reads executed in other blocks
    CONFIG EBTR1 = OFF ;Block 1 (004000-007FFFh) not protected from table reads executed in other blocks
    CONFIG EBTR2 = OFF ;Block 2 (008000-00BFFFh) not protected from table reads executed in other blocks
    CONFIG EBTR3 = OFF ;Block 3 (00C000-00FFFFh) not protected from table reads executed in other blocks
    CONFIG EBTR4 = OFF ;Block 4 (010000-013FFFh) not protected from table reads executed in other blocks
    CONFIG EBTR5 = OFF ;Block 5 (014000-017FFFh) not protected from table reads executed in other blocks
    CONFIG EBTR6 = OFF ;Block 6 (018000-01BFFFh) not protected from table reads executed in other blocks
    CONFIG EBTR7 = OFF ;Block 7 (01C000-01FFFFh) not protected from table reads executed in other blocks
    CONFIG EBTRB = OFF ;Boot Block (000000-0007FFh) not protected from table reads executed in other blocks
    #ENDCONFIG

    ;************************************************* ******************************
    ; Oscillator control registers.
    ;************************************************* ******************************
    ' OSCCON1 = %01100110 ' FOSC = 64 MHz
    ' OSCCON2 = %01100000
    ' OSCCON3 = %01000000
    ' OSCEN = %01000000
    ' OSCFRQ = %00000110
    ' CLKRCON = %10010000
    ' CLKRCLK = %00000001

    ;************************************************* ******************************
    ; Port data direction control registers.
    ;************************************************* ******************************

    ANSELA = %00000000 ; Set all analog pins to digital.
    TRISA = %11111111 ; Port A set to inputs.
    WPUA = %00000000 ; Weak pull-ups disabled.
    ODCONA = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTA = %00000000 ; Clear register.
    LATA = %00000001 ; Clear register, set bit 0 high.
    SLRCONA = %00000000 ; Slew rate at maximum
    INLVLA = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    ANSELB = %00000000 ; Set all analog pins to digital.
    TRISB = %11111111 ; Port B set to inputs.
    WPUB = %00000000 ; Weak pull-ups disabled.
    ODCONB = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTB = %00000000 ; Clear register.
    LATB = %00000000 ; Clear register.
    SLRCONB = %00000000 ; Slew rate at maximum
    INLVLB = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    TRISC = %11111111 ; Port C set to outputs except for UART.
    WPUC = %00000000 ; Weak pull-ups disabled.
    ODCONC = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTC = %00000000 ; Clear register.
    LATC = %00000000 ; Clear register, set bit 0 high.
    SLRCONC = %00000000 ; Slew rate at maximum
    INLVLC = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    ANSELD = %00000000 ; Set all analog pins to digital.
    TRISD = %11111111 ; Port D set to outputs.
    WPUD = %00000000 ; Weak pull-ups disabled.
    ODCOND = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTD = %00000000 ; Clear register.
    LATD = %00000000 ; Clear register.
    SLRCOND = %00000000 ; Slew rate at maximum
    INLVLD = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    ANSELE = %00000000 ; Set all analog pins to digital.
    TRISE = %11111111 ; Clear register, only 3 pins available.
    WPUE = %00000000 ; Weak pull-ups disabled.
    ODCONE = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTE = %00000000 ; Clear register.
    LATE = %00000000 ; Set outputs high.
    SLRCONE = %00000000 ; Slew rate at maximum
    INLVLE = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    ANSELF = %00000000 ; Set all analog pins to digital.
    TRISF = %11111111 ; Clear register, only 3 pins available.
    WPUF = %00000000 ; Weak pull-ups disabled.
    ODCONF = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTF = %00000000 ; Clear register.
    LATF = %00000000 ; Set outputs high.
    SLRCONF = %00000000 ; Slew rate at maximum
    INLVLF = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    ANSELG = %00000000 ; Set all analog pins to digital.
    TRISG = %11100011 ; Clear register, only 3 pins available.
    WPUG = %00000000 ; Weak pull-ups disabled.
    ODCONG = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTG = %00000000 ; Clear register.
    LATG = %00000000 ; Set outputs high.
    SLRCONG = %00000000 ; Slew rate at maximum
    INLVLG = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    TRISH = %11110111 ; Clear register, only 3 pins available.
    WPUH = %00000000 ; Weak pull-ups disabled.
    ODCONH = %00000000 ; 1 = Open Drain, 0 = Push/Pull drive.
    PORTH = %00000000 ; Clear register.
    LATH = %00001000 ; Set outputs high.
    SLRCONH = %00000000 ; Slew rate at maximum
    INLVLH = %11111111 ; 1 = ST input used for PORT reads and interrupt-on-change
    ; 0 = TTL input used for PORT reads and interrupt-on-change

    ;************************************************* ******************************
    ; Peripheral Module Disable. Page 243 of the datasheet.
    ; 0 = enabled, 1 = disabled.
    ;************************************************* ******************************
    PMD0 = %01110010 ; Bit 0 = 0, All IOC modules enabled, CLC.
    PMD1 = %11111110 ; Timer 0-7 modules module enabled.
    PMD2 = %11111111 ; Comaparators 1/2, ZCD modules disabled.
    PMD3 = %10111111 ; DAC,ADC, modules disabled.
    PMD4 = %11111111 ; PWM and CCP CWG moduLes disabled.
    PMD5 = %00000000 ; ESUART/MSSP moduLes Enabled.

    ;************************************************* ******************************
    ; Interrupt On Change for ports with IOC.
    ; 1 = enabled, 0 = diabled.
    ;************************************************* ******************************
    IOCBF = %00000000 ; Interrupt-on-Change PORTB flags.
    IOCBP = %00000000 ; Interrupt-on-Change PORTB Positive Edge Enable bits.
    IOCBN = %00000000 ; Interrupt-on-Change PORTB Negative Edge Enable bits.

    IOCCF = %00000000 ; Interrupt-on-Change PORTC flags.
    IOCCP = %00000000 ; Interrupt-on-Change PORTC Positive Edge Enable bits.
    IOCCN = %00000000 ; Interrupt-on-Change PORTC Negative Edge Enable bits.

    IOCEF = %00000000 ; Interrupt-on-Change PORTE flags.
    IOCEP = %00000000 ; Interrupt-on-Change PORTE Positive Edge Enable bits.
    IOCEN = %00000000 ; Interrupt-on-Change PORTE Negative Edge Enable bits.

    IOCGF = %00000000 ; Interrupt-on-Change PORTG flags.
    IOCGP = %00000000 ; Interrupt-on-Change PORTG Positive Edge Enable bits.
    IOCGN = %00000000 ; Interrupt-on-Change PORTG Negative Edge Enable bits.

    ;************************************************* ******************************
    ; Port Pin names.
    ;************************************************* ******************************
    HeartBeat var LATH.3

    ;************************************************* ******************************
    ' T2TMR = $FF
    ' T2PR = $FF
    ' T4CON = $80 ; Prescaler=128, TMR2ON,POSTSCALER=1:16.
    ' T4HLT = $00
    ' T4CLKCON = $03
    ' T2RST = %00000000
    ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
    T1CON = %00000011 ; Prescaler=8, TMR1ON.
    T1GCON = %00000000 ; Timer 1 Gate disabled.
    T1CLK = %00000011 ; MFINTOSC Selected for Timer 1 clock source.
    TMR1H = $00
    TMR1L = $00

    ;************************************************* ******************************
    ;ASM INTERRUPTS COURTESY OF DARREL TAYLOR.
    ASM
    INT_LIST macro ; IntSource, Label, Type, ResetFlag?
    INT_Handler TMR1_INT, _Heart_Beat, PBP, YES
    endm
    ENDASM

    @ INT_CREATE ; Creates the interrupt processor
    @ INT_ENABLE TMR1_INT ; enable Timer 2 interrupts
    ;************************************************* ******************************
    goto Start

    ;************************************************* ******************************
    Heart_Beat:
    toggle HeartBeat
    @ INT_RETURN

    ;************************************************* ******************************
    Start:

  5. #5
    Join Date
    May 2013
    Location
    australia
    Posts
    2,383


    Did you find this post helpful? Yes | No

    Default Re: PIC18F67K40 Timer issues

    Code:
    HeartBeat   var LATH.3
    
    ...
    
    
    toggle HeartBeat
    that's a no go with pbp

    toggle only works with portx regs

    eg
    HeartBeat var porth.3

    toggle HeartBeat


    ps if that's all you want from an interrupt there is no need for all that bloat from dt ints

    see this
    http://www.picbasic.co.uk/forum/showthread.php?t=23874
    Last edited by richard; - 28th July 2018 at 06:48.
    Warning I'm not a teacher

  6. #6
    Join Date
    Jun 2017
    Posts
    27


    Did you find this post helpful? Yes | No

    Default Re: PIC18F67K40 Timer issues

    Quote Originally Posted by richard View Post
    Code:
    HeartBeat   var LATH.3
    
    ...
    
    
    toggle HeartBeat
    that's a no go with pbp

    toggle only works with portx regs

    eg
    HeartBeat var porth.3

    toggle HeartBeat


    ps if that's all you want from an interrupt there is no need for all that bloat from dt ints

    see this
    http://www.picbasic.co.uk/forum/showthread.php?t=23874
    Richard, thank you for responding to my plea for help. I looked at the link you provided and I can see that it will come in handy.
    Fortunately, I found the cause of my issue. With tumbleweed's help, I was able to modify DT's_INT-18 for this specific PIC. It was working all along.
    My issue stemmed from me not enabling the Timer module that I was working with. It was disabled at the PMD registers and I was actually enabling the wrong one.
    This is what happens when I don't pay enough attention to which bits I set and clear.

    I needed DT's_INT to work as I don't care to write in assembly, but I will if I have to.
    Not only does it provide me with a HeartBeat timer interrupt, but also for two EUSART ports, an SPI interrupt and 24 IOC inputs. That's alot of interrupts that I think would be best handled by DT's_INT.
    I'm not too concerned about the bloat it brings to the table as long as it gets the job done. There's enough memory in this PIC to get it to do what I need. I'm running it at 64mhz so I think I can catch the "slow" inputs in a timely manner.

    Again, thank you and tumbleweed for the help.

    I can post this version of DT's_INT if anyone is interested. It just needs an appropriate name.

    Thank you guys,

    csantex
    Last edited by csantex; - 29th July 2018 at 05:27.

Similar Threads

  1. Understanding timer issues
    By boroko in forum mel PIC BASIC Pro
    Replies: 4
    Last Post: - 7th April 2009, 03:56
  2. Timer Issues
    By Kamikaze47 in forum mel PIC BASIC Pro
    Replies: 4
    Last Post: - 7th September 2007, 16:05
  3. Alarms with Mel's "Olympic Timer" based timer - how to?
    By flotulopex in forum mel PIC BASIC Pro
    Replies: 6
    Last Post: - 20th June 2007, 23:09
  4. Port A Issues
    By elec_mech in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 21st June 2005, 22:07

Members who have read this thread : 2

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts