DeviceSpecificInclude.h 1.32 KB
//////////////////////////////////////////////////////////////////////////
//----------------------------------------------------------------------//
//-- Copyright 2001 VAutomation Inc. Nashua NH USA. All rights reserved.//
//-- This software is provided under license and contains proprietary   //
//-- and confidential material which is the property of VAutomation Inc.//
//-- HTTP://www.vautomation.com											//
//----------------------------------------------------------------------//
//////////////////////////////////////////////////////////////////////////

//!!!! THIS IS AN EXAMPLE FILE, each project should place a version into the 
// the build specific code area for the project. Most likly the same directory
// as the .map file is found.
// 
// DeviceSpecificInclude.h: This file contains device specific information
// 
//
//////////////////////////////////////////////////////////////////////
#ifndef __DEVICE_SPECIFIC_INCLUDE__
#define __DEVICE_SPECIFIC_INCLUDE__

static const char* DEVICE_1_NAME = "device_1_";
static const char* DEVICE_2_NAME = "device_2_";

#ifdef WIN32
const unsigned long DEVICE_1_OFFSET_ADDRESS = 0x00000000;
const unsigned long DEVICE_2_OFFSET_ADDRESS = 0x00000000;
#else
const unsigned long DEVICE_1_OFFSET_ADDRESS = 0x00FC5000;
const unsigned long DEVICE_2_OFFSET_ADDRESS = 0x00FC6000;
#endif


#endif