You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
240 lines
6.9 KiB
C
240 lines
6.9 KiB
C
// TI File $Revision: /main/5 $
|
|
// Checkin $Date: January 22, 2008 16:55:35 $
|
|
//###########################################################################
|
|
//
|
|
// FILE: DSP2833x_Device.h
|
|
//
|
|
// TITLE: DSP2833x Device Definitions.
|
|
//
|
|
//###########################################################################
|
|
// $TI Release: 2833x/2823x Header Files V1.32 $
|
|
// $Release Date: June 28, 2010 $
|
|
// $Copyright:
|
|
// Copyright (C) 2009-2024 Texas Instruments Incorporated - http://www.ti.com/
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without
|
|
// modification, are permitted provided that the following conditions
|
|
// are met:
|
|
//
|
|
// Redistributions of source code must retain the above copyright
|
|
// notice, this list of conditions and the following disclaimer.
|
|
//
|
|
// Redistributions in binary form must reproduce the above copyright
|
|
// notice, this list of conditions and the following disclaimer in the
|
|
// documentation and/or other materials provided with the
|
|
// distribution.
|
|
//
|
|
// Neither the name of Texas Instruments Incorporated nor the names of
|
|
// its contributors may be used to endorse or promote products derived
|
|
// from this software without specific prior written permission.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
// $
|
|
//###########################################################################
|
|
|
|
#ifndef DSP2833x_DEVICE_H
|
|
#define DSP2833x_DEVICE_H
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
//
|
|
// Defines
|
|
//
|
|
#define TARGET 1
|
|
|
|
//
|
|
// User To Select Target Device
|
|
//
|
|
#define DSP28_28335 TARGET // Selects '28335/'28235
|
|
#define DSP28_28334 0 // Selects '28334/'28234
|
|
#define DSP28_28333 0 // Selects '28333/'
|
|
#define DSP28_28332 0 // Selects '28332/'28232
|
|
|
|
//
|
|
// Common CPU Definitions
|
|
//
|
|
extern cregister volatile unsigned int IFR;
|
|
extern cregister volatile unsigned int IER;
|
|
|
|
#define EINT asm(" clrc INTM")
|
|
#define DINT asm(" setc INTM")
|
|
#define ERTM asm(" clrc DBGM")
|
|
#define DRTM asm(" setc DBGM")
|
|
#define EALLOW asm(" EALLOW")
|
|
#define EDIS asm(" EDIS")
|
|
#define ESTOP0 asm(" ESTOP0")
|
|
|
|
#define M_INT1 0x0001
|
|
#define M_INT2 0x0002
|
|
#define M_INT3 0x0004
|
|
#define M_INT4 0x0008
|
|
#define M_INT5 0x0010
|
|
#define M_INT6 0x0020
|
|
#define M_INT7 0x0040
|
|
#define M_INT8 0x0080
|
|
#define M_INT9 0x0100
|
|
#define M_INT10 0x0200
|
|
#define M_INT11 0x0400
|
|
#define M_INT12 0x0800
|
|
#define M_INT13 0x1000
|
|
#define M_INT14 0x2000
|
|
#define M_DLOG 0x4000
|
|
#define M_RTOS 0x8000
|
|
|
|
#define BIT0 0x0001
|
|
#define BIT1 0x0002
|
|
#define BIT2 0x0004
|
|
#define BIT3 0x0008
|
|
#define BIT4 0x0010
|
|
#define BIT5 0x0020
|
|
#define BIT6 0x0040
|
|
#define BIT7 0x0080
|
|
#define BIT8 0x0100
|
|
#define BIT9 0x0200
|
|
#define BIT10 0x0400
|
|
#define BIT11 0x0800
|
|
#define BIT12 0x1000
|
|
#define BIT13 0x2000
|
|
#define BIT14 0x4000
|
|
#define BIT15 0x8000
|
|
|
|
//
|
|
// For Portability, User Is Recommended To Use Following Data Type Size
|
|
// Definitions For 16-bit and 32-Bit Signed/Unsigned Integers:
|
|
//
|
|
#ifndef DSP28_DATA_TYPES
|
|
#define DSP28_DATA_TYPES
|
|
typedef int int16;
|
|
typedef long int32;
|
|
typedef long long int64;
|
|
typedef unsigned int Uint16;
|
|
typedef unsigned long Uint32;
|
|
typedef unsigned long long Uint64;
|
|
typedef float float32;
|
|
typedef long double float64;
|
|
#endif
|
|
|
|
//
|
|
// Included Peripheral Header Files
|
|
//
|
|
#include "DSP2833x_Adc.h" // ADC Registers
|
|
#include "DSP2833x_DevEmu.h" // Device Emulation Registers
|
|
#include "DSP2833x_CpuTimers.h" // 32-bit CPU Timers
|
|
#include "DSP2833x_ECan.h" // Enhanced eCAN Registers
|
|
#include "DSP2833x_ECap.h" // Enhanced Capture
|
|
#include "DSP2833x_DMA.h" // DMA Registers
|
|
#include "DSP2833x_EPwm.h" // Enhanced PWM
|
|
#include "DSP2833x_EQep.h" // Enhanced QEP
|
|
#include "DSP2833x_Gpio.h" // General Purpose I/O Registers
|
|
#include "DSP2833x_I2c.h" // I2C Registers
|
|
#include "DSP2833x_Mcbsp.h" // McBSP
|
|
#include "DSP2833x_PieCtrl.h" // PIE Control Registers
|
|
#include "DSP2833x_PieVect.h" // PIE Vector Table
|
|
#include "DSP2833x_Spi.h" // SPI Registers
|
|
#include "DSP2833x_Sci.h" // SCI Registers
|
|
#include "DSP2833x_SysCtrl.h" // System Control/Power Modes
|
|
#include "DSP2833x_XIntrupt.h" // External Interrupts
|
|
#include "DSP2833x_Xintf.h" // XINTF External Interface
|
|
|
|
#if DSP28_28335 || DSP28_28333
|
|
#define DSP28_EPWM1 1
|
|
#define DSP28_EPWM2 1
|
|
#define DSP28_EPWM3 1
|
|
#define DSP28_EPWM4 1
|
|
#define DSP28_EPWM5 1
|
|
#define DSP28_EPWM6 1
|
|
#define DSP28_ECAP1 1
|
|
#define DSP28_ECAP2 1
|
|
#define DSP28_ECAP3 1
|
|
#define DSP28_ECAP4 1
|
|
#define DSP28_ECAP5 1
|
|
#define DSP28_ECAP6 1
|
|
#define DSP28_EQEP1 1
|
|
#define DSP28_EQEP2 1
|
|
#define DSP28_ECANA 1
|
|
#define DSP28_ECANB 1
|
|
#define DSP28_MCBSPA 1
|
|
#define DSP28_MCBSPB 1
|
|
#define DSP28_SPIA 1
|
|
#define DSP28_SCIA 1
|
|
#define DSP28_SCIB 1
|
|
#define DSP28_SCIC 1
|
|
#define DSP28_I2CA 1
|
|
#endif // end DSP28_28335 || DSP28_28333
|
|
|
|
#if DSP28_28334
|
|
#define DSP28_EPWM1 1
|
|
#define DSP28_EPWM2 1
|
|
#define DSP28_EPWM3 1
|
|
#define DSP28_EPWM4 1
|
|
#define DSP28_EPWM5 1
|
|
#define DSP28_EPWM6 1
|
|
#define DSP28_ECAP1 1
|
|
#define DSP28_ECAP2 1
|
|
#define DSP28_ECAP3 1
|
|
#define DSP28_ECAP4 1
|
|
#define DSP28_ECAP5 0
|
|
#define DSP28_ECAP6 0
|
|
#define DSP28_EQEP1 1
|
|
#define DSP28_EQEP2 1
|
|
#define DSP28_ECANA 1
|
|
#define DSP28_ECANB 1
|
|
#define DSP28_MCBSPA 1
|
|
#define DSP28_MCBSPB 1
|
|
#define DSP28_SPIA 1
|
|
#define DSP28_SCIA 1
|
|
#define DSP28_SCIB 1
|
|
#define DSP28_SCIC 1
|
|
#define DSP28_I2CA 1
|
|
#endif // end DSP28_28334
|
|
|
|
#if DSP28_28332
|
|
#define DSP28_EPWM1 1
|
|
#define DSP28_EPWM2 1
|
|
#define DSP28_EPWM3 1
|
|
#define DSP28_EPWM4 1
|
|
#define DSP28_EPWM5 1
|
|
#define DSP28_EPWM6 1
|
|
#define DSP28_ECAP1 1
|
|
#define DSP28_ECAP2 1
|
|
#define DSP28_ECAP3 1
|
|
#define DSP28_ECAP4 1
|
|
#define DSP28_ECAP5 0
|
|
#define DSP28_ECAP6 0
|
|
#define DSP28_EQEP1 1
|
|
#define DSP28_EQEP2 1
|
|
#define DSP28_ECANA 1
|
|
#define DSP28_ECANB 1
|
|
#define DSP28_MCBSPA 1
|
|
#define DSP28_MCBSPB 0
|
|
#define DSP28_SPIA 1
|
|
#define DSP28_SCIA 1
|
|
#define DSP28_SCIB 1
|
|
#define DSP28_SCIC 0
|
|
#define DSP28_I2CA 1
|
|
#endif // end DSP28_28332
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* extern "C" */
|
|
|
|
#endif // end of DSP2833x_DEVICE_H definition
|
|
|
|
//
|
|
// End of file
|
|
//
|
|
|