001package jmri.jmrix.can; 002 003/** 004 * Constants to represent CAN protocols and adapters 005 * 006 * @author Andrew Crosland Copyright (C) 2008 007 */ 008public final class CanConstants { 009 010 /** 011 * CAN protocols supported 012 */ 013 public static final int CBUS = 0; 014 public static final int FOR_TESTING = 100; 015 016 /** 017 * CAN adapter hardware supported 018 */ 019 public static final int CANRS = 0; 020 public static final int CANUSB = 1; 021 public static final int CAN232 = 2; 022} 023 024