'**************************************************************** '* Name : CanRxDeclare.BAS * '* Author : James S. McLaughlin * '* Notice : Copyright (c) 2002 * '* : All Rights Reserved * '* Date : 1/16/2002 * '* Version : 1.0 * '* Notes : Place in declare secton * '* : * '**************************************************************** 'declares for receive filter 0 mask and filters RxMask0High VAR BYTE RxMask0Low VAR BYTE RxFilter0High VAR BYTE RxFilter0Low VAR BYTE RxFilter1High VAR BYTE RxFilter1Low VAR BYTE 'declares for receive filter 1 mask and filters RxMask1High VAR BYTE RxMask1Low VAR BYTE RxFilter2High VAR BYTE RxFilter2Low VAR BYTE RxFilter3High VAR BYTE RxFilter3Low VAR BYTE RxFilter4High VAR BYTE RxFilter4Low VAR BYTE RxFilter5High VAR BYTE RxFilter5Low VAR BYTE 'declares for can standard id: CanRxIDHigh0 var byte CanRxIDLow0 var byte CanRxIDHigh1 var byte CanRxIDLow1 var byte 'initializations for receive filter 0 mask and filters RxMask0High = 0 RxMask0Low = 0 RxFilter0High = 0 RxFilter0Low = 0 RxFilter1High = 0 RxFilter1Low = 0 'initializations for receive filter 1 mask and filters RxMask1High = 0 RxMask1Low = 0 RxFilter2High = 0 RxFilter2Low = 0 RxFilter3High = 0 RxFilter3Low = 0 RxFilter4High = 0 RxFilter4Low = 0 RxFilter5High = 0 RxFilter5Low = 0 'standard id initializations: CanRxIDHigh0 = 0 CanRxIDLow0 = 0 CanRxIDHigh1 = 0 CanRxIDLow1 = 0