📄 target.h
字号:
//=============================================================================
// Copyright (C) INSIDE Contactless 1998-2005
//
// INSIDE Contactless reserves the right to make changes, without notice,
// to any product (including application note) herein to improve
// reliability, functionality, or design. INSIDE Contactless advises its
// customers to obtain the latest version of device data sheets to verify,
// before placing orders, that the information being relied upon by the
// customer is current.
//
// INSIDE Contactless makes no warranty that the use will not infringe any
// third party patent, copyright or trademark.
//
// Information furnished by INSIDE Contactless is believed to be accurate
// and reliable. However, INSIDE Contactless does not assume any liability
// resulting from the application or use of any product described within.
//
// All rights are reserved. Reproduction in whole or in part is prohibited
// without the written consent of the copyright owner.
//
// Bat 11a,
// Parc Club du Golf,
// Z.A.C. du Pichaury Tel : +33 (0)4.42.39.33.00
// 13856 Aix-en-Provence Cedex 3 Fax : +33 (0)4.42.39.63.19
// FRANCE Email : info@insidefr.com
//
//-----------------------------------------------------------------------------
// Project Code : PAYPASS TTAL1
// Project Name : PAYPASS TTAL1
// Module Name : Target.h
// Platform dev : Keil 礦ision 3 (IDE ) + Keil ARM Compiler
// Target : Multiple
// Language : C ANSI
// Revision : 1.1
// Description : Special functions requiring to be modified according to the target and the user needs (i.e Choice of IO for the SPI)
// also SDO_MASK SDI_MASK SCK_MASK and CS_MASK must be modified according to
// IOs choosen for SPI communication
//=============================================================================
// When Who Ver What
// 06-04-24 MCY 1.1 Added #ifndef __TARGET_FUNCTION_H
// 04-05-28 FPK 1.1 Added #ifndef __TARGET_H__ + ADD TARGETS
//=============================================================================
#ifndef __TARGET_H__
#define __TARGET_H__
// BEFORE ALL A DEFINE MUST BE SET IN THE PROJECT DEFINE LIST AND NOT DIRECTLY IN
// ANY HEADER FILE ACCORDING THE THE TARGET USED. IN OUR CASE THE DEFINE IS: TARGET_LPC2129
// FEEL FREE TO CHANGE THIS DEFINE IF YOU USE AN DIFFERENT TARGET
//
//
#ifdef READERAN_ALL_PROTOCOLS_LPC2129
#include "LPC21xx.H" // Definition of processor registers
#include "LPC2129_functions.h"
#endif
#ifdef READERAN_ALL_PROTOCOLS_LPC2103
#include "LPC2103.H" // Definition of processor registers
#include "LPC2103_functions.h"
#endif
#ifdef PAYPASS_TTAL1_LPC2129
#include "LPC2129.H" // Definition of processor registers
#include "LPC2129_PayPass_TTAL1_functions.h"
#endif
#ifdef PAYPASS_TTAL1_LPC2103
#include "LPC2103.H" // Definition of processor registers
#include "LPC2103_PayPass_TTAL1_functions.h"
#endif
#ifdef UC32_PRD_LPC2103
#include "LPC2103.H" // Definition of processor registers
#include "LPC2103_UC32_PRD_LowLvl_functions.h"
#endif
#endif // __TARGET_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -