⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cp_cc.h.svn-base

📁 canpie 一个can bus的协议栈 - CAN interface for embedded control - CAN interface for PC (without local
💻 SVN-BASE
字号:
//****************************************************************************//
// Project     :  CANpie                                                      //
// File        :  cp_cc.h                                                     //
// Description :  Enumerations for CAN controller chips / targets             //
// Author:        Uwe Koppe                                                   //
// e-mail:        koppe@microcontrol.net                                      //
//                                                                            //
//============================================================================//
// This program is free software; you can redistribute it and/or modify       //
// it under the terms of the GNU Lesser General Public License as published   //
// by the Free Software Foundation; either version 2.1 of the License, or     //
// (at your option) any later version.                                        //
//============================================================================//
//                                                                            //
// Date        History                                                        //
// ----------  -------------------------------------------------------------- //
// 29.07.2003  Initial version                                                //
//                                                                            //
//****************************************************************************//


#ifndef  _CP_CC_H_
#define  _CP_CC_H_

/*-----------------------------------------------------------------------------
**    Online documentation for Doxygen
*/

/*!
** \file    cp_cc.h
** \brief   CANpie constant values for targets
**
**
*/



/*----------------------------------------------------------------------------*/
/*!
** \enum    CP_CC
** \brief   CAN controller identification numbers
**
*/
enum CP_CC {

   //-------------------------------------------------------//
   // Generic                                               //
   //-------------------------------------------------------//
   //!   LINUX
   CP_CC_LINUX = 0x0010,

   //-------------------------------------------------------//
   // Analog Devices    (0x08xx)                            //
   //-------------------------------------------------------//

   //-------------------------------------------------------//
   // ATMEL             (0x10xx)                            //
   //-------------------------------------------------------//
   //!   CANary, AT89C51CC01
   CP_CC_CC01 = 0x1000,

   //!   CANary, AT89C51CC02
   CP_CC_CC02,

   //!   CANary, AT89C51CC03
   CP_CC_CC03,

   //-------------------------------------------------------//
   // Bosch             (0x14xx)                            //
   //-------------------------------------------------------//

   //-------------------------------------------------------//
   // Cygnal            (0x18xx)                            //
   //-------------------------------------------------------//

   //-------------------------------------------------------//
   // Dallas            (0x1Cxx)                            //
   //-------------------------------------------------------//

   //-------------------------------------------------------//
   // Fujitsu           (0x20xx)                            //
   //-------------------------------------------------------//

   //-------------------------------------------------------//
   // Infineon          (0x24xx)                            //
   //-------------------------------------------------------//
   //!   Infineon C505
   CP_CC_C505 = 0x2400,

   //!   Infineon C515
   CP_CC_C515,

   //!   Infineon C161
   CP_CC_C161,

   //!   Infineon C164
   CP_CC_C164,

   //!   Infineon C167
   CP_CC_C167,

   //!   Infineon 81C90
   CP_CC_81C90,

   //!   Infineon 81C91
   CP_CC_81C91,

   //-------------------------------------------------------//
   // Microchip         (0x28xx)                            //
   //-------------------------------------------------------//

   //-------------------------------------------------------//
   // Micronas          (0x2Cxx)                            //
   //-------------------------------------------------------//

   //-------------------------------------------------------//
   // Motorola          (0x30xx)                            //
   //-------------------------------------------------------//

   //-------------------------------------------------------//
   // National Semi.    (0x34xx)                            //
   //-------------------------------------------------------//

   //-------------------------------------------------------//
   // NEC               (0x38xx)                            //
   //-------------------------------------------------------//

   //-------------------------------------------------------//
   // Philips           (0x3Cxx)                            //
   //-------------------------------------------------------//
   //!   Philips 82C200
   CP_CC_82C200 = 0x3C00,

   //!   Philips SJA1000
   CP_CC_SJA1000,

   //!   Philips 80C591
   CP_CC_80C591,

   //!   Philips 80C592
   CP_CC_80C592,

   //-------------------------------------------------------//
   // Renesas           (0x40xx)                            //
   //-------------------------------------------------------//

   //-------------------------------------------------------//
   // ST                (0x44xx)                            //
   //-------------------------------------------------------//

   //-------------------------------------------------------//
   // Texas Instruments (0x48xx)                            //
   //-------------------------------------------------------//

   //-------------------------------------------------------//
   // Toshiba           (0x4Cxx)                            //
   //-------------------------------------------------------//


   //-------------------------------------------------------//
   // Last entry                                            //
   //-------------------------------------------------------//
   CP_CC_UNDEF = 0x7F00

};




#endif   /* _CP_CC_H_   */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -