From dde0a37088ec69c78897a1442b146c47cc18e933 Mon Sep 17 00:00:00 2001 From: Razvalyaev Date: Thu, 16 Jan 2025 16:31:32 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B5=D0=BD=D0=BE=D1=81=20?= =?UTF-8?q?=D0=B2=D1=8B=D0=BF=D0=BE=D0=BB=D0=BD=D0=B5=D0=BD=D1=8B=D1=85=20?= =?UTF-8?q?=D0=B4=D0=B5=D0=B9=D1=81=D1=82=D0=B2=D0=B8=D0=B9=20=D0=B8=D0=B7?= =?UTF-8?q?=20=D0=B2=D0=B5=D1=82=D0=BA=D0=B8=20on=5Fship?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #5 Векторное что-то считает, но: - без подключения к двигателю формируется вроде корректное трехуровневое напряжение. при подключении не всегда: - при порядке фаз CBA, BAC: более-менее синусный ток на втором ПЧ (на первом кривой синус) и трехуровневое напряжение - при порядке фаз ABC,: более-менее синусный ток на первом ПЧ (на втором кривой синус), но без трехуровнего напряжения (???) - при попытке векторного управления двигателем почему-то будто ограничена скважность и она менятся в очень небольшом диапазоне - скалярное в этой ветке не сделано еще --- Inu/{ => main_matlab}/def.h | 2 +- Inu/main_matlab/device_support/ReadMe.txt | 1 + .../device_support/include/C28x_FPU_FastRTS.h | 69 + .../device_support/include/DSP281x_Adc.h | 225 ++++ .../include/DSP281x_CpuTimers.h | 185 +++ .../include/DSP281x_DefaultISR.h | 124 ++ .../device_support/include/DSP281x_DevEmu.h | 104 ++ .../device_support/include/DSP281x_Device.h | 145 ++ .../device_support/include/DSP281x_ECan.h | 1164 +++++++++++++++++ .../device_support/include/DSP281x_Ev.h | 655 ++++++++++ .../device_support/include/DSP281x_Examples.h | 1 + .../include/DSP281x_GlobalPrototypes.h | 0 .../device_support/include/DSP281x_Gpio.h | 1035 +++++++++++++++ .../device_support/include/DSP281x_Mcbsp.h | 778 +++++++++++ .../device_support/include/DSP281x_PieCtrl.h | 154 +++ .../device_support/include/DSP281x_PieVect.h | 210 +++ .../include/DSP281x_SWPrioritizedIsrLevels.h | 1 + .../device_support/include/DSP281x_Sci.h | 234 ++++ .../device_support/include/DSP281x_Spi.h | 184 +++ .../device_support/include/DSP281x_SysCtrl.h | 326 +++++ .../device_support/include/DSP281x_XIntrupt.h | 79 ++ .../device_support/include/DSP281x_Xintf.h | 112 ++ .../device_support/include/DSP2833x_Adc.h | 258 ++++ .../include/DSP2833x_CpuTimers.h | 184 +++ .../device_support/include/DSP2833x_DMA.h | 290 ++++ .../device_support/include/DSP2833x_DevEmu.h | 88 ++ .../device_support/include/DSP2833x_Device.h | 203 +++ .../device_support/include/DSP2833x_ECan.h | 1155 ++++++++++++++++ .../device_support/include/DSP2833x_ECap.h | 145 ++ .../device_support/include/DSP2833x_EPwm.h | 424 ++++++ .../device_support/include/DSP2833x_EQep.h | 236 ++++ .../device_support/include/DSP2833x_Gpio.h | 385 ++++++ .../device_support/include/DSP2833x_I2c.h | 187 +++ .../device_support/include/DSP2833x_Mcbsp.h | 709 ++++++++++ .../device_support/include/DSP2833x_PieCtrl.h | 148 +++ .../device_support/include/DSP2833x_PieVect.h | 202 +++ .../device_support/include/DSP2833x_Sci.h | 229 ++++ .../device_support/include/DSP2833x_Spi.h | 177 +++ .../device_support/include/DSP2833x_SysCtrl.h | 376 ++++++ .../include/DSP2833x_XIntrupt.h | 76 ++ .../device_support/include/DSP2833x_Xintf.h | 114 ++ .../device_support/include/IQmathLib.h | 687 ++++++++++ .../include/SimSupport_GlobalPrototypes.h | 5 + .../device_support/include/dmctype.h | 32 + .../device_support/source/C28x_FPU_FastRTS.c | 52 + .../source/C28x_FPU_FastRTS.obj | Bin 0 -> 1685 bytes .../source/DSP281x_GlobalVariableDefs.c | 265 ++++ .../source/DSP2833x_GlobalVariableDefs.c | 198 +++ .../source/DSP2833x_GlobalVariableDefs.obj | Bin 0 -> 2096 bytes .../device_support/source/IQmathLib_matlab.c | 237 ++++ Inu/main_matlab/init28335.c | 25 + Inu/main_matlab/param.c | 87 +- Inu/main_matlab/pwm_sim.c | 92 +- Inu/main_matlab/pwm_sim.h | 11 +- Inu/mcu_app_includes.h | 3 + Inu/mcu_wrapper_conf.h | 2 +- inu_23550.slx | Bin 0 -> 86468 bytes inu_im_2wnd_3lvl.slx | Bin 86890 -> 0 bytes run_mex.bat | 11 +- 59 files changed, 12987 insertions(+), 94 deletions(-) rename Inu/{ => main_matlab}/def.h (99%) create mode 100644 Inu/main_matlab/device_support/ReadMe.txt create mode 100644 Inu/main_matlab/device_support/include/C28x_FPU_FastRTS.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_Adc.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_CpuTimers.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_DefaultISR.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_DevEmu.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_Device.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_ECan.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_Ev.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_Examples.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_GlobalPrototypes.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_Gpio.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_Mcbsp.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_PieCtrl.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_PieVect.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_SWPrioritizedIsrLevels.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_Sci.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_Spi.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_SysCtrl.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_XIntrupt.h create mode 100644 Inu/main_matlab/device_support/include/DSP281x_Xintf.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_Adc.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_CpuTimers.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_DMA.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_DevEmu.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_Device.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_ECan.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_ECap.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_EPwm.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_EQep.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_Gpio.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_I2c.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_Mcbsp.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_PieCtrl.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_PieVect.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_Sci.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_Spi.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_SysCtrl.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_XIntrupt.h create mode 100644 Inu/main_matlab/device_support/include/DSP2833x_Xintf.h create mode 100644 Inu/main_matlab/device_support/include/IQmathLib.h create mode 100644 Inu/main_matlab/device_support/include/SimSupport_GlobalPrototypes.h create mode 100644 Inu/main_matlab/device_support/include/dmctype.h create mode 100644 Inu/main_matlab/device_support/source/C28x_FPU_FastRTS.c create mode 100644 Inu/main_matlab/device_support/source/C28x_FPU_FastRTS.obj create mode 100644 Inu/main_matlab/device_support/source/DSP281x_GlobalVariableDefs.c create mode 100644 Inu/main_matlab/device_support/source/DSP2833x_GlobalVariableDefs.c create mode 100644 Inu/main_matlab/device_support/source/DSP2833x_GlobalVariableDefs.obj create mode 100644 Inu/main_matlab/device_support/source/IQmathLib_matlab.c create mode 100644 inu_23550.slx delete mode 100644 inu_im_2wnd_3lvl.slx diff --git a/Inu/def.h b/Inu/main_matlab/def.h similarity index 99% rename from Inu/def.h rename to Inu/main_matlab/def.h index 4cc3abc..7336088 100644 --- a/Inu/def.h +++ b/Inu/main_matlab/def.h @@ -207,7 +207,7 @@ // / (end) -#include "DSP2833x_Device.h" +#include "DSP281x_Device.h" #include "math.h" #include "C28x_FPU_FastRTS.h" diff --git a/Inu/main_matlab/device_support/ReadMe.txt b/Inu/main_matlab/device_support/ReadMe.txt new file mode 100644 index 0000000..5fbccf6 --- /dev/null +++ b/Inu/main_matlab/device_support/ReadMe.txt @@ -0,0 +1 @@ + S-function MATLAB. diff --git a/Inu/main_matlab/device_support/include/C28x_FPU_FastRTS.h b/Inu/main_matlab/device_support/include/C28x_FPU_FastRTS.h new file mode 100644 index 0000000..03f921e --- /dev/null +++ b/Inu/main_matlab/device_support/include/C28x_FPU_FastRTS.h @@ -0,0 +1,69 @@ +// TI File $Revision: /main/2 $ +// Checkin $Date: July 10, 2008 16:11:44 $ +//########################################################################### +// This software is licensed for use with Texas Instruments C28x +// family DSCs. This license was provided to you prior to installing +// the software. You may review this license by consulting a copy of +// the agreement in the doc directory of this library. +// ------------------------------------------------------------------------ +// Copyright (C) 2007 Texas Instruments, Incorporated. +// All Rights Reserved. +// ========================================================================== +// +// FILE: C28x_FPU_FastRTS.h +// +// TITLE: Prototypes and Definitions for the C28x Fast RTS Library +// +// DESCRIPTION: +// +// These prototypes are for functions not found in the standard +// RTS library. +// +// For standard functions, include the appropriate header file as +// usual. For example: math.h +// +//########################################################################### +// $TI Release: C28x FPU fastRTS Library V1.00 $ +// $Release Date: August 6, 2008 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef C28X_FPU_FAST_RTS_H +#define C28X_FPU_FAST_RTS_H + + +//----------------------------------------------------------------------------- +// Standard C28x Data Types +//----------------------------------------------------------------------------- + + +#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 + + +//----------------------------------------------------------------------------- +// Function Prototypes +//----------------------------------------------------------------------------- + +float32 isqrt(float32 X); +void sincos(float32 radian, float32* PtrSin, float32* PtrCos); + +//----------------------------------------------------------------------------- +// +//----------------------------------------------------------------------------- + + +#endif // - end of C28X_FPU_FAST_RTS_H + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_Adc.h b/Inu/main_matlab/device_support/include/DSP281x_Adc.h new file mode 100644 index 0000000..63cfdf9 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_Adc.h @@ -0,0 +1,225 @@ +// TI File $Revision: /main/3 $ +// Checkin $Date: March 19, 2007 15:09:18 $ +//########################################################################### +// +// FILE: DSP281x_Adc.h +// +// TITLE: DSP281x Device ADC Register Definitions. +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + + +#ifndef DSP281x_ADC_H +#define DSP281x_ADC_H + +#ifdef __cplusplus +extern "C" { +#endif + + +//--------------------------------------------------------------------------- +// ADC Individual Register Bit Definitions: + +struct ADCTRL1_BITS { // bits description + Uint16 rsvd1:4; // 3:0 reserved + Uint16 SEQ_CASC:1; // 4 Cascaded sequencer mode + Uint16 SEQ_OVRD:1; // 5 Sequencer override + Uint16 CONT_RUN:1; // 6 Continuous run + Uint16 CPS:1; // 7 ADC core clock pre-scalar + Uint16 ACQ_PS:4; // 11:8 Acquisition window size + Uint16 SUSMOD:2; // 13:12 Emulation suspend mode + Uint16 RESET:1; // 14 ADC reset + Uint16 rsvd2:1; // 15 reserved +}; + + +union ADCTRL1_REG { + Uint16 all; + struct ADCTRL1_BITS bit; +}; + + +struct ADCTRL2_BITS { // bits description + Uint16 EVB_SOC_SEQ2:1; // 0 Event manager B SOC mask for SEQ2 + Uint16 rsvd1:1; // 1 reserved + Uint16 INT_MOD_SEQ2:1; // 2 SEQ2 Interrupt mode + Uint16 INT_ENA_SEQ2:1; // 3 SEQ2 Interrupt enable + Uint16 rsvd2:1; // 4 reserved + Uint16 SOC_SEQ2:1; // 5 Start of conversion for SEQ2 + Uint16 RST_SEQ2:1; // 6 Reset SEQ2 + Uint16 EXT_SOC_SEQ1:1; // 7 External start of conversion for SEQ1 + Uint16 EVA_SOC_SEQ1:1; // 8 Event manager A SOC mask for SEQ1 + Uint16 rsvd3:1; // 9 reserved + Uint16 INT_MOD_SEQ1:1; // 10 SEQ1 Interrupt mode + Uint16 INT_ENA_SEQ1:1; // 11 SEQ1 Interrupt enable + Uint16 rsvd4:1; // 12 reserved + Uint16 SOC_SEQ1:1; // 13 Start of conversion trigger for SEQ1 + Uint16 RST_SEQ1:1; // 14 Restart sequencer 1 + Uint16 EVB_SOC_SEQ:1; // 15 EVB SOC enable +}; + + +union ADCTRL2_REG { + Uint16 all; + struct ADCTRL2_BITS bit; +}; + + +struct ADCASEQSR_BITS { // bits description + Uint16 SEQ1_STATE:4; // 3:0 SEQ1 state + Uint16 SEQ2_STATE:3; // 6:4 SEQ2 state + Uint16 rsvd1:1; // 7 reserved + Uint16 SEQ_CNTR:4; // 11:8 Sequencing counter status + Uint16 rsvd2:4; // 15:12 reserved +}; + +union ADCASEQSR_REG { + Uint16 all; + struct ADCASEQSR_BITS bit; +}; + + +struct ADCMAXCONV_BITS { // bits description + Uint16 MAX_CONV1:4; // 3:0 Max number of conversions + Uint16 MAX_CONV2:3; // 6:4 Max number of conversions + Uint16 rsvd1:9; // 15:7 reserved +}; + +union ADCMAXCONV_REG { + Uint16 all; + struct ADCMAXCONV_BITS bit; +}; + + +struct ADCCHSELSEQ1_BITS { // bits description + Uint16 CONV00:4; // 3:0 Conversion selection 00 + Uint16 CONV01:4; // 7:4 Conversion selection 01 + Uint16 CONV02:4; // 11:8 Conversion selection 02 + Uint16 CONV03:4; // 15:12 Conversion selection 03 +}; + +union ADCCHSELSEQ1_REG{ + Uint16 all; + struct ADCCHSELSEQ1_BITS bit; +}; + +struct ADCCHSELSEQ2_BITS { // bits description + Uint16 CONV04:4; // 3:0 Conversion selection 04 + Uint16 CONV05:4; // 7:4 Conversion selection 05 + Uint16 CONV06:4; // 11:8 Conversion selection 06 + Uint16 CONV07:4; // 15:12 Conversion selection 07 +}; + +union ADCCHSELSEQ2_REG{ + Uint16 all; + struct ADCCHSELSEQ2_BITS bit; +}; + +struct ADCCHSELSEQ3_BITS { // bits description + Uint16 CONV08:4; // 3:0 Conversion selection 08 + Uint16 CONV09:4; // 7:4 Conversion selection 09 + Uint16 CONV10:4; // 11:8 Conversion selection 10 + Uint16 CONV11:4; // 15:12 Conversion selection 11 +}; + +union ADCCHSELSEQ3_REG{ + Uint16 all; + struct ADCCHSELSEQ3_BITS bit; +}; + +struct ADCCHSELSEQ4_BITS { // bits description + Uint16 CONV12:4; // 3:0 Conversion selection 12 + Uint16 CONV13:4; // 7:4 Conversion selection 13 + Uint16 CONV14:4; // 11:8 Conversion selection 14 + Uint16 CONV15:4; // 15:12 Conversion selection 15 +}; + +union ADCCHSELSEQ4_REG { + Uint16 all; + struct ADCCHSELSEQ4_BITS bit; +}; + +struct ADCTRL3_BITS { // bits description + Uint16 SMODE_SEL:1; // 0 Sampling mode select + Uint16 ADCCLKPS:4; // 4:1 ADC core clock divider + Uint16 ADCPWDN:1; // 5 ADC powerdown + Uint16 ADCBGRFDN:2; // 7:6 ADC bandgap/ref power down + Uint16 ADCEXTREF:1; // 8 ADC external reference + Uint16 rsvd1:7; // 15:9 reserved +}; + +union ADCTRL3_REG { + Uint16 all; + struct ADCTRL3_BITS bit; +}; + + +struct ADCST_BITS { // bits description + Uint16 INT_SEQ1:1; // 0 SEQ1 Interrupt flag + Uint16 INT_SEQ2:1; // 1 SEQ2 Interrupt flag + Uint16 SEQ1_BSY:1; // 2 SEQ1 busy status + Uint16 SEQ2_BSY:1; // 3 SEQ2 busy status + Uint16 INT_SEQ1_CLR:1; // 4 SEQ1 Interrupt clear + Uint16 INT_SEQ2_CLR:1; // 5 SEQ2 Interrupt clear + Uint16 EOS_BUF1:1; // 6 End of sequence buffer1 + Uint16 EOS_BUF2:1; // 7 End of sequence buffer2 + Uint16 rsvd1:8; // 15:8 reserved +}; + + +union ADCST_REG { + Uint16 all; + struct ADCST_BITS bit; +}; + + +struct ADC_REGS { + union ADCTRL1_REG ADCTRL1; // ADC Control 1 + union ADCTRL2_REG ADCTRL2; // ADC Control 2 + union ADCMAXCONV_REG ADCMAXCONV; // Max conversions + union ADCCHSELSEQ1_REG ADCCHSELSEQ1; // Channel select sequencing control 1 + union ADCCHSELSEQ2_REG ADCCHSELSEQ2; // Channel select sequencing control 2 + union ADCCHSELSEQ3_REG ADCCHSELSEQ3; // Channel select sequencing control 3 + union ADCCHSELSEQ4_REG ADCCHSELSEQ4; // Channel select sequencing control 4 + union ADCASEQSR_REG ADCASEQSR; // Autosequence status register + Uint16 ADCRESULT0; // Conversion Result Buffer 0 + Uint16 ADCRESULT1; // Conversion Result Buffer 1 + Uint16 ADCRESULT2; // Conversion Result Buffer 2 + Uint16 ADCRESULT3; // Conversion Result Buffer 3 + Uint16 ADCRESULT4; // Conversion Result Buffer 4 + Uint16 ADCRESULT5; // Conversion Result Buffer 5 + Uint16 ADCRESULT6; // Conversion Result Buffer 6 + Uint16 ADCRESULT7; // Conversion Result Buffer 7 + Uint16 ADCRESULT8; // Conversion Result Buffer 8 + Uint16 ADCRESULT9; // Conversion Result Buffer 9 + Uint16 ADCRESULT10; // Conversion Result Buffer 10 + Uint16 ADCRESULT11; // Conversion Result Buffer 11 + Uint16 ADCRESULT12; // Conversion Result Buffer 12 + Uint16 ADCRESULT13; // Conversion Result Buffer 13 + Uint16 ADCRESULT14; // Conversion Result Buffer 14 + Uint16 ADCRESULT15; // Conversion Result Buffer 15 + union ADCTRL3_REG ADCTRL3; // ADC Control 3 + union ADCST_REG ADCST; // ADC Status Register +}; + + +//--------------------------------------------------------------------------- +// ADC External References & Function Declarations: +// +extern struct ADC_REGS AdcRegs; + + +#ifdef __cplusplus +} +#endif /* extern "C" */ + + +#endif // end of DSP281x_ADC_H definition + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_CpuTimers.h b/Inu/main_matlab/device_support/include/DSP281x_CpuTimers.h new file mode 100644 index 0000000..871bd1f --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_CpuTimers.h @@ -0,0 +1,185 @@ +// TI File $Revision: /main/3 $ +// Checkin $Date: July 9, 2009 17:08:54 $ +//########################################################################### +// +// FILE: DSP281x_CpuTimers.h +// +// TITLE: DSP281x CPU 32-bit Timers Register Definitions. +// +// NOTES: CpuTimer2 is reserved for use with DSP BIOS and +// other realtime operating systems. +// +// Do not use this timer in your application if you ever plan +// on integrating DSP-BIOS or another realtime OS. +// +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_CPU_TIMERS_H +#define DSP281x_CPU_TIMERS_H + +#ifdef __cplusplus +extern "C" { +#endif + +//--------------------------------------------------------------------------- +// CPU Timer Register Bit Definitions: +// +// +// TCR: Control register bit definitions: +struct TCR_BITS { // bits description + Uint16 rsvd1:4; // 3:0 reserved + Uint16 TSS:1; // 4 Timer Start/Stop + Uint16 TRB:1; // 5 Timer reload + Uint16 rsvd2:4; // 9:6 reserved + Uint16 SOFT:1; // 10 Emulation modes + Uint16 FREE:1; // 11 + Uint16 rsvd3:2; // 12:13 reserved + Uint16 TIE:1; // 14 Output enable + Uint16 TIF:1; // 15 Interrupt flag +}; + +union TCR_REG { + Uint16 all; + struct TCR_BITS bit; +}; + +// TPR: Pre-scale low bit definitions: +struct TPR_BITS { // bits description + Uint16 TDDR:8; // 7:0 Divide-down low + Uint16 PSC:8; // 15:8 Prescale counter low +}; + +union TPR_REG { + Uint16 all; + struct TPR_BITS bit; +}; + +// TPRH: Pre-scale high bit definitions: +struct TPRH_BITS { // bits description + Uint16 TDDRH:8; // 7:0 Divide-down high + Uint16 PSCH:8; // 15:8 Prescale counter high +}; + +union TPRH_REG { + Uint16 all; + struct TPRH_BITS bit; +}; + +// TIM, TIMH: Timer register definitions: +struct TIM_REG { + Uint16 LSW; + Uint16 MSW; +}; + +union TIM_GROUP { + Uint32 all; + struct TIM_REG half; +}; + +// PRD, PRDH: Period register definitions: +struct PRD_REG { + Uint16 LSW; + Uint16 MSW; +}; + +union PRD_GROUP { + Uint32 all; + struct PRD_REG half; +}; + +//--------------------------------------------------------------------------- +// CPU Timer Register File: +// +struct CPUTIMER_REGS { + union TIM_GROUP TIM; // Timer counter register + union PRD_GROUP PRD; // Period register + union TCR_REG TCR; // Timer control register + Uint16 rsvd1; // reserved + union TPR_REG TPR; // Timer pre-scale low + union TPRH_REG TPRH; // Timer pre-scale high +}; + +//--------------------------------------------------------------------------- +// CPU Timer Support Variables: +// +struct CPUTIMER_VARS { + struct CPUTIMER_REGS *RegsAddr; + Uint32 InterruptCount; + float CPUFreqInMHz; + float PeriodInUSec; +}; + +//--------------------------------------------------------------------------- +// Function prototypes and external definitions: +// +void InitCpuTimers(void); +void ConfigCpuTimer(struct CPUTIMER_VARS *Timer, float Freq, float Period); + +extern struct CPUTIMER_REGS CpuTimer0Regs; +extern struct CPUTIMER_VARS CpuTimer0; + +// CpuTimer2 is reserved when using DSP BIOS & other RTOS +extern struct CPUTIMER_REGS CpuTimer1Regs; +extern struct CPUTIMER_REGS CpuTimer2Regs; + +extern struct CPUTIMER_VARS CpuTimer1; +extern struct CPUTIMER_VARS CpuTimer2; + +//--------------------------------------------------------------------------- +// Usefull Timer Operations: +// +// Start Timer: +#define StartCpuTimer0() CpuTimer0Regs.TCR.bit.TSS = 0 + +// Stop Timer: +#define StopCpuTimer0() CpuTimer0Regs.TCR.bit.TSS = 1 + +// Reload Timer With period Value: +#define ReloadCpuTimer0() CpuTimer0Regs.TCR.bit.TRB = 1 + +// Read 32-Bit Timer Value: +#define ReadCpuTimer0Counter() CpuTimer0Regs.TIM.all + +// Read 32-Bit Period Value: +#define ReadCpuTimer0Period() CpuTimer0Regs.PRD.all + +// CpuTimer2 is reserved by DSP BIOS & other RTOS +// Do not use this timer if you ever plan on integrating +// DSP-BIOS or another realtime OS. + +// Start Timer: +#define StartCpuTimer1() CpuTimer1Regs.TCR.bit.TSS = 0 +#define StartCpuTimer2() CpuTimer2Regs.TCR.bit.TSS = 0 + +// Stop Timer: +#define StopCpuTimer1() CpuTimer1Regs.TCR.bit.TSS = 1 +#define StopCpuTimer2() CpuTimer2Regs.TCR.bit.TSS = 1 + +// Reload Timer With period Value: +#define ReloadCpuTimer1() CpuTimer1Regs.TCR.bit.TRB = 1 +#define ReloadCpuTimer2() CpuTimer2Regs.TCR.bit.TRB = 1 + +// Read 32-Bit Timer Value: +#define ReadCpuTimer1Counter() CpuTimer1Regs.TIM.all +#define ReadCpuTimer2Counter() CpuTimer2Regs.TIM.all + +// Read 32-Bit Period Value: +#define ReadCpuTimer1Period() CpuTimer1Regs.PRD.all +#define ReadCpuTimer2Period() CpuTimer2Regs.PRD.all + + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_CPU_TIMERS_H definition + + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_DefaultISR.h b/Inu/main_matlab/device_support/include/DSP281x_DefaultISR.h new file mode 100644 index 0000000..cab42ec --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_DefaultISR.h @@ -0,0 +1,124 @@ +// TI File $Revision: /main/2 $ +// Checkin $Date: April 28, 2005 14:57:38 $ +//########################################################################### +// +// FILE: DSP281x_DefaultIsr.h +// +// TITLE: DSP281x Devices Default Interrupt Service Routines Definitions. +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_DEFAULT_ISR_H +#define DSP281x_DEFAULT_ISR_H + +#ifdef __cplusplus +extern "C" { +#endif + + +//--------------------------------------------------------------------------- +// Default Interrupt Service Routine Declarations: +// +// The following function prototypes are for the +// default ISR routines used with the default PIE vector table. +// This default vector table is found in the DSP281x_PieVect.h +// file. +// + +// Non-Peripheral Interrupts: +interrupt void INT13_ISR(void); // XINT13 or CPU-Timer 1 +interrupt void INT14_ISR(void); // CPU-Timer2 +interrupt void DATALOG_ISR(void); // Datalogging interrupt +interrupt void RTOSINT_ISR(void); // RTOS interrupt +interrupt void EMUINT_ISR(void); // Emulation interrupt +interrupt void NMI_ISR(void); // Non-maskable interrupt +interrupt void ILLEGAL_ISR(void); // Illegal operation TRAP +interrupt void USER1_ISR(void); // User Defined trap 1 +interrupt void USER2_ISR(void); // User Defined trap 2 +interrupt void USER3_ISR(void); // User Defined trap 3 +interrupt void USER4_ISR(void); // User Defined trap 4 +interrupt void USER5_ISR(void); // User Defined trap 5 +interrupt void USER6_ISR(void); // User Defined trap 6 +interrupt void USER7_ISR(void); // User Defined trap 7 +interrupt void USER8_ISR(void); // User Defined trap 8 +interrupt void USER9_ISR(void); // User Defined trap 9 +interrupt void USER10_ISR(void); // User Defined trap 10 +interrupt void USER11_ISR(void); // User Defined trap 11 +interrupt void USER12_ISR(void); // User Defined trap 12 + +// Group 1 PIE Interrupt Service Routines: +interrupt void PDPINTA_ISR(void); // EV-A +interrupt void PDPINTB_ISR(void); // EV-B +interrupt void XINT1_ISR(void); +interrupt void XINT2_ISR(void); +interrupt void ADCINT_ISR(void); // ADC +interrupt void TINT0_ISR(void); // Timer 0 +interrupt void WAKEINT_ISR(void); // WD + +// Group 2 PIE Interrupt Service Routines: +interrupt void CMP1INT_ISR(void); // EV-A +interrupt void CMP2INT_ISR(void); // EV-A +interrupt void CMP3INT_ISR(void); // EV-A +interrupt void T1PINT_ISR(void); // EV-A +interrupt void T1CINT_ISR(void); // EV-A +interrupt void T1UFINT_ISR(void); // EV-A +interrupt void T1OFINT_ISR(void); // EV-A + +// Group 3 PIE Interrupt Service Routines: +interrupt void T2PINT_ISR(void); // EV-A +interrupt void T2CINT_ISR(void); // EV-A +interrupt void T2UFINT_ISR(void); // EV-A +interrupt void T2OFINT_ISR(void); // EV-A +interrupt void CAPINT1_ISR(void); // EV-A +interrupt void CAPINT2_ISR(void); // EV-A +interrupt void CAPINT3_ISR(void); // EV-A + +// Group 4 PIE Interrupt Service Routines: +interrupt void CMP4INT_ISR(void); // EV-B +interrupt void CMP5INT_ISR(void); // EV-B +interrupt void CMP6INT_ISR(void); // EV-B +interrupt void T3PINT_ISR(void); // EV-B +interrupt void T3CINT_ISR(void); // EV-B +interrupt void T3UFINT_ISR(void); // EV-B +interrupt void T3OFINT_ISR(void); // EV-B + +// Group 5 PIE Interrupt Service Routines: +interrupt void T4PINT_ISR(void); // EV-B +interrupt void T4CINT_ISR(void); // EV-B +interrupt void T4UFINT_ISR(void); // EV-B +interrupt void T4OFINT_ISR(void); // EV-B +interrupt void CAPINT4_ISR(void); // EV-B +interrupt void CAPINT5_ISR(void); // EV-B +interrupt void CAPINT6_ISR(void); // EV-B + +// Group 6 PIE Interrupt Service Routines: +interrupt void SPIRXINTA_ISR(void); // SPI +interrupt void SPITXINTA_ISR(void); // SPI +interrupt void MRINTA_ISR(void); // McBSP +interrupt void MXINTA_ISR(void); // McBSP + + +// Group 9 PIE Interrupt Service Routines: +interrupt void SCIRXINTA_ISR(void); // SCI-A +interrupt void SCITXINTA_ISR(void); // SCI-A +interrupt void SCIRXINTB_ISR(void); // SCI-B +interrupt void SCITXINTB_ISR(void); // SCI-B +interrupt void ECAN0INTA_ISR(void); // eCAN +interrupt void ECAN1INTA_ISR(void); // eCAN + + +// Catch-all for Reserved Locations For testing purposes: +interrupt void PIE_RESERVED(void); // Reserved for test +interrupt void rsvd_ISR(void); // for test + + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_DEFAULT_ISR_H definition + diff --git a/Inu/main_matlab/device_support/include/DSP281x_DevEmu.h b/Inu/main_matlab/device_support/include/DSP281x_DevEmu.h new file mode 100644 index 0000000..fb0489f --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_DevEmu.h @@ -0,0 +1,104 @@ +//########################################################################### +// +// FILE: DSP281x_DevEmu.h +// +// TITLE: DSP281x Device Emulation Register Definitions. +// +//########################################################################### +// +// Ver | dd mmm yyyy | Who | Description of changes +// =====|=============|======|=============================================== +// 1.00| 11 Sep 2003 | L.H. | Changes since previous version (v.58 Alpha) +// | | | As of Rev C silicon, DEVICEID is a 16-bit +// | | | register +// | | | Commented out the DFT test registers. These +// | | | are not needed as of Rev C silicon. +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_DEV_EMU_H +#define DSP281x_DEV_EMU_H + +#ifdef __cplusplus +extern "C" { +#endif + +//--------------------------------------------------------------------------- +// Device Emulation Register Bit Definitions: +// +// Device Configuration Register Bit Definitions +struct DEVICECNF_BITS { // bits description + Uint16 rsvd1:3; // 2:0 reserved + Uint16 VMAPS:1; // 3 VMAP Status + Uint16 rsvd2:1; // 4 reserved + Uint16 XRSn:1; // 5 XRSn Signal Status + Uint16 rsvd3:10; // 15:6 + Uint16 rsvd4:3; // 18:6 + Uint16 ENPROT:1; // 19 Enable/Disable pipeline protection + Uint16 rsvd5:12; // 31:20 reserved +}; + +union DEVICECNF_REG { + Uint32 all; + struct DEVICECNF_BITS bit; +}; + + +// Device ID Register Bit Definitions +struct DEVICEID_BITS { // bits description + Uint16 REVID:16; // 15:0 Silicon revision +}; + +union DEVICEID_REG { + Uint16 all; + struct DEVICEID_BITS bit; +}; + +// PARTID Register Bit Definitions +struct PARTID_BITS { // bits description + Uint16 PARTNO:8; // 7:0 Part Number + Uint16 PARTTYPE:8; // 15:8 Part Type +}; + +union PARTID_REG { + Uint16 all; + struct PARTID_BITS bit; +}; + +struct DEV_EMU_REGS { + union DEVICECNF_REG DEVICECNF; // device configuration + union PARTID_REG PARTID; // Part ID + union DEVICEID_REG DEVICEID; // Device ID + Uint16 PROTSTART; // Write-Read protection start + Uint16 PROTRANGE; // Write-Read protection range + Uint16 rsvd2[202]; +// These registers are no longer needed for Rev C and beyond +// Uint16 M0RAMDFT; +// Uint16 M1RAMDFT; +// Uint16 L0RAMDFT; +// Uint16 L1RAMDFT; +// Uint16 H0RAMDFT; +}; + +#define REVID DEVICEID // REVID replaces DEVICEID starting 281x header files v1.10 + // use #define to maintain code compatibility with v1.00 and older + + + +//--------------------------------------------------------------------------- +// Device Emulation Register References & Function Declarations: +// +extern struct DEV_EMU_REGS DevEmuRegs; + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_DEV_EMU_H definition + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_Device.h b/Inu/main_matlab/device_support/include/DSP281x_Device.h new file mode 100644 index 0000000..0423872 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_Device.h @@ -0,0 +1,145 @@ +// TI File $Revision: /main/5 $ +// Checkin $Date: December 17, 2007 13:36:09 $ +//########################################################################### +// +// FILE: DSP281x_Device.h +// +// TITLE: DSP281x Device Definitions. +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_DEVICE_H +#define DSP281x_DEVICE_H + + +#ifdef __cplusplus +extern "C" { +#endif + + +#define TARGET 1 +//--------------------------------------------------------------------------- +// User To Select Target Device: + +#define DSP28_F2812 TARGET +#define DSP28_F2811 0 +#define DSP28_F2810 0 + +//--------------------------------------------------------------------------- +// Common CPU Definitions: +// + +extern cregister unsigned int IFR; +extern cregister 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 + +#ifndef NULL + #define NULL 0 +#endif + + +//--------------------------------------------------------------------------- +// 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 + +#define LOWORD(l)((short int)( (long int)(l) &0xFFFF)) +#define HIWORD(l)((short int)(((long int)(l)>>16)&0xFFFF)) + +#define LOBYTE(w)((char)( (short int)(w) &0xFF)) +#define HIBYTE(w)((char)(((short int)(w)>>8)&0xFF)) + +#define BYTE3(l)((char)(((long int)(l)>>24)&0xFF)) +#define BYTE2(l)((char)(((long int)(l)>>16)&0xFF)) +#define BYTE1(l)((char)(((long int)(l)>> 8)&0xFF)) +#define BYTE0(l)((char)( (long int)(l) &0xFF)) + +//--------------------------------------------------------------------------- +// Include All Peripheral Header Files: +// + +#include "DSP281x_SysCtrl.h" // System Control/Power Modes +#include "DSP281x_DevEmu.h" // Device Emulation Registers +#include "DSP281x_Xintf.h" // External Interface Registers +#include "DSP281x_CpuTimers.h" // 32-bit CPU Timers +#include "DSP281x_PieCtrl.h" // PIE Control Registers +#include "DSP281x_PieVect.h" // PIE Vector Table +#include "DSP281x_Spi.h" // SPI Registers +#include "DSP281x_Sci.h" // SCI Registers +#include "DSP281x_Mcbsp.h" // McBSP Registers +#include "DSP281x_ECan.h" // Enhanced eCAN Registers +#include "DSP281x_Gpio.h" // General Purpose I/O Registers +#include "DSP281x_Ev.h" // Event Manager Registers +#include "DSP281x_Adc.h" // ADC Registers +#include "DSP281x_XIntrupt.h" // External Interrupts + +#define XCLKIN 24000000 // external oscillator frequency +extern float SYSCLKOUT, LSPCLK, HSPCLK; + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_DEVICE_H definition + + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_ECan.h b/Inu/main_matlab/device_support/include/DSP281x_ECan.h new file mode 100644 index 0000000..4999fce --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_ECan.h @@ -0,0 +1,1164 @@ +//########################################################################### +// +// FILE: DSP281x_ECan.h +// +// TITLE: DSP281x Device eCAN Register Definitions. +// +//########################################################################### +// +// Ver | dd mmm yyyy | Who | Description of changes +// =====|=============|======|=============================================== +// 1.00a| 07/21/2004 | H.J. |(i) Support for errata (as explained in SPRZ193E and above) incorporated +// |(ii) Changed the byte ordering to make it easy to use with the +// | default value of DBO bit (0). + +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_ECAN_H +#define DSP281x_ECAN_H + +/* These 2 lines have been added to support the C callable assembly workaround */ +/* This is to support the workaround for errata (as explained in SPRZ193E and above) */ + +extern void CanDoubleRead(Uint32 *StorePtr, Uint32 *RegPtr); +extern void CanDoubleWrite(Uint32 *RegPtr, Uint32 *LoadPtr); + +#ifdef __cplusplus +extern "C" { +#endif + + +/* --------------------------------------------------- */ +/* eCAN Control & Status Registers */ +/* ----------------------------------------------------*/ + +/* eCAN Mailbox enable register (CANME) bit definitions */ +struct CANME_BITS { // bit description + Uint16 ME0:1; // 0 Enable Mailbox 0 + Uint16 ME1:1; // 1 Enable Mailbox 1 + Uint16 ME2:1; // 2 Enable Mailbox 2 + Uint16 ME3:1; // 3 Enable Mailbox 3 + Uint16 ME4:1; // 4 Enable Mailbox 4 + Uint16 ME5:1; // 5 Enable Mailbox 5 + Uint16 ME6:1; // 6 Enable Mailbox 6 + Uint16 ME7:1; // 7 Enable Mailbox 7 + Uint16 ME8:1; // 8 Enable Mailbox 8 + Uint16 ME9:1; // 9 Enable Mailbox 9 + Uint16 ME10:1; // 10 Enable Mailbox 10 + Uint16 ME11:1; // 11 Enable Mailbox 11 + Uint16 ME12:1; // 12 Enable Mailbox 12 + Uint16 ME13:1; // 13 Enable Mailbox 13 + Uint16 ME14:1; // 14 Enable Mailbox 14 + Uint16 ME15:1; // 15 Enable Mailbox 15 + Uint16 ME16:1; // 16 Enable Mailbox 16 + Uint16 ME17:1; // 17 Enable Mailbox 17 + Uint16 ME18:1; // 18 Enable Mailbox 18 + Uint16 ME19:1; // 19 Enable Mailbox 19 + Uint16 ME20:1; // 20 Enable Mailbox 20 + Uint16 ME21:1; // 21 Enable Mailbox 21 + Uint16 ME22:1; // 22 Enable Mailbox 22 + Uint16 ME23:1; // 23 Enable Mailbox 23 + Uint16 ME24:1; // 24 Enable Mailbox 24 + Uint16 ME25:1; // 25 Enable Mailbox 25 + Uint16 ME26:1; // 26 Enable Mailbox 26 + Uint16 ME27:1; // 27 Enable Mailbox 27 + Uint16 ME28:1; // 28 Enable Mailbox 28 + Uint16 ME29:1; // 29 Enable Mailbox 29 + Uint16 ME30:1; // 30 Enable Mailbox 30 + Uint16 ME31:1; // 31 Enable Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANME_REG { + Uint32 all; + struct CANME_BITS bit; +}; + +/* eCAN Mailbox direction register (CANMD) bit definitions */ +struct CANMD_BITS { // bit description + Uint16 MD0:1; // 0 0 -> Tx 1 -> Rx + Uint16 MD1:1; // 1 0 -> Tx 1 -> Rx + Uint16 MD2:1; // 2 0 -> Tx 1 -> Rx + Uint16 MD3:1; // 3 0 -> Tx 1 -> Rx + Uint16 MD4:1; // 4 0 -> Tx 1 -> Rx + Uint16 MD5:1; // 5 0 -> Tx 1 -> Rx + Uint16 MD6:1; // 6 0 -> Tx 1 -> Rx + Uint16 MD7:1; // 7 0 -> Tx 1 -> Rx + Uint16 MD8:1; // 8 0 -> Tx 1 -> Rx + Uint16 MD9:1; // 9 0 -> Tx 1 -> Rx + Uint16 MD10:1; // 10 0 -> Tx 1 -> Rx + Uint16 MD11:1; // 11 0 -> Tx 1 -> Rx + Uint16 MD12:1; // 12 0 -> Tx 1 -> Rx + Uint16 MD13:1; // 13 0 -> Tx 1 -> Rx + Uint16 MD14:1; // 14 0 -> Tx 1 -> Rx + Uint16 MD15:1; // 15 0 -> Tx 1 -> Rx + Uint16 MD16:1; // 16 0 -> Tx 1 -> Rx + Uint16 MD17:1; // 17 0 -> Tx 1 -> Rx + Uint16 MD18:1; // 18 0 -> Tx 1 -> Rx + Uint16 MD19:1; // 19 0 -> Tx 1 -> Rx + Uint16 MD20:1; // 20 0 -> Tx 1 -> Rx + Uint16 MD21:1; // 21 0 -> Tx 1 -> Rx + Uint16 MD22:1; // 22 0 -> Tx 1 -> Rx + Uint16 MD23:1; // 23 0 -> Tx 1 -> Rx + Uint16 MD24:1; // 24 0 -> Tx 1 -> Rx + Uint16 MD25:1; // 25 0 -> Tx 1 -> Rx + Uint16 MD26:1; // 26 0 -> Tx 1 -> Rx + Uint16 MD27:1; // 27 0 -> Tx 1 -> Rx + Uint16 MD28:1; // 28 0 -> Tx 1 -> Rx + Uint16 MD29:1; // 29 0 -> Tx 1 -> Rx + Uint16 MD30:1; // 30 0 -> Tx 1 -> Rx + Uint16 MD31:1; // 31 0 -> Tx 1 -> Rx + +}; + +/* Allow access to the bit fields or entire register */ +union CANMD_REG { + Uint32 all; + struct CANMD_BITS bit; +}; + +/* eCAN Transmit Request Set register (CANTRS) bit definitions */ +struct CANTRS_BITS { // bit description + Uint16 TRS0:1; // 0 TRS for Mailbox 0 + Uint16 TRS1:1; // 1 TRS for Mailbox 1 + Uint16 TRS2:1; // 2 TRS for Mailbox 2 + Uint16 TRS3:1; // 3 TRS for Mailbox 3 + Uint16 TRS4:1; // 4 TRS for Mailbox 4 + Uint16 TRS5:1; // 5 TRS for Mailbox 5 + Uint16 TRS6:1; // 6 TRS for Mailbox 6 + Uint16 TRS7:1; // 7 TRS for Mailbox 7 + Uint16 TRS8:1; // 8 TRS for Mailbox 8 + Uint16 TRS9:1; // 9 TRS for Mailbox 9 + Uint16 TRS10:1; // 10 TRS for Mailbox 10 + Uint16 TRS11:1; // 11 TRS for Mailbox 11 + Uint16 TRS12:1; // 12 TRS for Mailbox 12 + Uint16 TRS13:1; // 13 TRS for Mailbox 13 + Uint16 TRS14:1; // 14 TRS for Mailbox 14 + Uint16 TRS15:1; // 15 TRS for Mailbox 15 + Uint16 TRS16:1; // 16 TRS for Mailbox 16 + Uint16 TRS17:1; // 17 TRS for Mailbox 17 + Uint16 TRS18:1; // 18 TRS for Mailbox 18 + Uint16 TRS19:1; // 19 TRS for Mailbox 19 + Uint16 TRS20:1; // 20 TRS for Mailbox 20 + Uint16 TRS21:1; // 21 TRS for Mailbox 21 + Uint16 TRS22:1; // 22 TRS for Mailbox 22 + Uint16 TRS23:1; // 23 TRS for Mailbox 23 + Uint16 TRS24:1; // 24 TRS for Mailbox 24 + Uint16 TRS25:1; // 25 TRS for Mailbox 25 + Uint16 TRS26:1; // 26 TRS for Mailbox 26 + Uint16 TRS27:1; // 27 TRS for Mailbox 27 + Uint16 TRS28:1; // 28 TRS for Mailbox 28 + Uint16 TRS29:1; // 29 TRS for Mailbox 29 + Uint16 TRS30:1; // 30 TRS for Mailbox 30 + Uint16 TRS31:1; // 31 TRS for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANTRS_REG { + Uint32 all; + struct CANTRS_BITS bit; +}; + +/* eCAN Transmit Request Reset register (CANTRR) bit definitions */ +struct CANTRR_BITS { // bit description + Uint16 TRR0:1; // 0 TRR for Mailbox 0 + Uint16 TRR1:1; // 1 TRR for Mailbox 1 + Uint16 TRR2:1; // 2 TRR for Mailbox 2 + Uint16 TRR3:1; // 3 TRR for Mailbox 3 + Uint16 TRR4:1; // 4 TRR for Mailbox 4 + Uint16 TRR5:1; // 5 TRR for Mailbox 5 + Uint16 TRR6:1; // 6 TRR for Mailbox 6 + Uint16 TRR7:1; // 7 TRR for Mailbox 7 + Uint16 TRR8:1; // 8 TRR for Mailbox 8 + Uint16 TRR9:1; // 9 TRR for Mailbox 9 + Uint16 TRR10:1; // 10 TRR for Mailbox 10 + Uint16 TRR11:1; // 11 TRR for Mailbox 11 + Uint16 TRR12:1; // 12 TRR for Mailbox 12 + Uint16 TRR13:1; // 13 TRR for Mailbox 13 + Uint16 TRR14:1; // 14 TRR for Mailbox 14 + Uint16 TRR15:1; // 15 TRR for Mailbox 15 + Uint16 TRR16:1; // 16 TRR for Mailbox 16 + Uint16 TRR17:1; // 17 TRR for Mailbox 17 + Uint16 TRR18:1; // 18 TRR for Mailbox 18 + Uint16 TRR19:1; // 19 TRR for Mailbox 19 + Uint16 TRR20:1; // 20 TRR for Mailbox 20 + Uint16 TRR21:1; // 21 TRR for Mailbox 21 + Uint16 TRR22:1; // 22 TRR for Mailbox 22 + Uint16 TRR23:1; // 23 TRR for Mailbox 23 + Uint16 TRR24:1; // 24 TRR for Mailbox 24 + Uint16 TRR25:1; // 25 TRR for Mailbox 25 + Uint16 TRR26:1; // 26 TRR for Mailbox 26 + Uint16 TRR27:1; // 27 TRR for Mailbox 27 + Uint16 TRR28:1; // 28 TRR for Mailbox 28 + Uint16 TRR29:1; // 29 TRR for Mailbox 29 + Uint16 TRR30:1; // 30 TRR for Mailbox 30 + Uint16 TRR31:1; // 31 TRR for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANTRR_REG { + Uint32 all; + struct CANTRR_BITS bit; +}; + +/* eCAN Transmit Acknowledge register (CANTA) bit definitions */ +struct CANTA_BITS { // bit description + Uint16 TA0:1; // 0 TA for Mailbox 0 + Uint16 TA1:1; // 1 TA for Mailbox 1 + Uint16 TA2:1; // 2 TA for Mailbox 2 + Uint16 TA3:1; // 3 TA for Mailbox 3 + Uint16 TA4:1; // 4 TA for Mailbox 4 + Uint16 TA5:1; // 5 TA for Mailbox 5 + Uint16 TA6:1; // 6 TA for Mailbox 6 + Uint16 TA7:1; // 7 TA for Mailbox 7 + Uint16 TA8:1; // 8 TA for Mailbox 8 + Uint16 TA9:1; // 9 TA for Mailbox 9 + Uint16 TA10:1; // 10 TA for Mailbox 10 + Uint16 TA11:1; // 11 TA for Mailbox 11 + Uint16 TA12:1; // 12 TA for Mailbox 12 + Uint16 TA13:1; // 13 TA for Mailbox 13 + Uint16 TA14:1; // 14 TA for Mailbox 14 + Uint16 TA15:1; // 15 TA for Mailbox 15 + Uint16 TA16:1; // 16 TA for Mailbox 16 + Uint16 TA17:1; // 17 TA for Mailbox 17 + Uint16 TA18:1; // 18 TA for Mailbox 18 + Uint16 TA19:1; // 19 TA for Mailbox 19 + Uint16 TA20:1; // 20 TA for Mailbox 20 + Uint16 TA21:1; // 21 TA for Mailbox 21 + Uint16 TA22:1; // 22 TA for Mailbox 22 + Uint16 TA23:1; // 23 TA for Mailbox 23 + Uint16 TA24:1; // 24 TA for Mailbox 24 + Uint16 TA25:1; // 25 TA for Mailbox 25 + Uint16 TA26:1; // 26 TA for Mailbox 26 + Uint16 TA27:1; // 27 TA for Mailbox 27 + Uint16 TA28:1; // 28 TA for Mailbox 28 + Uint16 TA29:1; // 29 TA for Mailbox 29 + Uint16 TA30:1; // 30 TA for Mailbox 30 + Uint16 TA31:1; // 31 TA for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANTA_REG { + Uint32 all; + struct CANTA_BITS bit; +}; + +/* eCAN Transmit Abort Acknowledge register (CANAA) bit definitions */ +struct CANAA_BITS { // bit description + Uint16 AA0:1; // 0 AA for Mailbox 0 + Uint16 AA1:1; // 1 AA for Mailbox 1 + Uint16 AA2:1; // 2 AA for Mailbox 2 + Uint16 AA3:1; // 3 AA for Mailbox 3 + Uint16 AA4:1; // 4 AA for Mailbox 4 + Uint16 AA5:1; // 5 AA for Mailbox 5 + Uint16 AA6:1; // 6 AA for Mailbox 6 + Uint16 AA7:1; // 7 AA for Mailbox 7 + Uint16 AA8:1; // 8 AA for Mailbox 8 + Uint16 AA9:1; // 9 AA for Mailbox 9 + Uint16 AA10:1; // 10 AA for Mailbox 10 + Uint16 AA11:1; // 11 AA for Mailbox 11 + Uint16 AA12:1; // 12 AA for Mailbox 12 + Uint16 AA13:1; // 13 AA for Mailbox 13 + Uint16 AA14:1; // 14 AA for Mailbox 14 + Uint16 AA15:1; // 15 AA for Mailbox 15 + Uint16 AA16:1; // 16 AA for Mailbox 16 + Uint16 AA17:1; // 17 AA for Mailbox 17 + Uint16 AA18:1; // 18 AA for Mailbox 18 + Uint16 AA19:1; // 19 AA for Mailbox 19 + Uint16 AA20:1; // 20 AA for Mailbox 20 + Uint16 AA21:1; // 21 AA for Mailbox 21 + Uint16 AA22:1; // 22 AA for Mailbox 22 + Uint16 AA23:1; // 23 AA for Mailbox 23 + Uint16 AA24:1; // 24 AA for Mailbox 24 + Uint16 AA25:1; // 25 AA for Mailbox 25 + Uint16 AA26:1; // 26 AA for Mailbox 26 + Uint16 AA27:1; // 27 AA for Mailbox 27 + Uint16 AA28:1; // 28 AA for Mailbox 28 + Uint16 AA29:1; // 29 AA for Mailbox 29 + Uint16 AA30:1; // 30 AA for Mailbox 30 + Uint16 AA31:1; // 31 AA for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANAA_REG { + Uint32 all; + struct CANAA_BITS bit; +}; + +/* eCAN Received Message Pending register (CANRMP) bit definitions */ +struct CANRMP_BITS { // bit description + Uint16 RMP0:1; // 0 RMP for Mailbox 0 + Uint16 RMP1:1; // 1 RMP for Mailbox 1 + Uint16 RMP2:1; // 2 RMP for Mailbox 2 + Uint16 RMP3:1; // 3 RMP for Mailbox 3 + Uint16 RMP4:1; // 4 RMP for Mailbox 4 + Uint16 RMP5:1; // 5 RMP for Mailbox 5 + Uint16 RMP6:1; // 6 RMP for Mailbox 6 + Uint16 RMP7:1; // 7 RMP for Mailbox 7 + Uint16 RMP8:1; // 8 RMP for Mailbox 8 + Uint16 RMP9:1; // 9 RMP for Mailbox 9 + Uint16 RMP10:1; // 10 RMP for Mailbox 10 + Uint16 RMP11:1; // 11 RMP for Mailbox 11 + Uint16 RMP12:1; // 12 RMP for Mailbox 12 + Uint16 RMP13:1; // 13 RMP for Mailbox 13 + Uint16 RMP14:1; // 14 RMP for Mailbox 14 + Uint16 RMP15:1; // 15 RMP for Mailbox 15 + Uint16 RMP16:1; // 16 RMP for Mailbox 16 + Uint16 RMP17:1; // 17 RMP for Mailbox 17 + Uint16 RMP18:1; // 18 RMP for Mailbox 18 + Uint16 RMP19:1; // 19 RMP for Mailbox 19 + Uint16 RMP20:1; // 20 RMP for Mailbox 20 + Uint16 RMP21:1; // 21 RMP for Mailbox 21 + Uint16 RMP22:1; // 22 RMP for Mailbox 22 + Uint16 RMP23:1; // 23 RMP for Mailbox 23 + Uint16 RMP24:1; // 24 RMP for Mailbox 24 + Uint16 RMP25:1; // 25 RMP for Mailbox 25 + Uint16 RMP26:1; // 26 RMP for Mailbox 26 + Uint16 RMP27:1; // 27 RMP for Mailbox 27 + Uint16 RMP28:1; // 28 RMP for Mailbox 28 + Uint16 RMP29:1; // 29 RMP for Mailbox 29 + Uint16 RMP30:1; // 30 RMP for Mailbox 30 + Uint16 RMP31:1; // 31 RMP for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANRMP_REG { + Uint32 all; + struct CANRMP_BITS bit; +}; + +/* eCAN Received Message Lost register (CANRML) bit definitions */ +struct CANRML_BITS { // bit description + Uint16 RML0:1; // 0 RML for Mailbox 0 + Uint16 RML1:1; // 1 RML for Mailbox 1 + Uint16 RML2:1; // 2 RML for Mailbox 2 + Uint16 RML3:1; // 3 RML for Mailbox 3 + Uint16 RML4:1; // 4 RML for Mailbox 4 + Uint16 RML5:1; // 5 RML for Mailbox 5 + Uint16 RML6:1; // 6 RML for Mailbox 6 + Uint16 RML7:1; // 7 RML for Mailbox 7 + Uint16 RML8:1; // 8 RML for Mailbox 8 + Uint16 RML9:1; // 9 RML for Mailbox 9 + Uint16 RML10:1; // 10 RML for Mailbox 10 + Uint16 RML11:1; // 11 RML for Mailbox 11 + Uint16 RML12:1; // 12 RML for Mailbox 12 + Uint16 RML13:1; // 13 RML for Mailbox 13 + Uint16 RML14:1; // 14 RML for Mailbox 14 + Uint16 RML15:1; // 15 RML for Mailbox 15 + Uint16 RML16:1; // 16 RML for Mailbox 16 + Uint16 RML17:1; // 17 RML for Mailbox 17 + Uint16 RML18:1; // 18 RML for Mailbox 18 + Uint16 RML19:1; // 19 RML for Mailbox 19 + Uint16 RML20:1; // 20 RML for Mailbox 20 + Uint16 RML21:1; // 21 RML for Mailbox 21 + Uint16 RML22:1; // 22 RML for Mailbox 22 + Uint16 RML23:1; // 23 RML for Mailbox 23 + Uint16 RML24:1; // 24 RML for Mailbox 24 + Uint16 RML25:1; // 25 RML for Mailbox 25 + Uint16 RML26:1; // 26 RML for Mailbox 26 + Uint16 RML27:1; // 27 RML for Mailbox 27 + Uint16 RML28:1; // 28 RML for Mailbox 28 + Uint16 RML29:1; // 29 RML for Mailbox 29 + Uint16 RML30:1; // 30 RML for Mailbox 30 + Uint16 RML31:1; // 31 RML for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANRML_REG { + Uint32 all; + struct CANRML_BITS bit; +}; + +/* eCAN Remote Frame Pending register (CANRFP) bit definitions */ +struct CANRFP_BITS { // bit description + Uint16 RFP0:1; // 0 RFP for Mailbox 0 + Uint16 RFP1:1; // 1 RFP for Mailbox 1 + Uint16 RFP2:1; // 2 RFP for Mailbox 2 + Uint16 RFP3:1; // 3 RFP for Mailbox 3 + Uint16 RFP4:1; // 4 RFP for Mailbox 4 + Uint16 RFP5:1; // 5 RFP for Mailbox 5 + Uint16 RFP6:1; // 6 RFP for Mailbox 6 + Uint16 RFP7:1; // 7 RFP for Mailbox 7 + Uint16 RFP8:1; // 8 RFP for Mailbox 8 + Uint16 RFP9:1; // 9 RFP for Mailbox 9 + Uint16 RFP10:1; // 10 RFP for Mailbox 10 + Uint16 RFP11:1; // 11 RFP for Mailbox 11 + Uint16 RFP12:1; // 12 RFP for Mailbox 12 + Uint16 RFP13:1; // 13 RFP for Mailbox 13 + Uint16 RFP14:1; // 14 RFP for Mailbox 14 + Uint16 RFP15:1; // 15 RFP for Mailbox 15 + Uint16 RFP16:1; // 16 RFP for Mailbox 16 + Uint16 RFP17:1; // 17 RFP for Mailbox 17 + Uint16 RFP18:1; // 18 RFP for Mailbox 18 + Uint16 RFP19:1; // 19 RFP for Mailbox 19 + Uint16 RFP20:1; // 20 RFP for Mailbox 20 + Uint16 RFP21:1; // 21 RFP for Mailbox 21 + Uint16 RFP22:1; // 22 RFP for Mailbox 22 + Uint16 RFP23:1; // 23 RFP for Mailbox 23 + Uint16 RFP24:1; // 24 RFP for Mailbox 24 + Uint16 RFP25:1; // 25 RFP for Mailbox 25 + Uint16 RFP26:1; // 26 RFP for Mailbox 26 + Uint16 RFP27:1; // 27 RFP for Mailbox 27 + Uint16 RFP28:1; // 28 RFP for Mailbox 28 + Uint16 RFP29:1; // 29 RFP for Mailbox 29 + Uint16 RFP30:1; // 30 RFP for Mailbox 30 + Uint16 RFP31:1; // 31 RFP for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANRFP_REG { + Uint32 all; + struct CANRFP_BITS bit; +}; + +/* eCAN Global Acceptance Mask register (CANGAM) bit definitions */ +struct CANGAM_BITS { // bits description + Uint16 GAM150:16; // 15:0 Global acceptance mask bits 0-15 + Uint16 GAM2816:13; // 28:16 Global acceptance mask bits 16-28 + Uint16 rsvd:2; // 30:29 reserved + Uint16 AMI:1; // 31 AMI bit +}; + +/* Allow access to the bit fields or entire register */ +union CANGAM_REG { + Uint32 all; + struct CANGAM_BITS bit; +}; + + +/* eCAN Master Control register (CANMC) bit definitions */ +struct CANMC_BITS { // bits description + Uint16 MBNR:5; // 4:0 MBX # for CDR bit + Uint16 SRES:1; // 5 Soft reset + Uint16 STM:1; // 6 Self-test mode + Uint16 ABO:1; // 7 Auto bus-on + Uint16 CDR:1; // 8 Change data request + Uint16 WUBA:1; // 9 Wake-up on bus activity + Uint16 DBO:1; // 10 Data-byte order + Uint16 PDR:1; // 11 Power-down mode request + Uint16 CCR:1; // 12 Change configuration request + Uint16 SCB:1; // 13 SCC compatibility bit + Uint16 TCC:1; // 14 TSC MSB clear bit + Uint16 MBCC:1; // 15 TSC clear bit thru mailbox 16 + Uint16 SUSP:1; // 16 SUSPEND free/soft bit + Uint16 rsvd:15; // 31:17 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANMC_REG { + Uint32 all; + struct CANMC_BITS bit; +}; + +/* eCAN Bit -timing configuration register (CANBTC) bit definitions */ +struct CANBTC_BITS { // bits description + Uint16 TSEG2REG:3; // 2:0 TSEG2 register value + Uint16 TSEG1REG:4; // 6:3 TSEG1 register value + Uint16 SAM:1; // 7 Sample-point setting + Uint16 SJWREG:2; // 9:8 Synchroniztion Jump Width register value + Uint16 rsvd1:6; // 15:10 reserved + Uint16 BRPREG:8; // 23:16 Baudrate prescaler register value + Uint16 rsvd2:8; // 31:24 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANBTC_REG { + Uint32 all; + struct CANBTC_BITS bit; +}; + +/* eCAN Error & Status register (CANES) bit definitions */ +struct CANES_BITS { // bits description + Uint16 TM:1; // 0 Transmit Mode + Uint16 RM:1; // 1 Receive Mode + Uint16 rsvd1:1; // 2 reserved + Uint16 PDA:1; // 3 Power-down acknowledge + Uint16 CCE:1; // 4 Change Configuration Enable + Uint16 SMA:1; // 5 Suspend Mode Acknowledge + Uint16 rsvd2:10; // 15:6 reserved + Uint16 EW:1; // 16 Warning status + Uint16 EP:1; // 17 Error Passive status + Uint16 BO:1; // 18 Bus-off status + Uint16 ACKE:1; // 19 Acknowledge error + Uint16 SE:1; // 20 Stuff error + Uint16 CRCE:1; // 21 CRC error + Uint16 SA1:1; // 22 Stuck at Dominant error + Uint16 BE:1; // 23 Bit error + Uint16 FE:1; // 24 Framing error + Uint16 rsvd3:7; // 31:25 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANES_REG { + Uint32 all; + struct CANES_BITS bit; +}; + + +/* eCAN Transmit Error Counter register (CANTEC) bit definitions */ +struct CANTEC_BITS { // bits description + Uint16 TEC:8; // 7:0 TEC + Uint16 rsvd1:8; // 15:8 reserved + Uint16 rsvd2:16; // 31:16 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANTEC_REG { + Uint32 all; + struct CANTEC_BITS bit; +}; + +/* eCAN Receive Error Counter register (CANREC) bit definitions */ +struct CANREC_BITS { // bits description + Uint16 REC:8; // 7:0 REC + Uint16 rsvd1:8; // 15:8 reserved + Uint16 rsvd2:16; // 31:16 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANREC_REG { + Uint32 all; + struct CANREC_BITS bit; +}; + +/* eCAN Global Interrupt Flag 0 (CANGIF0) bit definitions */ +struct CANGIF0_BITS { // bits description + Uint16 MIV0:5; // 4:0 Mailbox Interrupt Vector + Uint16 rsvd1:3; // 7:5 reserved + Uint16 WLIF0:1; // 8 Warning level interrupt flag + Uint16 EPIF0:1; // 9 Error-passive interrupt flag + Uint16 BOIF0:1; // 10 Bus-off interrupt flag + Uint16 RMLIF0:1; // 11 Received message lost interrupt flag + Uint16 WUIF0:1; // 12 Wakeup interrupt flag + Uint16 WDIF0:1; // 13 Write denied interrupt flag + Uint16 AAIF0:1; // 14 Abort Ack interrupt flag + Uint16 GMIF0:1; // 15 Global MBX interrupt flag + Uint16 TCOF0:1; // 16 TSC Overflow flag + Uint16 MTOF0:1; // 17 Mailbox Timeout flag + Uint16 rsvd2:14; // 31:18 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANGIF0_REG { + Uint32 all; + struct CANGIF0_BITS bit; +}; + +/* eCAN Global Interrupt Mask register (CANGIM) bit definitions */ +struct CANGIM_BITS { // bits description + Uint16 I0EN:1; // 0 Interrupt 0 enable + Uint16 I1EN:1; // 1 Interrupt 1 enable + Uint16 GIL:1; // 2 Global Interrupt Level + Uint16 rsvd1:5; // 7:3 reserved + Uint16 WLIM:1; // 8 Warning level interrupt mask + Uint16 EPIM:1; // 9 Error-passive interrupt mask + Uint16 BOIM:1; // 10 Bus-off interrupt mask + Uint16 RMLIM:1; // 11 Received message lost interrupt mask + Uint16 WUIM:1; // 12 Wakeup interrupt mask + Uint16 WDIM:1; // 13 Write denied interrupt mask + Uint16 AAIM:1; // 14 Abort Ack interrupt mask + Uint16 rsvd2:1; // 15 reserved + Uint16 TCOM:1; // 16 TSC overflow interrupt mask + Uint16 MTOM:1; // 17 MBX Timeout interrupt mask + Uint16 rsvd3:14; // 31:18 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANGIM_REG { + Uint32 all; + struct CANGIM_BITS bit; +}; + + +/* eCAN Global Interrupt Flag 1 (eCANGIF1) bit definitions */ +struct CANGIF1_BITS { // bits description + Uint16 MIV1:5; // 4:0 Mailbox Interrupt Vector + Uint16 rsvd1:3; // 7:5 reserved + Uint16 WLIF1:1; // 8 Warning level interrupt flag + Uint16 EPIF1:1; // 9 Error-passive interrupt flag + Uint16 BOIF1:1; // 10 Bus-off interrupt flag + Uint16 RMLIF1:1; // 11 Received message lost interrupt flag + Uint16 WUIF1:1; // 12 Wakeup interrupt flag + Uint16 WDIF1:1; // 13 Write denied interrupt flag + Uint16 AAIF1:1; // 14 Abort Ack interrupt flag + Uint16 GMIF1:1; // 15 Global MBX interrupt flag + Uint16 TCOF1:1; // 16 TSC Overflow flag + Uint16 MTOF1:1; // 17 Mailbox Timeout flag + Uint16 rsvd2:14; // 31:18 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANGIF1_REG { + Uint32 all; + struct CANGIF1_BITS bit; +}; + + +/* eCAN Mailbox Interrupt Mask register (CANMIM) bit definitions */ +struct CANMIM_BITS { // bit description + Uint16 MIM0:1; // 0 MIM for Mailbox 0 + Uint16 MIM1:1; // 1 MIM for Mailbox 1 + Uint16 MIM2:1; // 2 MIM for Mailbox 2 + Uint16 MIM3:1; // 3 MIM for Mailbox 3 + Uint16 MIM4:1; // 4 MIM for Mailbox 4 + Uint16 MIM5:1; // 5 MIM for Mailbox 5 + Uint16 MIM6:1; // 6 MIM for Mailbox 6 + Uint16 MIM7:1; // 7 MIM for Mailbox 7 + Uint16 MIM8:1; // 8 MIM for Mailbox 8 + Uint16 MIM9:1; // 9 MIM for Mailbox 9 + Uint16 MIM10:1; // 10 MIM for Mailbox 10 + Uint16 MIM11:1; // 11 MIM for Mailbox 11 + Uint16 MIM12:1; // 12 MIM for Mailbox 12 + Uint16 MIM13:1; // 13 MIM for Mailbox 13 + Uint16 MIM14:1; // 14 MIM for Mailbox 14 + Uint16 MIM15:1; // 15 MIM for Mailbox 15 + Uint16 MIM16:1; // 16 MIM for Mailbox 16 + Uint16 MIM17:1; // 17 MIM for Mailbox 17 + Uint16 MIM18:1; // 18 MIM for Mailbox 18 + Uint16 MIM19:1; // 19 MIM for Mailbox 19 + Uint16 MIM20:1; // 20 MIM for Mailbox 20 + Uint16 MIM21:1; // 21 MIM for Mailbox 21 + Uint16 MIM22:1; // 22 MIM for Mailbox 22 + Uint16 MIM23:1; // 23 MIM for Mailbox 23 + Uint16 MIM24:1; // 24 MIM for Mailbox 24 + Uint16 MIM25:1; // 25 MIM for Mailbox 25 + Uint16 MIM26:1; // 26 MIM for Mailbox 26 + Uint16 MIM27:1; // 27 MIM for Mailbox 27 + Uint16 MIM28:1; // 28 MIM for Mailbox 28 + Uint16 MIM29:1; // 29 MIM for Mailbox 29 + Uint16 MIM30:1; // 30 MIM for Mailbox 30 + Uint16 MIM31:1; // 31 MIM for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANMIM_REG { + Uint32 all; + struct CANMIM_BITS bit; +}; + +/* eCAN Mailbox Interrupt Level register (CANMIL) bit definitions */ +struct CANMIL_BITS { // bit description + Uint16 MIL0:1; // 0 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL1:1; // 1 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL2:1; // 2 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL3:1; // 3 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL4:1; // 4 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL5:1; // 5 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL6:1; // 6 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL7:1; // 7 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL8:1; // 8 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL9:1; // 9 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL10:1; // 10 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL11:1; // 11 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL12:1; // 12 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL13:1; // 13 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL14:1; // 14 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL15:1; // 15 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL16:1; // 16 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL17:1; // 17 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL18:1; // 18 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL19:1; // 19 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL20:1; // 20 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL21:1; // 21 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL22:1; // 22 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL23:1; // 23 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL24:1; // 24 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL25:1; // 25 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL26:1; // 26 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL27:1; // 27 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL28:1; // 28 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL29:1; // 29 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL30:1; // 30 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL31:1; // 31 0 -> Int 9.5 1 -> Int 9.6 + +}; + +/* Allow access to the bit fields or entire register */ +union CANMIL_REG { + Uint32 all; + struct CANMIL_BITS bit; +}; + + +/* eCAN Overwrite Protection Control register (CANOPC) bit definitions */ +struct CANOPC_BITS { // bit description + Uint16 OPC0:1; // 0 OPC for Mailbox 0 + Uint16 OPC1:1; // 1 OPC for Mailbox 1 + Uint16 OPC2:1; // 2 OPC for Mailbox 2 + Uint16 OPC3:1; // 3 OPC for Mailbox 3 + Uint16 OPC4:1; // 4 OPC for Mailbox 4 + Uint16 OPC5:1; // 5 OPC for Mailbox 5 + Uint16 OPC6:1; // 6 OPC for Mailbox 6 + Uint16 OPC7:1; // 7 OPC for Mailbox 7 + Uint16 OPC8:1; // 8 OPC for Mailbox 8 + Uint16 OPC9:1; // 9 OPC for Mailbox 9 + Uint16 OPC10:1; // 10 OPC for Mailbox 10 + Uint16 OPC11:1; // 11 OPC for Mailbox 11 + Uint16 OPC12:1; // 12 OPC for Mailbox 12 + Uint16 OPC13:1; // 13 OPC for Mailbox 13 + Uint16 OPC14:1; // 14 OPC for Mailbox 14 + Uint16 OPC15:1; // 15 OPC for Mailbox 15 + Uint16 OPC16:1; // 16 OPC for Mailbox 16 + Uint16 OPC17:1; // 17 OPC for Mailbox 17 + Uint16 OPC18:1; // 18 OPC for Mailbox 18 + Uint16 OPC19:1; // 19 OPC for Mailbox 19 + Uint16 OPC20:1; // 20 OPC for Mailbox 20 + Uint16 OPC21:1; // 21 OPC for Mailbox 21 + Uint16 OPC22:1; // 22 OPC for Mailbox 22 + Uint16 OPC23:1; // 23 OPC for Mailbox 23 + Uint16 OPC24:1; // 24 OPC for Mailbox 24 + Uint16 OPC25:1; // 25 OPC for Mailbox 25 + Uint16 OPC26:1; // 26 OPC for Mailbox 26 + Uint16 OPC27:1; // 27 OPC for Mailbox 27 + Uint16 OPC28:1; // 28 OPC for Mailbox 28 + Uint16 OPC29:1; // 29 OPC for Mailbox 29 + Uint16 OPC30:1; // 30 OPC for Mailbox 30 + Uint16 OPC31:1; // 31 OPC for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANOPC_REG { + Uint32 all; + struct CANOPC_BITS bit; +}; + + +/* eCAN TX I/O Control Register (CANTIOC) bit definitions */ +struct CANTIOC_BITS { // bits description + Uint16 rsvd1:3; // 2:0 reserved + Uint16 TXFUNC:1; // 3 TXFUNC + Uint16 rsvd2:12; // 15:4 reserved + Uint16 rsvd3:16; // 31:16 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANTIOC_REG { + Uint32 all; + struct CANTIOC_BITS bit; +}; + +/* eCAN RX I/O Control Register (CANRIOC) bit definitions */ +struct CANRIOC_BITS { // bits description + Uint16 rsvd1:3; // 2:0 reserved + Uint16 RXFUNC:1; // 3 RXFUNC + Uint16 rsvd2:12; // 15:4 reserved + Uint16 rsvd3:16; // 31:16 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANRIOC_REG { + Uint32 all; + struct CANRIOC_BITS bit; +}; + + +/* eCAN Time-out Control register (CANTOC) bit definitions */ +struct CANTOC_BITS { // bit description + Uint16 TOC0:1; // 0 TOC for Mailbox 0 + Uint16 TOC1:1; // 1 TOC for Mailbox 1 + Uint16 TOC2:1; // 2 TOC for Mailbox 2 + Uint16 TOC3:1; // 3 TOC for Mailbox 3 + Uint16 TOC4:1; // 4 TOC for Mailbox 4 + Uint16 TOC5:1; // 5 TOC for Mailbox 5 + Uint16 TOC6:1; // 6 TOC for Mailbox 6 + Uint16 TOC7:1; // 7 TOC for Mailbox 7 + Uint16 TOC8:1; // 8 TOC for Mailbox 8 + Uint16 TOC9:1; // 9 TOC for Mailbox 9 + Uint16 TOC10:1; // 10 TOC for Mailbox 10 + Uint16 TOC11:1; // 11 TOC for Mailbox 11 + Uint16 TOC12:1; // 12 TOC for Mailbox 12 + Uint16 TOC13:1; // 13 TOC for Mailbox 13 + Uint16 TOC14:1; // 14 TOC for Mailbox 14 + Uint16 TOC15:1; // 15 TOC for Mailbox 15 + Uint16 TOC16:1; // 16 TOC for Mailbox 16 + Uint16 TOC17:1; // 17 TOC for Mailbox 17 + Uint16 TOC18:1; // 18 TOC for Mailbox 18 + Uint16 TOC19:1; // 19 TOC for Mailbox 19 + Uint16 TOC20:1; // 20 TOC for Mailbox 20 + Uint16 TOC21:1; // 21 TOC for Mailbox 21 + Uint16 TOC22:1; // 22 TOC for Mailbox 22 + Uint16 TOC23:1; // 23 TOC for Mailbox 23 + Uint16 TOC24:1; // 24 TOC for Mailbox 24 + Uint16 TOC25:1; // 25 TOC for Mailbox 25 + Uint16 TOC26:1; // 26 TOC for Mailbox 26 + Uint16 TOC27:1; // 27 TOC for Mailbox 27 + Uint16 TOC28:1; // 28 TOC for Mailbox 28 + Uint16 TOC29:1; // 29 TOC for Mailbox 29 + Uint16 TOC30:1; // 30 TOC for Mailbox 30 + Uint16 TOC31:1; // 31 TOC for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANTOC_REG { + Uint32 all; + struct CANTOC_BITS bit; +}; + + +/* eCAN Time-out Status register (CANTOS) bit definitions */ +struct CANTOS_BITS { // bit description + Uint16 TOS0:1; // 0 TOS for Mailbox 0 + Uint16 TOS1:1; // 1 TOS for Mailbox 1 + Uint16 TOS2:1; // 2 TOS for Mailbox 2 + Uint16 TOS3:1; // 3 TOS for Mailbox 3 + Uint16 TOS4:1; // 4 TOS for Mailbox 4 + Uint16 TOS5:1; // 5 TOS for Mailbox 5 + Uint16 TOS6:1; // 6 TOS for Mailbox 6 + Uint16 TOS7:1; // 7 TOS for Mailbox 7 + Uint16 TOS8:1; // 8 TOS for Mailbox 8 + Uint16 TOS9:1; // 9 TOS for Mailbox 9 + Uint16 TOS10:1; // 10 TOS for Mailbox 10 + Uint16 TOS11:1; // 11 TOS for Mailbox 11 + Uint16 TOS12:1; // 12 TOS for Mailbox 12 + Uint16 TOS13:1; // 13 TOS for Mailbox 13 + Uint16 TOS14:1; // 14 TOS for Mailbox 14 + Uint16 TOS15:1; // 15 TOS for Mailbox 15 + Uint16 TOS16:1; // 16 TOS for Mailbox 16 + Uint16 TOS17:1; // 17 TOS for Mailbox 17 + Uint16 TOS18:1; // 18 TOS for Mailbox 18 + Uint16 TOS19:1; // 19 TOS for Mailbox 19 + Uint16 TOS20:1; // 20 TOS for Mailbox 20 + Uint16 TOS21:1; // 21 TOS for Mailbox 21 + Uint16 TOS22:1; // 22 TOS for Mailbox 22 + Uint16 TOS23:1; // 23 TOS for Mailbox 23 + Uint16 TOS24:1; // 24 TOS for Mailbox 24 + Uint16 TOS25:1; // 25 TOS for Mailbox 25 + Uint16 TOS26:1; // 26 TOS for Mailbox 26 + Uint16 TOS27:1; // 27 TOS for Mailbox 27 + Uint16 TOS28:1; // 28 TOS for Mailbox 28 + Uint16 TOS29:1; // 29 TOS for Mailbox 29 + Uint16 TOS30:1; // 30 TOS for Mailbox 30 + Uint16 TOS31:1; // 31 TOS for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANTOS_REG { + Uint32 all; + struct CANTOS_BITS bit; +}; + +/**************************************/ +/* eCAN Control & Status register file */ +/**************************************/ + +struct ECAN_REGS { + union CANME_REG CANME; // Mailbox Enable + union CANMD_REG CANMD; // Mailbox Direction + union CANTRS_REG CANTRS; // Transmit Request Set + union CANTRR_REG CANTRR; // Transmit Request Reset + union CANTA_REG CANTA; // Transmit Acknowledge + union CANAA_REG CANAA; // Abort Acknowledge + union CANRMP_REG CANRMP; // Received Message Pending + union CANRML_REG CANRML; // Received Message Lost + union CANRFP_REG CANRFP; // Remote Frame Pending + union CANGAM_REG CANGAM; // Global Acceptance Mask + union CANMC_REG CANMC; // Master Control + union CANBTC_REG CANBTC; // Bit Timing + union CANES_REG CANES; // Error Status + union CANTEC_REG CANTEC; // Transmit Error Counter + union CANREC_REG CANREC; // Receive Error Counter + union CANGIF0_REG CANGIF0; // Global Interrupt Flag 0 + union CANGIM_REG CANGIM; // Global Interrupt Mask 0 + union CANGIF1_REG CANGIF1; // Global Interrupt Flag 1 + union CANMIM_REG CANMIM; // Mailbox Interrupt Mask + union CANMIL_REG CANMIL; // Mailbox Interrupt Level + union CANOPC_REG CANOPC; // Overwrite Protection Control + union CANTIOC_REG CANTIOC; // TX I/O Control + union CANRIOC_REG CANRIOC; // RX I/O Control + Uint32 CANTSC; // Time-stamp counter + union CANTOC_REG CANTOC; // Time-out Control + union CANTOS_REG CANTOS; // Time-out Status + +}; + +/* --------------------------------------------------- */ +/* eCAN Mailbox Registers */ +/* ----------------------------------------------------*/ + +/* eCAN Message ID (MSGID) bit definitions */ +struct CANMSGID_BITS { // bits description + Uint16 EXTMSGID_L:16; // 0:15 + Uint16 EXTMSGID_H:2; // 16:17 + Uint16 STDMSGID:11; // 18:28 + Uint16 AAM:1; // 29 + Uint16 AME:1; // 30 + Uint16 IDE:1; // 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANMSGID_REG { + Uint32 all; + struct CANMSGID_BITS bit; +}; + +/* eCAN Message Control Field (MSGCTRL) bit definitions */ +struct CANMSGCTRL_BITS { // bits description + Uint16 DLC:4; // 0:3 + Uint16 RTR:1; // 4 + Uint16 rsvd1:3; // 7:5 reserved + Uint16 TPL:5; // 12:8 + Uint16 rsvd2:3; // 15:13 reserved + Uint16 rsvd3:16; // 31:16 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANMSGCTRL_REG { + Uint32 all; + struct CANMSGCTRL_BITS bit; +}; + +/* eCAN Message Data Register low (MDR_L) word definitions */ +struct CANMDL_WORDS { // bits description + Uint16 LOW_WORD:16; // 0:15 + Uint16 HI_WORD:16; // 31:16 +}; + +/* eCAN Message Data Register low (MDR_L) byte definitions */ +struct CANMDL_BYTES { // bits description + Uint16 BYTE3:8; // 31:24 + Uint16 BYTE2:8; // 23:16 + Uint16 BYTE1:8; // 15:8 + Uint16 BYTE0:8; // 7:0 +}; + + +/* Allow access to the bit fields or entire register */ + +union CANMDL_REG { + Uint32 all; + struct CANMDL_WORDS word; + struct CANMDL_BYTES byte; +}; + + + +/* eCAN Message Data Register high (MDR_H) word definitions */ +struct CANMDH_WORDS { // bits description + Uint16 LOW_WORD:16; // 0:15 + Uint16 HI_WORD:16; // 31:16 +}; + +/* eCAN Message Data Register low (MDR_H) byte definitions */ +struct CANMDH_BYTES { // bits description + Uint16 BYTE7:8; // 63:56 + Uint16 BYTE6:8; // 55:48 + Uint16 BYTE5:8; // 47:40 + Uint16 BYTE4:8; // 39:32 +}; + +/* Allow access to the bit fields or entire register */ +union CANMDH_REG { + Uint32 all; + struct CANMDH_WORDS word; + struct CANMDH_BYTES byte; +}; + + +struct MBOX { + union CANMSGID_REG MSGID; + union CANMSGCTRL_REG MSGCTRL; + union CANMDL_REG MDL; + union CANMDH_REG MDH; +}; + +/**************************************/ +/* eCAN Mailboxes */ +/**************************************/ + +struct ECAN_MBOXES { + struct MBOX MBOX0; + struct MBOX MBOX1; + struct MBOX MBOX2; + struct MBOX MBOX3; + struct MBOX MBOX4; + struct MBOX MBOX5; + struct MBOX MBOX6; + struct MBOX MBOX7; + struct MBOX MBOX8; + struct MBOX MBOX9; + struct MBOX MBOX10; + struct MBOX MBOX11; + struct MBOX MBOX12; + struct MBOX MBOX13; + struct MBOX MBOX14; + struct MBOX MBOX15; + struct MBOX MBOX16; + struct MBOX MBOX17; + struct MBOX MBOX18; + struct MBOX MBOX19; + struct MBOX MBOX20; + struct MBOX MBOX21; + struct MBOX MBOX22; + struct MBOX MBOX23; + struct MBOX MBOX24; + struct MBOX MBOX25; + struct MBOX MBOX26; + struct MBOX MBOX27; + struct MBOX MBOX28; + struct MBOX MBOX29; + struct MBOX MBOX30; + struct MBOX MBOX31; +}; + +/* eCAN Local Acceptance Mask (LAM) bit definitions */ +struct CANLAM_BITS { // bits description + Uint16 LAM_L:16; // 0:15 + Uint16 LAM_H:13; // 16:28 + Uint16 rsvd1:2; // 29:30 reserved + Uint16 LAMI:1; // 31 +}; + +/* Allow access to the bit fields or entire register */ +union CANLAM_REG { + Uint32 all; + struct CANLAM_BITS bit; +}; + + +/**************************************/ +/* eCAN Local Acceptance Masks */ +/**************************************/ + +/* eCAN LAM File */ +struct LAM_REGS { + union CANLAM_REG LAM0; + union CANLAM_REG LAM1; + union CANLAM_REG LAM2; + union CANLAM_REG LAM3; + union CANLAM_REG LAM4; + union CANLAM_REG LAM5; + union CANLAM_REG LAM6; + union CANLAM_REG LAM7; + union CANLAM_REG LAM8; + union CANLAM_REG LAM9; + union CANLAM_REG LAM10; + union CANLAM_REG LAM11; + union CANLAM_REG LAM12; + union CANLAM_REG LAM13; + union CANLAM_REG LAM14; + union CANLAM_REG LAM15; + union CANLAM_REG LAM16; + union CANLAM_REG LAM17; + union CANLAM_REG LAM18; + union CANLAM_REG LAM19; + union CANLAM_REG LAM20; + union CANLAM_REG LAM21; + union CANLAM_REG LAM22; + union CANLAM_REG LAM23; + union CANLAM_REG LAM24; + union CANLAM_REG LAM25; + union CANLAM_REG LAM26; + union CANLAM_REG LAM27; + union CANLAM_REG LAM28; + union CANLAM_REG LAM29; + union CANLAM_REG LAM30; + union CANLAM_REG LAM31; +}; + +/* Mailbox MOTS File */ + +struct MOTS_REGS { + Uint32 MOTS0; + Uint32 MOTS1; + Uint32 MOTS2; + Uint32 MOTS3; + Uint32 MOTS4; + Uint32 MOTS5; + Uint32 MOTS6; + Uint32 MOTS7; + Uint32 MOTS8; + Uint32 MOTS9; + Uint32 MOTS10; + Uint32 MOTS11; + Uint32 MOTS12; + Uint32 MOTS13; + Uint32 MOTS14; + Uint32 MOTS15; + Uint32 MOTS16; + Uint32 MOTS17; + Uint32 MOTS18; + Uint32 MOTS19; + Uint32 MOTS20; + Uint32 MOTS21; + Uint32 MOTS22; + Uint32 MOTS23; + Uint32 MOTS24; + Uint32 MOTS25; + Uint32 MOTS26; + Uint32 MOTS27; + Uint32 MOTS28; + Uint32 MOTS29; + Uint32 MOTS30; + Uint32 MOTS31; +}; + +/* Mailbox MOTO File */ + +struct MOTO_REGS { + Uint32 MOTO0; + Uint32 MOTO1; + Uint32 MOTO2; + Uint32 MOTO3; + Uint32 MOTO4; + Uint32 MOTO5; + Uint32 MOTO6; + Uint32 MOTO7; + Uint32 MOTO8; + Uint32 MOTO9; + Uint32 MOTO10; + Uint32 MOTO11; + Uint32 MOTO12; + Uint32 MOTO13; + Uint32 MOTO14; + Uint32 MOTO15; + Uint32 MOTO16; + Uint32 MOTO17; + Uint32 MOTO18; + Uint32 MOTO19; + Uint32 MOTO20; + Uint32 MOTO21; + Uint32 MOTO22; + Uint32 MOTO23; + Uint32 MOTO24; + Uint32 MOTO25; + Uint32 MOTO26; + Uint32 MOTO27; + Uint32 MOTO28; + Uint32 MOTO29; + Uint32 MOTO30; + Uint32 MOTO31; +}; + + +//--------------------------------------------------------------------------- +// eCAN External References & Function Declarations: +// +extern struct ECAN_REGS ECanaRegs; +extern struct ECAN_MBOXES ECanaMboxes; +extern struct LAM_REGS ECanaLAMRegs; +extern struct MOTO_REGS ECanaMOTORegs; +extern struct MOTS_REGS ECanaMOTSRegs; + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_ECAN.H definition + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_Ev.h b/Inu/main_matlab/device_support/include/DSP281x_Ev.h new file mode 100644 index 0000000..3447af0 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_Ev.h @@ -0,0 +1,655 @@ +// TI File $Revision: /main/4 $ +// Checkin $Date: June 22, 2007 09:30:33 $ +//########################################################################### +// +// FILE: DSP281x_Ev.h +// +// TITLE: DSP281x Device Event Manager Register Definitions. +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_EV_H +#define DSP281x_EV_H + + +#ifdef __cplusplus +extern "C" { +#endif + +//#include "DSP281x_Device.h" +/* --------------------------------------------------- */ +/* F2810/12 Event Manager (EV) GP Timer Registers */ +/* */ +/* ----------------------------------------------------*/ + +/* Overall Timer Control Register */ + +struct GPTCONA_BITS { + Uint16 T1PIN:2; // 1:0 Polarity of GP timer 1 compare + Uint16 T2PIN:2; // 3:2 Polarity of GP timer 2 compare + Uint16 T1CMPOE:1; // 4 Timer1 compare output + Uint16 T2CMPOE:1; // 5 Timer2 compare output + Uint16 TCMPOE:1; // 6 Compare output enable + Uint16 T1TOADC:2; // 8:7 Start ADC with timer 1 event + Uint16 T2TOADC:2; // 10:9 Start ADC with timer 2 event + Uint16 T1CTRIPE:1; // 11 Enable Timer 1 compare trip + Uint16 T2CTRIPE:1; // 12 Enable Timer 2 compare trip + Uint16 T1STAT:1; // 13 GP Timer 1 status (read only) + Uint16 T2STAT:1; // 14 GP Timer 2 status (read only) + Uint16 rsvd:1; // 15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union GPTCONA_REG { + Uint16 all; + struct GPTCONA_BITS bit; +}; + +struct GPTCONB_BITS { + Uint16 T3PIN:2; // 1:0 Polarity of GP timer 3 compare + Uint16 T4PIN:2; // 3:2 Polarity of GP timer 4 compare + Uint16 T3CMPOE:1; // 4 Timer3 compare output + Uint16 T4CMPOE:1; // 5 Timer4 compare output + Uint16 TCMPOE:1; // 6 Compare output enable + Uint16 T3TOADC:2; // 8:7 Start ADC with timer 3 event + Uint16 T4TOADC:2; // 10:9 Start ADC with timer 4 event + Uint16 T3CTRIPE:1; // 11 Timer 3 trip enable + Uint16 T4CTRIPE:1; // 12 Timer 4 trip enable + Uint16 T3STAT:1; // 13 GP Timer 3 status (read only) + Uint16 T4STAT:1; // 14 GP Timer 4 status (read only) + Uint16 rsvd2:1; // 15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union GPTCONB_REG { + Uint16 all; + struct GPTCONB_BITS bit; +}; + +/* Timer 1 Control Register bit defintions */ +struct T1CON_BITS { + Uint16 rsvd1:1; // 0 reserved + Uint16 TECMPR:1; // 1 Timer compare enable + Uint16 TCLD10:2; // 3:2 Timer copare register reload + Uint16 TCLKS10:2; // 5:4 Clock source select + Uint16 TENABLE:1; // 6 Timer enable + Uint16 rsvd2:1; // 7 reserved + Uint16 TPS:3; // 10:8 Input clock prescaler + Uint16 TMODE:2; // 12:11 Count mode selection + Uint16 rsvd:1; // 13 reserved + Uint16 SOFT:1; // 14 Soft emulation control + Uint16 FREE:1; // 15 Free emulation control +}; + +/* Allow access to the bit fields or entire register */ +union T1CON_REG { + Uint16 all; + struct T1CON_BITS bit; +}; + + +/* Timer 2 Control Register bit defintions */ +struct T2CON_BITS { + Uint16 SET1PR:1; // 0 Period register select + Uint16 TECMPR:1; // 1 Timer compare enable + Uint16 TCLD10:2; // 3:2 Timer copare register reload + Uint16 TCLKS10:2; // 5:4 Clock source select + Uint16 TENABLE:1; // 6 Timer enable + Uint16 T2SWT1:1; // 7 Start GP timer 2 with GP timer 1's enable + Uint16 TPS:3; // 10:8 Input clock prescaler + Uint16 TMODE:2; // 12:11 Count mode selection + Uint16 rsvd:1; // 13 reserved + Uint16 SOFT:1; // 14 Soft emulation control + Uint16 FREE:1; // 15 Free emulation control +}; + +/* Allow access to the bit fields or entire register */ +union T2CON_REG { + Uint16 all; + struct T2CON_BITS bit; +}; + +/* Timer 3 Control Register bit defintions */ +struct T3CON_BITS { + Uint16 rsvd1:1; // 0 reserved + Uint16 TECMPR:1; // 1 Timer compare enable + Uint16 TCLD10:2; // 3:2 Timer copare register reload + Uint16 TCLKS10:2; // 5:4 Clock source select + Uint16 TENABLE:1; // 6 Timer enable + Uint16 rsvd2:1; // 7 reserved + Uint16 TPS:3; // 10:8 Input clock prescaler + Uint16 TMODE:2; // 12:11 Count mode selection + Uint16 rsvd:1; // 13 reserved + Uint16 SOFT:1; // 14 Soft emulation control + Uint16 FREE:1; // 15 Free emulation control +}; + +/* Allow access to the bit fields or entire register */ +union T3CON_REG { + Uint16 all; + struct T3CON_BITS bit; +}; + +/* Timer 4 Control Register bit defintions */ +struct T4CON_BITS { + Uint16 SET3PR:1; // 0 Period register select + Uint16 TECMPR:1; // 1 Timer compare enable + Uint16 TCLD10:2; // 3:2 Timer copare register reload + Uint16 TCLKS10:2; // 5:4 Clock source select + Uint16 TENABLE:1; // 6 Timer enable + Uint16 T4SWT3:1; // 7 Start GP timer 2 with GP timer 1's enable + Uint16 TPS:3; // 10:8 Input clock prescaler + Uint16 TMODE:2; // 12:11 Count mode selection + Uint16 rsvd:1; // 13 reserved + Uint16 SOFT:1; // 14 Soft emulation control + Uint16 FREE:1; // 15 Free emulation control +}; + +/* Allow access to the bit fields or entire register */ +union T4CON_REG { + Uint16 all; + struct T4CON_BITS bit; +}; + + +struct EXTCONA_BITS { + Uint16 INDCOE:1; // 0 Independant compare output + Uint16 QEPIQUAL:1; // 1 QEP/CAP3 Index Qual Mode + Uint16 QEPIE:1; // 2 QEP index enable + Uint16 EVSOCE:1; // 3 EvA start of conversion output enable + Uint16 rsvd:12; // 15:4 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EXTCONA_REG { + Uint16 all; + struct EXTCONA_BITS bit; +}; + + +struct EXTCONB_BITS { + Uint16 INDCOE:1; // 0 Independant compare output + Uint16 QEPIQUAL:1; // 1 QEP/CAP3 Index Qual Mode + Uint16 QEPIE:1; // 2 QEP index enable + Uint16 EVSOCE:1; // 3 EvB start of conversion output enable + Uint16 rsvd:12; // 15:4 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EXTCONB_REG { + Uint16 all; + struct EXTCONA_BITS bit; +}; + + + +/* Compare Control Register */ +struct COMCONA_BITS { + Uint16 C1TRIPE:1; // 0 C1TRIP enable + Uint16 C2TRIPE:1; // 1 C2TRIP enable + Uint16 C3TRIPE:1; // 2 C3TRIP eanble + Uint16 rsvd:2; // 4:3 reserved + Uint16 FCMP1OE:1; // 5 Full compare 1 output enable + Uint16 FCMP2OE:1; // 6 Full compare 2 output enable + Uint16 FCMP3OE:1; // 7 Full compare 3 output enable + Uint16 PDPINTASTATUS:1;// 8 Current status of the PDPINTA pin + Uint16 FCOMPOE:1; // 9 Compare output enable + Uint16 ACTRLD:2; // 11:10 Action control register reload + Uint16 SVENABLE:1; // 12 Space vector PWM Mode enable + Uint16 CLD:2; // 14:13 Compare register reload condition + Uint16 CENABLE:1; // 15 Compare enable +}; + +/* Allow access to the bit fields or entire register */ +union COMCONA_REG { + Uint16 all; + struct COMCONA_BITS bit; +}; + +struct COMCONB_BITS { + Uint16 C4TRIPE:1; // 0 C4TRIP enable + Uint16 C5TRIPE:1; // 1 C5TRIP enable + Uint16 C6TRIPE:1; // 2 C6TRIP eanble + Uint16 rsvd:2; // 4:3 reserved + Uint16 FCMP4OE:1; // 5 Full compare 4 output enable + Uint16 FCMP5OE:1; // 6 Full compare 5 output enable + Uint16 FCMP6OE:1; // 7 Full compare 6 output enable + Uint16 PDPINTBSTATUS:1;// 8 Current status of the PDPINTB pin + Uint16 FCOMPOE:1; // 9 Compare output enable + Uint16 ACTRLD:2; // 11:10 Action control register reload + Uint16 SVENABLE:1; // 12 Space vector PWM Mode enable + Uint16 CLD:2; // 14:13 Compare register reload condition + Uint16 CENABLE:1; // 15 Compare enable +}; + +/* Allow access to the bit fields or entire register */ +union COMCONB_REG { + Uint16 all; + struct COMCONB_BITS bit; +}; + +/* Compare Action Control Register bit definitions */ + +struct ACTRA_BITS { + Uint16 CMP1ACT:2; // 1:0 Action on compare output pin 1 CMP1 + Uint16 CMP2ACT:2; // 3:2 Action on compare output pin 2 CMP2 + Uint16 CMP3ACT:2; // 5:4 Action on compare output pin 3 CMP3 + Uint16 CMP4ACT:2; // 7:6 Action on compare output pin 4 CMP4 + Uint16 CMP5ACT:2; // 9:8 Action on compare output pin 5 CMP5 + Uint16 CMP6ACT:2; // 11:10 Action on compare output pin 6 CMP6 + Uint16 D:3; // 14:12 Basic vector bits + Uint16 SVRDIR:1; // 15 Space vecor PWM rotation dir +}; + +/* Allow access to the bit fields or entire register */ +union ACTRA_REG { + Uint16 all; + struct ACTRA_BITS bit; +}; + +struct ACTRB_BITS { + Uint16 CMP7ACT:2; // 1:0 Action on compare output pin 7 CMP7 + Uint16 CMP8ACT:2; // 3:2 Action on compare output pin 8 CMP8 + Uint16 CMP9ACT:2; // 5:4 Action on compare output pin 9 CMP9 + Uint16 CMP10ACT:2; // 7:6 Action on compare output pin 10 CMP10 + Uint16 CMP11ACT:2; // 9:8 Action on compare output pin 11 CMP11 + Uint16 CMP12ACT:2; // 11:10 Action on compare output pin 12 CMP12 + Uint16 D:3; // 14:12 Basic vector bits + Uint16 SVRDIR:1; // 15 Space vecor PWM rotation dir +}; + +/* Allow access to the bit fields or entire register */ +union ACTRB_REG { + Uint16 all; + struct ACTRB_BITS bit; +}; + +/* Dead-Band Timer Control register bit definitions */ +struct DBTCON_BITS { + Uint16 rsvd1:2; // 1:0 reserved + Uint16 DBTPS:3; // 4:2 Dead-Band timer prescaler + Uint16 EDBT1:1; // 5 Dead-Band timer 1 enable + Uint16 EDBT2:1; // 6 Dead-Band timer 2 enable + Uint16 EDBT3:1; // 7 Dead-Band timer 3 enable + Uint16 DBT:4; // 11:8 Dead-Band timer period + Uint16 rsvd2:4; // 15:12 reserved +}; + +/* Allow access to the bit fields or entire register */ +union DBTCON_REG { + Uint16 all; + struct DBTCON_BITS bit; +}; + + +/* Capture Control register bit definitions */ +struct CAPCONA_BITS { + Uint16 rsvd1:2; // 1:0 reserved + Uint16 CAP3EDGE:2; // 3:2 Edge Detection for Unit 3 + Uint16 CAP2EDGE:2; // 5:4 Edge Detection for Unit 2 + Uint16 CAP1EDGE:2; // 7:6 Edge Detection for Unit 1 + Uint16 CAP3TOADC:1; // 8 Unit 3 starts the ADC + Uint16 CAP12TSEL:1; // 9 GP Timer selection for Units 1 and 2 + Uint16 CAP3TSEL:1; // 10 GP Timer selection for Unit 3 + Uint16 rsvd2:1; // 11 reserved + Uint16 CAP3EN:1; // 12 Capture Unit 3 enable + Uint16 CAP12EN:2; // 14:13 Capture Unit 1 and 2 enable + Uint16 CAPRES:1; // 15 Capture reset (always reads 0) +}; + +/* Allow access to the bit fields or entire register */ +union CAPCONA_REG { + Uint16 all; + struct CAPCONA_BITS bit; +}; + + +/* Control register bit definitions */ +struct CAPCONB_BITS { + Uint16 rsvd1:2; // 1:0 reserved + Uint16 CAP6EDGE:2; // 3:2 Edge Detection for Unit 6 + Uint16 CAP5EDGE:2; // 5:4 Edge Detection for Unit 5 + Uint16 CAP4EDGE:2; // 7:6 Edge Detection for Unit 4 + Uint16 CAP6TOADC:1; // 8 Unit 6 starts the ADC + Uint16 CAP45TSEL:1; // 9 GP Timer selection for Units 4 and 5 + Uint16 CAP6TSEL:1; // 10 GP Timer selection for Unit 6 + Uint16 rsvd2:1; // 11 reserved + Uint16 CAP6EN:1; // 12 Capture Unit 6 control + Uint16 CAP45EN:2; // 14:13 Capture Unit 4 and 5 control + Uint16 CAPRES:1; // 15 Capture reset (always reads 0) +}; + +/* Allow access to the bit fields or entire register */ +union CAPCONB_REG { + Uint16 all; + struct CAPCONB_BITS bit; +}; + +/* Capture FIFO Status Register bit definitions */ +struct CAPFIFOA_BITS { + Uint16 rsvd1:8; // 7:0 reserved + Uint16 CAP1FIFO:2; // 9:8 CAP1 FIFO status + Uint16 CAP2FIFO:2; // 11:10 CAP2 FIFO status + Uint16 CAP3FIFO:2; // 13:12 CAP2 FIFO status + Uint16 rsvd2:2; // 15:14 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CAPFIFOA_REG { + Uint16 all; + struct CAPFIFOA_BITS bit; +}; + +/* Capture FIFO Status Register bit definitions */ +struct CAPFIFOB_BITS { + Uint16 rsvd1:8; // 7:0 reserved + Uint16 CAP4FIFO:2; // 9:8 CAP4 FIFO status + Uint16 CAP5FIFO:2; // 11:10 CAP5 FIFO status + Uint16 CAP6FIFO:2; // 13:12 CAP6 FIFO status + Uint16 rsvd2:2; // 15:14 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CAPFIFOB_REG { + Uint16 all; + struct CAPFIFOB_BITS bit; +}; + +/* Interrupt Mask Register bit definitions */ +struct EVAIMRA_BITS { + Uint16 PDPINTA:1; // 0 Enable PDPINTA + Uint16 CMP1INT:1; // 1 Enable + Uint16 CMP2INT:1; // 2 Enable + Uint16 CMP3INT:1; // 3 Enable + Uint16 rsvd1:3; // 6:4 reserved + Uint16 T1PINT:1; // 7 Enable + Uint16 T1CINT:1; // 8 Enable + Uint16 T1UFINT:1; // 9 Enable + Uint16 T1OFINT:1; // 10 Enable + Uint16 rsvd2:5; // 15:11 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EVAIMRA_REG { + Uint16 all; + struct EVAIMRA_BITS bit; +}; + +/* Interrupt Mask Register bit definitions */ +struct EVBIMRA_BITS { + Uint16 PDPINTB:1; // 0 Enable PDPINTB + Uint16 CMP4INT:1; // 1 Enable + Uint16 CMP5INT:1; // 2 Enable + Uint16 CMP6INT:1; // 3 Enable + Uint16 rsvd1:3; // 6:4 reserved + Uint16 T3PINT:1; // 7 Enable + Uint16 T3CINT:1; // 8 Enable + Uint16 T3UFINT:1; // 9 Enable + Uint16 T3OFINT:1; // 10 Enable + Uint16 rsvd2:5; // 15:11 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EVBIMRA_REG { + Uint16 all; + struct EVBIMRA_BITS bit; +}; + +struct EVAIMRB_BITS { + Uint16 T2PINT:1; // 0 Enable + Uint16 T2CINT:1; // 1 Enable + Uint16 T2UFINT:1; // 2 Enable + Uint16 T2OFINT:1; // 3 Enable + Uint16 rsvd1:12; // 15:4 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EVAIMRB_REG { + Uint16 all; + struct EVAIMRB_BITS bit; +}; + +struct EVBIMRB_BITS { + Uint16 T4PINT:1; // 0 Enable + Uint16 T4CINT:1; // 1 Enable + Uint16 T4UFINT:1; // 2 Enable + Uint16 T4OFINT:1; // 3 Enable + Uint16 rsvd1:12; // 15:4 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EVBIMRB_REG { + Uint16 all; + struct EVBIMRB_BITS bit; +}; + +struct EVAIMRC_BITS { + Uint16 CAP1INT:1; // 0 Enable + Uint16 CAP2INT:1; // 1 Enable + Uint16 CAP3INT:1; // 2 Enable + Uint16 rsvd1:13; // 15:3 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EVAIMRC_REG { + Uint16 all; + struct EVAIMRC_BITS bit; +}; + +struct EVBIMRC_BITS { + Uint16 CAP4INT:1; // 0 Enable + Uint16 CAP5INT:1; // 1 Enable + Uint16 CAP6INT:1; // 2 Enable + Uint16 rsvd1:13; // 15:3 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EVBIMRC_REG { + Uint16 all; + struct EVBIMRC_BITS bit; +}; + +/* Interrupt Flag Register bit definitions */ +struct EVAIFRA_BITS { + Uint16 PDPINTA:1; // 0 Flag PDPINTA + Uint16 CMP1INT:1; // 1 Flag + Uint16 CMP2INT:1; // 2 Flag + Uint16 CMP3INT:1; // 3 Flag + Uint16 rsvd1:3; // 6:4 reserved + Uint16 T1PINT:1; // 7 Flag + Uint16 T1CINT:1; // 8 Flag + Uint16 T1UFINT:1; // 9 Flag + Uint16 T1OFINT:1; // 10 Flag + Uint16 rsvd2:5; // 15:11 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EVAIFRA_REG { + Uint16 all; + struct EVAIMRA_BITS bit; +}; + +/* Interrupt Mask Register bit definitions */ +struct EVBIFRA_BITS { + Uint16 PDPINTB:1; // 0 Flag PDPINTB + Uint16 CMP4INT:1; // 1 Flag + Uint16 CMP5INT:1; // 2 Flag + Uint16 CMP6INT:1; // 3 Flag + Uint16 rsvd1:3; // 6:4 reserved + Uint16 T3PINT:1; // 7 Flag + Uint16 T3CINT:1; // 8 Flag + Uint16 T3UFINT:1; // 9 Flag + Uint16 T3OFINT:1; // 10 Flag + Uint16 rsvd2:5; // 15:11 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EVBIFRA_REG { + Uint16 all; + struct EVBIFRA_BITS bit; +}; + +struct EVAIFRB_BITS { + Uint16 T2PINT:1; // 0 Flag + Uint16 T2CINT:1; // 1 Flag + Uint16 T2UFINT:1; // 2 Flag + Uint16 T2OFINT:1; // 3 Flag + Uint16 rsvd1:12; // 15:4 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EVAIFRB_REG { + Uint16 all; + struct EVAIFRB_BITS bit; +}; + +struct EVBIFRB_BITS { + Uint16 T4PINT:1; // 0 Flag + Uint16 T4CINT:1; // 1 Flag + Uint16 T4UFINT:1; // 2 Flag + Uint16 T4OFINT:1; // 3 Flag + Uint16 rsvd1:12; // 15:4 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EVBIFRB_REG { + Uint16 all; + struct EVBIFRB_BITS bit; +}; + +struct EVAIFRC_BITS { + Uint16 CAP1INT:1; // 0 Flag + Uint16 CAP2INT:1; // 1 Flag + Uint16 CAP3INT:1; // 2 Flag + Uint16 rsvd1:13; // 15:3 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EVAIFRC_REG { + Uint16 all; + struct EVAIFRC_BITS bit; +}; + +struct EVBIFRC_BITS { + Uint16 CAP4INT:1; // 0 Flag + Uint16 CAP5INT:1; // 1 Flag + Uint16 CAP6INT:1; // 2 Flag + Uint16 rsvd1:13; // 15:3 reserved +}; + +/* Allow access to the bit fields or entire register */ +union EVBIFRC_REG { + Uint16 all; + struct EVBIFRC_BITS bit; +}; + +/* EVA Register File */ + +struct EVA_REGS { + union GPTCONA_REG GPTCONA; //0x7400 + Uint16 T1CNT; //0x7401 + Uint16 T1CMPR; //0x7402 + Uint16 T1PR; //0x7403 + union T1CON_REG T1CON; //0x7404 + Uint16 T2CNT; //0x7405 + Uint16 T2CMPR; //0x7406 + Uint16 T2PR; //0x7407 + union T2CON_REG T2CON; //0x7408 + union EXTCONA_REG EXTCONA; //0x7409 + Uint16 rsvd1[7]; //0x740A-10 + union COMCONA_REG COMCONA; //0x7411 + Uint16 rsvd2; //0x7412 + union ACTRA_REG ACTRA; //0x7413 + Uint16 rsvd3; //0x7414 + union DBTCON_REG DBTCONA; //0x7415 + Uint16 rsvd4; //0x7416 + Uint16 CMPR1; //0x7417 + Uint16 CMPR2; //0x7418 + Uint16 CMPR3; //0x7419 + Uint16 rsvd5[6]; //0x741A-F + union CAPCONA_REG CAPCONA; //0x7420 + Uint16 rsvd6; //0x7421 + union CAPFIFOA_REG CAPFIFOA; //0x7422 + Uint16 CAP1FIFO; //0x7423 + Uint16 CAP2FIFO; //0x7424 + Uint16 CAP3FIFO; //0x7425 + Uint16 rsvd7; //0x7426 + Uint16 CAP1FBOT; //0x7427 + Uint16 CAP2FBOT; //0x7428 + Uint16 CAP3FBOT; //0x7429 + Uint16 rsvd8[2]; //0x742A-B + union EVAIMRA_REG EVAIMRA; //0x742C + union EVAIMRB_REG EVAIMRB; //0x742D + union EVAIMRC_REG EVAIMRC; //0x742E + union EVAIFRA_REG EVAIFRA; //0x742F + union EVAIFRB_REG EVAIFRB; //0x7430 + union EVAIFRC_REG EVAIFRC; //0x7431 +}; + + +/* EVB Register File */ + +struct EVB_REGS { + union GPTCONB_REG GPTCONB; //0x7500 + Uint16 T3CNT; //0x7501 + Uint16 T3CMPR; //0x7502 + Uint16 T3PR; //0x7503 + union T3CON_REG T3CON; //0x7504 + Uint16 T4CNT; //0x7505 + Uint16 T4CMPR; //0x7506 + Uint16 T4PR; //0x7507 + union T4CON_REG T4CON; //0x7508 + union EXTCONB_REG EXTCONB; //0x7509 + Uint16 rsvd1[7]; //0x750A-10 + union COMCONB_REG COMCONB; //0x7511 + Uint16 rsvd2; //0x7512 + union ACTRB_REG ACTRB; //0x7513 + Uint16 rsvd3; //0x7514 + union DBTCON_REG DBTCONB; //0x7515 + Uint16 rsvd4; //0x7516 + Uint16 CMPR4; //0x7517 + Uint16 CMPR5; //0x7518 + Uint16 CMPR6; //0x7519 + Uint16 rsvd5[6]; //0x751A-F + union CAPCONB_REG CAPCONB; //0x7520 + Uint16 rsvd6; //0x7521 + union CAPFIFOB_REG CAPFIFOB; //0x7522 + Uint16 CAP4FIFO; //0x7523 + Uint16 CAP5FIFO; //0x7524 + Uint16 CAP6FIFO; //0x7525 + Uint16 rsvd7; //0x7526 + Uint16 CAP4FBOT; //0x7527 + Uint16 CAP5FBOT; //0x7528 + Uint16 CAP6FBOT; //0x7529 + Uint16 rsvd8[2]; //0x752A-B + union EVBIMRA_REG EVBIMRA; //0x752C + union EVBIMRB_REG EVBIMRB; //0x752D + union EVBIMRC_REG EVBIMRC; //0x752E + union EVBIFRA_REG EVBIFRA; //0x752F + union EVBIFRB_REG EVBIFRB; //0x7530 + union EVBIFRC_REG EVBIFRC; //0x7531 +}; + + + +//--------------------------------------------------------------------------- +// Function prototypes and external definitions: +// + +extern struct EVA_REGS EvaRegs; +extern struct EVB_REGS EvbRegs; + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_EV.H definition + + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_Examples.h b/Inu/main_matlab/device_support/include/DSP281x_Examples.h new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_Examples.h @@ -0,0 +1 @@ + diff --git a/Inu/main_matlab/device_support/include/DSP281x_GlobalPrototypes.h b/Inu/main_matlab/device_support/include/DSP281x_GlobalPrototypes.h new file mode 100644 index 0000000..e69de29 diff --git a/Inu/main_matlab/device_support/include/DSP281x_Gpio.h b/Inu/main_matlab/device_support/include/DSP281x_Gpio.h new file mode 100644 index 0000000..3eda7c8 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_Gpio.h @@ -0,0 +1,1035 @@ +// TI File $Revision: /main/2 $ +// Checkin $Date: April 28, 2005 14:57:26 $ +//########################################################################### +// +// FILE: DSP281x_Gpio.h +// +// TITLE: DSP281x General Purpose I/O Definitions. +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_GPIO_H +#define DSP281x_GPIO_H + + +#ifdef __cplusplus +extern "C" { +#endif + + +//---------------------------------------------------- +// General purpose I/O (GPIO) Register Bit Definitions + +//---------------------------------------------------- +// GPIO A mux control register bit definitions */ +// +// +struct GPAMUX_BITS { // bits description + Uint16 PWM1_GPIOA0:1; // 0 + Uint16 PWM2_GPIOA1:1; // 1 + Uint16 PWM3_GPIOA2:1; // 2 + Uint16 PWM4_GPIOA3:1; // 3 + Uint16 PWM5_GPIOA4:1; // 4 + Uint16 PWM6_GPIOA5:1; // 5 + Uint16 T1PWM_GPIOA6:1; // 6 + Uint16 T2PWM_GPIOA7:1; // 7 + Uint16 CAP1Q1_GPIOA8:1; // 8 + Uint16 CAP2Q2_GPIOA9:1; // 9 + Uint16 CAP3QI1_GPIOA10:1; // 10 + Uint16 TDIRA_GPIOA11:1; // 11 + Uint16 TCLKINA_GPIOA12:1; // 12 + Uint16 C1TRIP_GPIOA13:1; // 13 + Uint16 C2TRIP_GPIOA14:1; // 14 + Uint16 C3TRIP_GPIOA15:1; // 15 + +}; + +union GPAMUX_REG { + Uint16 all; + struct GPAMUX_BITS bit; +}; + + + +//--------------------------------------------------------------------------------------- +// GPIO A Direction control register bit definitions +// +// +struct GPADIR_BITS { // bits description + Uint16 GPIOA0:1; // 0 + Uint16 GPIOA1:1; // 1 + Uint16 GPIOA2:1; // 2 + Uint16 GPIOA3:1; // 3 + Uint16 GPIOA4:1; // 4 + Uint16 GPIOA5:1; // 5 + Uint16 GPIOA6:1; // 6 + Uint16 GPIOA7:1; // 7 + Uint16 GPIOA8:1; // 8 + Uint16 GPIOA9:1; // 9 + Uint16 GPIOA10:1; // 10 + Uint16 GPIOA11:1; // 11 + Uint16 GPIOA12:1; // 12 + Uint16 GPIOA13:1; // 13 + Uint16 GPIOA14:1; // 14 + Uint16 GPIOA15:1; // 15 + +}; + +union GPADIR_REG { + Uint16 all; + struct GPADIR_BITS bit; +}; + +//---------------------------------- +// GPA Qualregister bit definitions +// +// + +struct GPAQUAL_BITS { // bits description + Uint16 QUALPRD:8; // 0:7 Qualification Sampling Period + Uint16 rsvd1:8; // 15:8 reserved +}; + +union GPAQUAL_REG { + Uint16 all; + struct GPAQUAL_BITS bit; +}; + + +//--------------------------------------------------------------------------------------- +// GPIO A Data register bit definitions +// +// +struct GPADAT_BITS { // bits description + Uint16 GPIOA0:1; // 0 + Uint16 GPIOA1:1; // 1 + Uint16 GPIOA2:1; // 2 + Uint16 GPIOA3:1; // 3 + Uint16 GPIOA4:1; // 4 + Uint16 GPIOA5:1; // 5 + Uint16 GPIOA6:1; // 6 + Uint16 GPIOA7:1; // 7 + Uint16 GPIOA8:1; // 8 + Uint16 GPIOA9:1; // 9 + Uint16 GPIOA10:1; // 10 + Uint16 GPIOA11:1; // 11 + Uint16 GPIOA12:1; // 12 + Uint16 GPIOA13:1; // 13 + Uint16 GPIOA14:1; // 14 + Uint16 GPIOA15:1; // 15 + +}; + +union GPADAT_REG { + Uint16 all; + struct GPADAT_BITS bit; +}; + + +//--------------------------------------------------------------------------------------- +// GPIO A Data set bit definitions +// +// +struct GPASET_BITS { // bits description + Uint16 GPIOA0:1; // 0 + Uint16 GPIOA1:1; // 1 + Uint16 GPIOA2:1; // 2 + Uint16 GPIOA3:1; // 3 + Uint16 GPIOA4:1; // 4 + Uint16 GPIOA5:1; // 5 + Uint16 GPIOA6:1; // 6 + Uint16 GPIOA7:1; // 7 + Uint16 GPIOA8:1; // 8 + Uint16 GPIOA9:1; // 9 + Uint16 GPIOA10:1; // 10 + Uint16 GPIOA11:1; // 11 + Uint16 GPIOA12:1; // 12 + Uint16 GPIOA13:1; // 13 + Uint16 GPIOA14:1; // 14 + Uint16 GPIOA15:1; // 15 + +}; + +union GPASET_REG { + Uint16 all; + struct GPASET_BITS bit; +}; + + + +//--------------------------------------------------------------------------------------- +// GPIO A Data clear register bit definitions +// +// +struct GPACLEAR_BITS { // bits description + Uint16 GPIOA0:1; // 0 + Uint16 GPIOA1:1; // 1 + Uint16 GPIOA2:1; // 2 + Uint16 GPIOA3:1; // 3 + Uint16 GPIOA4:1; // 4 + Uint16 GPIOA5:1; // 5 + Uint16 GPIOA6:1; // 6 + Uint16 GPIOA7:1; // 7 + Uint16 GPIOA8:1; // 8 + Uint16 GPIOA9:1; // 9 + Uint16 GPIOA10:1; // 10 + Uint16 GPIOA11:1; // 11 + Uint16 GPIOA12:1; // 12 + Uint16 GPIOA13:1; // 13 + Uint16 GPIOA14:1; // 14 + Uint16 GPIOA15:1; // 15 + +}; + +union GPACLEAR_REG { + Uint16 all; + struct GPACLEAR_BITS bit; +}; + +//--------------------------------------------------------------------------------------- +// GPIO A Data toggle register bit definitions +// +// +struct GPATOGGLE_BITS { // bits description + Uint16 GPIOA0:1; // 0 + Uint16 GPIOA1:1; // 1 + Uint16 GPIOA2:1; // 2 + Uint16 GPIOA3:1; // 3 + Uint16 GPIOA4:1; // 4 + Uint16 GPIOA5:1; // 5 + Uint16 GPIOA6:1; // 6 + Uint16 GPIOA7:1; // 7 + Uint16 GPIOA8:1; // 8 + Uint16 GPIOA9:1; // 9 + Uint16 GPIOA10:1; // 10 + Uint16 GPIOA11:1; // 11 + Uint16 GPIOA12:1; // 12 + Uint16 GPIOA13:1; // 13 + Uint16 GPIOA14:1; // 14 + Uint16 GPIOA15:1; // 15 + +}; + +union GPATOGGLE_REG { + Uint16 all; + struct GPATOGGLE_BITS bit; +}; + + + +//--------------------------------------------------------------------------------- +// GPIO B mux control register bit definitions +// +// +struct GPBMUX_BITS { // bits description + Uint16 PWM7_GPIOB0:1; // 0 + Uint16 PWM8_GPIOB1:1; // 1 + Uint16 PWM9_GPIOB2:1; // 2 + Uint16 PWM10_GPIOB3:1; // 3 + Uint16 PWM11_GPIOB4:1; // 4 + Uint16 PWM12_GPIOB5:1; // 5 + Uint16 T3PWM_GPIOB6:1; // 6 + Uint16 T4PWM_GPIOB7:1; // 7 + Uint16 CAP4Q1_GPIOB8:1; // 8 + Uint16 CAP5Q2_GPIOB9:1; // 9 + Uint16 CAP6QI2_GPIOB10:1; // 10 + Uint16 TDIRB_GPIOB11:1; // 11 + Uint16 TCLKINB_GPIOB12:1; // 12 + Uint16 C4TRIP_GPIOB13:1; // 13 + Uint16 C5TRIP_GPIOB14:1; // 14 + Uint16 C6TRIP_GPIOB15:1; // 15 + +}; + +union GPBMUX_REG { + Uint16 all; + struct GPBMUX_BITS bit; +}; + +//--------------------------------------------------------------------------------------- +// GPIO B Direction control register bit definitions +// +// +struct GPBDIR_BITS { // bits description + Uint16 GPIOB0:1; // 0 + Uint16 GPIOB1:1; // 1 + Uint16 GPIOB2:1; // 2 + Uint16 GPIOB3:1; // 3 + Uint16 GPIOB4:1; // 4 + Uint16 GPIOB5:1; // 5 + Uint16 GPIOB6:1; // 6 + Uint16 GPIOB7:1; // 7 + Uint16 GPIOB8:1; // 8 + Uint16 GPIOB9:1; // 9 + Uint16 GPIOB10:1; // 10 + Uint16 GPIOB11:1; // 11 + Uint16 GPIOB12:1; // 12 + Uint16 GPIOB13:1; // 13 + Uint16 GPIOB14:1; // 14 + Uint16 GPIOB15:1; // 15 + +}; + +union GPBDIR_REG { + Uint16 all; + struct GPBDIR_BITS bit; +}; + +//----------------------------------- +// GPB Qualregister bit definitions +// +// + +struct GPBQUAL_BITS { // bits description + Uint16 QUALPRD:8; // 0:7 Qualification Sampling Period + Uint16 rsvd1:8; // 15:8 reserved +}; + +union GPBQUAL_REG { + Uint16 all; + struct GPBQUAL_BITS bit; +}; + + +//--------------------------------------------------------------------------------------- +// GPIO B data register bit definitions +// +// +struct GPBDAT_BITS { // bits description + Uint16 GPIOB0:1; // 0 + Uint16 GPIOB1:1; // 1 + Uint16 GPIOB2:1; // 2 + Uint16 GPIOB3:1; // 3 + Uint16 GPIOB4:1; // 4 + Uint16 GPIOB5:1; // 5 + Uint16 GPIOB6:1; // 6 + Uint16 GPIOB7:1; // 7 + Uint16 GPIOB8:1; // 8 + Uint16 GPIOB9:1; // 9 + Uint16 GPIOB10:1; // 10 + Uint16 GPIOB11:1; // 11 + Uint16 GPIOB12:1; // 12 + Uint16 GPIOB13:1; // 13 + Uint16 GPIOB14:1; // 14 + Uint16 GPIOB15:1; // 15 + +}; + +union GPBDAT_REG { + Uint16 all; + struct GPBDAT_BITS bit; +}; + + + +//--------------------------------------------------------------------------------------- +// GPIO B data set register bit definitions +// +// +struct GPBSET_BITS { // bits description + Uint16 GPIOB0:1; // 0 + Uint16 GPIOB1:1; // 1 + Uint16 GPIOB2:1; // 2 + Uint16 GPIOB3:1; // 3 + Uint16 GPIOB4:1; // 4 + Uint16 GPIOB5:1; // 5 + Uint16 GPIOB6:1; // 6 + Uint16 GPIOB7:1; // 7 + Uint16 GPIOB8:1; // 8 + Uint16 GPIOB9:1; // 9 + Uint16 GPIOB10:1; // 10 + Uint16 GPIOB11:1; // 11 + Uint16 GPIOB12:1; // 12 + Uint16 GPIOB13:1; // 13 + Uint16 GPIOB14:1; // 14 + Uint16 GPIOB15:1; // 15 + +}; + + +union GPBSET_REG { + Uint16 all; + struct GPBSET_BITS bit; +}; + + +//--------------------------------------------------------------------------------------- +// GPIO B data clear register bit definitions +// +// +struct GPBCLEAR_BITS { // bits description + Uint16 GPIOB0:1; // 0 + Uint16 GPIOB1:1; // 1 + Uint16 GPIOB2:1; // 2 + Uint16 GPIOB3:1; // 3 + Uint16 GPIOB4:1; // 4 + Uint16 GPIOB5:1; // 5 + Uint16 GPIOB6:1; // 6 + Uint16 GPIOB7:1; // 7 + Uint16 GPIOB8:1; // 8 + Uint16 GPIOB9:1; // 9 + Uint16 GPIOB10:1; // 10 + Uint16 GPIOB11:1; // 11 + Uint16 GPIOB12:1; // 12 + Uint16 GPIOB13:1; // 13 + Uint16 GPIOB14:1; // 14 + Uint16 GPIOB15:1; // 15 + +}; + +union GPBCLEAR_REG { + Uint16 all; + struct GPBCLEAR_BITS bit; +}; + + + +//--------------------------------------------------------------------------------------- +// GPIO B data toggle register bit definitions +// +// +struct GPBTOGGLE_BITS { // bits description + Uint16 GPIOB0:1; // 0 + Uint16 GPIOB1:1; // 1 + Uint16 GPIOB2:1; // 2 + Uint16 GPIOB3:1; // 3 + Uint16 GPIOB4:1; // 4 + Uint16 GPIOB5:1; // 5 + Uint16 GPIOB6:1; // 6 + Uint16 GPIOB7:1; // 7 + Uint16 GPIOB8:1; // 8 + Uint16 GPIOB9:1; // 9 + Uint16 GPIOB10:1; // 10 + Uint16 GPIOB11:1; // 11 + Uint16 GPIOB12:1; // 12 + Uint16 GPIOB13:1; // 13 + Uint16 GPIOB14:1; // 14 + Uint16 GPIOB15:1; // 15 + +}; + +union GPBTOGGLE_REG { + Uint16 all; + struct GPBTOGGLE_BITS bit; +}; + + +//--------------------------------------------------------------------------------- +// GPIO D mux control register bit definitions +// +// +struct GPDMUX_BITS { // bits description + Uint16 T1CTRIP_PDPA_GPIOD0:1; // 0 + Uint16 T2CTRIP_SOCA_GPIOD1:1; // 1 + Uint16 rsvd1:3; // 4:2 + Uint16 T3CTRIP_PDPB_GPIOD5:1; // 5 + Uint16 T4CTRIP_SOCB_GPIOD6:1; // 6 + Uint16 rsvd2:9; // 15:7 + +}; + +union GPDMUX_REG { + Uint16 all; + struct GPDMUX_BITS bit; +}; + +//---------------------------------------------------- +// GPIO D Direction control register bit definitions +// +// +struct GPDDIR_BITS { // bits description + Uint16 GPIOD0:1; // 0 + Uint16 GPIOD1:1; // 1 + Uint16 rsvd1:3; // 4:2 + Uint16 GPIOD5:1; // 5 + Uint16 GPIOD6:1; // 6 + Uint16 rsvd2:9; // 15:7 +}; + +union GPDDIR_REG { + Uint16 all; + struct GPDDIR_BITS bit; +}; + + +//---------------------------------------------------- +// GPIO D data register bit definitions +// +// +struct GPDDAT_BITS { // bits description + Uint16 GPIOD0:1; // 0 + Uint16 GPIOD1:1; // 1 + Uint16 rsvd1:3; // 4:2 + Uint16 GPIOD5:1; // 5 + Uint16 GPIOD6:1; // 6 + Uint16 rsvd2:9; // 15:7 +}; + +union GPDDAT_REG { + Uint16 all; + struct GPDDAT_BITS bit; +}; + + +//---------------------------------------------------- +// GPIO D data set register bit definitions +// +// +struct GPDSET_BITS { // bits description + Uint16 GPIOD0:1; // 0 + Uint16 GPIOD1:1; // 1 + Uint16 rsvd1:3; // 4:2 + Uint16 GPIOD5:1; // 5 + Uint16 GPIOD6:1; // 6 + Uint16 rsvd2:9; // 15:7 +}; + +union GPDSET_REG { + Uint16 all; + struct GPDSET_BITS bit; +}; + + +//---------------------------------------------------- +// GPIO D data clear register bit definitions +// +// +struct GPDCLEAR_BITS { // bits description + Uint16 GPIOD0:1; // 0 + Uint16 GPIOD1:1; // 1 + Uint16 rsvd1:3; // 4:2 + Uint16 GPIOD5:1; // 5 + Uint16 GPIOD6:1; // 6 + Uint16 rsvd2:9; // 15:7 +}; + +union GPDCLEAR_REG { + Uint16 all; + struct GPDCLEAR_BITS bit; +}; + + + +//---------------------------------------------------- +// GPIO D data toggle register bit definitions +// +// +struct GPDTOGGLE_BITS { // bits description + Uint16 GPIOD0:1; // 0 + Uint16 GPIOD1:1; // 1 + Uint16 rsvd1:3; // 4:2 + Uint16 GPIOD5:1; // 5 + Uint16 GPIOD6:1; // 6 + Uint16 rsvd2:9; // 15:7 +}; + +union GPDTOGGLE_REG { + Uint16 all; + struct GPDTOGGLE_BITS bit; +}; + + + +//---------------------------------- +// GPIOD Qualregister bit definitions +// +// +struct GPDQUAL_BITS { // bits description + Uint16 QUALPRD:8; // 0:7 Qualification Sampling Period + Uint16 rsvd1:8; // 15:8 reserved +}; + +union GPDQUAL_REG { + Uint16 all; + struct GPDQUAL_BITS bit; +}; + + +//--------------------------------------------- +// GPIO E mux control register bit definitions +// +// +struct GPEMUX_BITS { // bits description + Uint16 XINT1_XBIO_GPIOE0:1; // 0 + Uint16 XINT2_ADCSOC_GPIOE1:1; // 1 + Uint16 XNMI_XINT13_GPIOE2:1; // 2 + Uint16 rsvd1:12; // 15:3 + +}; + +union GPEMUX_REG { + Uint16 all; + struct GPEMUX_BITS bit; +}; + +//--------------------------------------------------- +// GPIO E Direction control register bit definitions +// +// +struct GPEDIR_BITS { // bits description + Uint16 GPIOE0:1; // 0 + Uint16 GPIOE1:1; // 1 + Uint16 GPIOE2:1; // 2 + Uint16 rsvd1:12; // 15:3 +}; + +union GPEDIR_REG { + Uint16 all; + struct GPEDIR_BITS bit; +}; + +//--------------------------------------------------- +// GPIO E data register bit definitions +// +// +struct GPEDAT_BITS { // bits description + Uint16 GPIOE0:1; // 0 + Uint16 GPIOE1:1; // 1 + Uint16 GPIOE2:1; // 2 + Uint16 rsvd1:12; // 15:3 +}; + +union GPEDAT_REG { + Uint16 all; + struct GPEDAT_BITS bit; +}; + + + +//--------------------------------------------------- +// GPIO E data set register bit definitions +// +// +struct GPESET_BITS { // bits description + Uint16 GPIOE0:1; // 0 + Uint16 GPIOE1:1; // 1 + Uint16 GPIOE2:1; // 2 + Uint16 rsvd1:12; // 15:3 +}; + +union GPESET_REG { + Uint16 all; + struct GPESET_BITS bit; +}; + + +//--------------------------------------------------- +// GPIO E data clear register bit definitions +// +// +struct GPECLEAR_BITS { // bits description + Uint16 GPIOE0:1; // 0 + Uint16 GPIOE1:1; // 1 + Uint16 GPIOE2:1; // 2 + Uint16 rsvd1:12; // 15:3 +}; + +union GPECLEAR_REG { + Uint16 all; + struct GPECLEAR_BITS bit; +}; + + +//--------------------------------------------------- +// GPIO E data toggle register bit definitions +// +// +struct GPETOGGLE_BITS { // bits description + Uint16 GPIOE0:1; // 0 + Uint16 GPIOE1:1; // 1 + Uint16 GPIOE2:1; // 2 + Uint16 rsvd1:12; // 15:3 +}; + +union GPETOGGLE_REG { + Uint16 all; + struct GPETOGGLE_BITS bit; +}; + + + +//----------------------------------- +// GPIOE Qualregister bit definitions +// +// +struct GPEQUAL_BITS { // bits description + Uint16 QUALPRD:8; // 0:7 Qualification Sampling Period + Uint16 rsvd1:8; // 15:8 reserved +}; + +union GPEQUAL_REG { + Uint16 all; + struct GPEQUAL_BITS bit; +}; + + +//---------------------------------------------- +// GPIO F mux control register bit definitions +// +// +struct GPFMUX_BITS { // bits description + Uint16 SPISIMOA_GPIOF0:1; // 0 + Uint16 SPISOMIA_GPIOF1:1; // 1 + Uint16 SPICLKA_GPIOF2:1; // 2 + Uint16 SPISTEA_GPIOF3:1; // 3 + Uint16 SCITXDA_GPIOF4:1; // 4 + Uint16 SCIRXDA_GPIOF5:1; // 5 + Uint16 CANTXA_GPIOF6:1; // 6 + Uint16 CANRXA_GPIOF7:1; // 7 + Uint16 MCLKXA_GPIOF8:1; // 8 + Uint16 MCLKRA_GPIOF9:1; // 9 + Uint16 MFSXA_GPIOF10:1; // 10 + Uint16 MFSRA_GPIOF11:1; // 11 + Uint16 MDXA_GPIOF12:1; // 12 + Uint16 MDRA_GPIOF13:1; // 13 + Uint16 XF_GPIOF14:1; // 14 + Uint16 spare_GPIOF15:1; // 15 + +}; + +/* Allow access to the bit fields or entire register */ +union GPFMUX_REG { + Uint16 all; + struct GPFMUX_BITS bit; +}; + +//--------------------------------------------------- +// GPIO F Direction control register bit definitions +// +// + +struct GPFDIR_BITS { // bits description + Uint16 GPIOF0:1; // 0 + Uint16 GPIOF1:1; // 1 + Uint16 GPIOF2:1; // 2 + Uint16 GPIOF3:1; // 3 + Uint16 GPIOF4:1; // 4 + Uint16 GPIOF5:1; // 5 + Uint16 GPIOF6:1; // 6 + Uint16 GPIOF7:1; // 7 + Uint16 GPIOF8:1; // 8 + Uint16 GPIOF9:1; // 9 + Uint16 GPIOF10:1; // 10 + Uint16 GPIOF11:1; // 11 + Uint16 GPIOF12:1; // 12 + Uint16 GPIOF13:1; // 13 + Uint16 GPIOF14:1; // 14 + Uint16 GPIOF15:1; // 15 + +}; + +union GPFDIR_REG { + Uint16 all; + struct GPFDIR_BITS bit; +}; + +//--------------------------------------------------- +// GPIO F data register bit definitions +// +// + +struct GPFDAT_BITS { // bits description + Uint16 GPIOF0:1; // 0 + Uint16 GPIOF1:1; // 1 + Uint16 GPIOF2:1; // 2 + Uint16 GPIOF3:1; // 3 + Uint16 GPIOF4:1; // 4 + Uint16 GPIOF5:1; // 5 + Uint16 GPIOF6:1; // 6 + Uint16 GPIOF7:1; // 7 + Uint16 GPIOF8:1; // 8 + Uint16 GPIOF9:1; // 9 + Uint16 GPIOF10:1; // 10 + Uint16 GPIOF11:1; // 11 + Uint16 GPIOF12:1; // 12 + Uint16 GPIOF13:1; // 13 + Uint16 GPIOF14:1; // 14 + Uint16 GPIOF15:1; // 15 + +}; + +union GPFDAT_REG { + Uint16 all; + struct GPFDAT_BITS bit; +}; + + +//--------------------------------------------------- +// GPIO F data set register bit definitions +// +// + +struct GPFSET_BITS { // bits description + Uint16 GPIOF0:1; // 0 + Uint16 GPIOF1:1; // 1 + Uint16 GPIOF2:1; // 2 + Uint16 GPIOF3:1; // 3 + Uint16 GPIOF4:1; // 4 + Uint16 GPIOF5:1; // 5 + Uint16 GPIOF6:1; // 6 + Uint16 GPIOF7:1; // 7 + Uint16 GPIOF8:1; // 8 + Uint16 GPIOF9:1; // 9 + Uint16 GPIOF10:1; // 10 + Uint16 GPIOF11:1; // 11 + Uint16 GPIOF12:1; // 12 + Uint16 GPIOF13:1; // 13 + Uint16 GPIOF14:1; // 14 + Uint16 GPIOF15:1; // 15 + +}; + +union GPFSET_REG { + Uint16 all; + struct GPFSET_BITS bit; +}; + + +//--------------------------------------------------- +// GPIO F data clear register bit definitions +// +// + +struct GPFCLEAR_BITS { // bits description + Uint16 GPIOF0:1; // 0 + Uint16 GPIOF1:1; // 1 + Uint16 GPIOF2:1; // 2 + Uint16 GPIOF3:1; // 3 + Uint16 GPIOF4:1; // 4 + Uint16 GPIOF5:1; // 5 + Uint16 GPIOF6:1; // 6 + Uint16 GPIOF7:1; // 7 + Uint16 GPIOF8:1; // 8 + Uint16 GPIOF9:1; // 9 + Uint16 GPIOF10:1; // 10 + Uint16 GPIOF11:1; // 11 + Uint16 GPIOF12:1; // 12 + Uint16 GPIOF13:1; // 13 + Uint16 GPIOF14:1; // 14 + Uint16 GPIOF15:1; // 15 + +}; + +union GPFCLEAR_REG { + Uint16 all; + struct GPFCLEAR_BITS bit; +}; + + +//--------------------------------------------------- +// GPIO F data toggle register bit definitions +// +// + +struct GPFTOGGLE_BITS { // bits description + Uint16 GPIOF0:1; // 0 + Uint16 GPIOF1:1; // 1 + Uint16 GPIOF2:1; // 2 + Uint16 GPIOF3:1; // 3 + Uint16 GPIOF4:1; // 4 + Uint16 GPIOF5:1; // 5 + Uint16 GPIOF6:1; // 6 + Uint16 GPIOF7:1; // 7 + Uint16 GPIOF8:1; // 8 + Uint16 GPIOF9:1; // 9 + Uint16 GPIOF10:1; // 10 + Uint16 GPIOF11:1; // 11 + Uint16 GPIOF12:1; // 12 + Uint16 GPIOF13:1; // 13 + Uint16 GPIOF14:1; // 14 + Uint16 GPIOF15:1; // 15 + +}; + +union GPFTOGGLE_REG { + Uint16 all; + struct GPFTOGGLE_BITS bit; +}; + +//---------------------------------------------- +// GPIO G mux control register bit definitions +// +// +struct GPGMUX_BITS { // bits description + Uint16 rsvd1:4; // 3:0 + Uint16 SCITXDB_GPIOG4:1; // 4 + Uint16 SCIRXDB_GPIOG5:1; // 5 + Uint16 rsvd2:10; // 15:6 + +}; + + +/* Allow access to the bit fields or entire register */ +union GPGMUX_REG { + Uint16 all; + struct GPGMUX_BITS bit; +}; + +//--------------------------------------------------- +// GPIO G Direction control register bit definitions +// +// + +struct GPGDIR_BITS { // bits description + Uint16 rsvd1:4; // 3:0 + Uint16 GPIOG4:1; // 4 + Uint16 GPIOG5:1; // 5 + Uint16 rsvd2:10; // 15:6 + +}; + +union GPGDIR_REG { + Uint16 all; + struct GPGDIR_BITS bit; +}; + +//--------------------------------------------------- +// GPIO G data register bit definitions +// +// + +struct GPGDAT_BITS { // bits description + Uint16 rsvd1:4; // 3:0 + Uint16 GPIOG4:1; // 4 + Uint16 GPIOG5:1; // 5 + Uint16 rsvd2:10; // 15:6 + +}; + +union GPGDAT_REG { + Uint16 all; + struct GPGDAT_BITS bit; +}; + + +//--------------------------------------------------- +// GPIO G data set register bit definitions +// +// + +struct GPGSET_BITS { // bits description + Uint16 rsvd1:4; // 3:0 + Uint16 GPIOG4:1; // 4 + Uint16 GPIOG5:1; // 5 + Uint16 rsvd2:10; // 15:6 + +}; + +union GPGSET_REG { + Uint16 all; + struct GPGSET_BITS bit; +}; + + +//--------------------------------------------------- +// GPIO G data clear register bit definitions +// +// + +struct GPGCLEAR_BITS { // bits description + Uint16 rsvd1:4; // 3:0 + Uint16 GPIOG4:1; // 4 + Uint16 GPIOG5:1; // 5 + Uint16 rsvd2:10; // 15:6 + +}; + +union GPGCLEAR_REG { + Uint16 all; + struct GPGCLEAR_BITS bit; +}; + + +//--------------------------------------------------- +// GPIO G data toggle register bit definitions +// +// + +struct GPGTOGGLE_BITS { // bits description + Uint16 rsvd1:4; // 3:0 + Uint16 GPIOG4:1; // 4 + Uint16 GPIOG5:1; // 5 + Uint16 rsvd2:10; // 15:6 + +}; + +union GPGTOGGLE_REG { + Uint16 all; + struct GPGTOGGLE_BITS bit; +}; + + +struct GPIO_MUX_REGS { + union GPAMUX_REG GPAMUX; + union GPADIR_REG GPADIR; + union GPAQUAL_REG GPAQUAL; + Uint16 rsvd1; + union GPBMUX_REG GPBMUX; + union GPBDIR_REG GPBDIR; + union GPBQUAL_REG GPBQUAL; + Uint16 rsvd2[5]; + union GPDMUX_REG GPDMUX; + union GPDDIR_REG GPDDIR; + union GPDQUAL_REG GPDQUAL; + Uint16 rsvd3; + union GPEMUX_REG GPEMUX; + union GPEDIR_REG GPEDIR; + union GPEQUAL_REG GPEQUAL; + Uint16 rsvd4; + union GPFMUX_REG GPFMUX; + union GPFDIR_REG GPFDIR; + Uint16 rsvd5[2]; + union GPGMUX_REG GPGMUX; + union GPGDIR_REG GPGDIR; + Uint16 rsvd6[6]; +}; + +struct GPIO_DATA_REGS { + union GPADAT_REG GPADAT; + union GPASET_REG GPASET; + union GPACLEAR_REG GPACLEAR; + union GPATOGGLE_REG GPATOGGLE; + union GPBDAT_REG GPBDAT; + union GPBSET_REG GPBSET; + union GPBCLEAR_REG GPBCLEAR; + union GPBTOGGLE_REG GPBTOGGLE; + Uint16 rsvd1[4]; + union GPDDAT_REG GPDDAT; + union GPDSET_REG GPDSET; + union GPDCLEAR_REG GPDCLEAR; + union GPDTOGGLE_REG GPDTOGGLE; + union GPEDAT_REG GPEDAT; + union GPESET_REG GPESET; + union GPECLEAR_REG GPECLEAR; + union GPETOGGLE_REG GPETOGGLE; + union GPFDAT_REG GPFDAT; + union GPFSET_REG GPFSET; + union GPFCLEAR_REG GPFCLEAR; + union GPFTOGGLE_REG GPFTOGGLE; + union GPGDAT_REG GPGDAT; + union GPGSET_REG GPGSET; + union GPGCLEAR_REG GPGCLEAR; + union GPGTOGGLE_REG GPGTOGGLE; + Uint16 rsvd2[4]; +}; + + +//--------------------------------------------------------------------------- +// GPI/O External References & Function Declarations: +// +extern struct GPIO_MUX_REGS GpioMuxRegs; +extern struct GPIO_DATA_REGS GpioDataRegs; + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_GPIO_H definition + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_Mcbsp.h b/Inu/main_matlab/device_support/include/DSP281x_Mcbsp.h new file mode 100644 index 0000000..ebadfbd --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_Mcbsp.h @@ -0,0 +1,778 @@ +// TI File $Revision: /main/2 $ +// Checkin $Date: April 28, 2005 14:57:24 $ +//########################################################################### +// +// FILE: DSP281x_Mcbsp.h +// +// TITLE: DSP281x Device McBSP Register Definitions. +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_MCBSP_H +#define DSP281x_MCBSP_H + +#ifdef __cplusplus +extern "C" { +#endif + + +//--------------------------------------------------------------------------- +// McBSP Individual Register Bit Definitions: +// +// McBSP DRR2 register bit definitions: +struct DRR2_BITS { // bit description + Uint16 HWLB:8; // 16:23 High word low byte + Uint16 HWHB:8; // 24:31 High word high byte +}; + +union DRR2_REG { + Uint16 all; + struct DRR2_BITS bit; +}; + +// McBSP DRR1 register bit definitions: +struct DRR1_BITS { // bit description + Uint16 LWLB:8; // 16:23 Low word low byte + Uint16 LWHB:8; // 24:31 low word high byte +}; + +union DRR1_REG { + Uint16 all; + struct DRR1_BITS bit; +}; + +// McBSP DXR2 register bit definitions: +struct DXR2_BITS { // bit description + Uint16 HWLB:8; // 16:23 High word low byte + Uint16 HWHB:8; // 24:31 High word high byte +}; + +union DXR2_REG { + Uint16 all; + struct DXR2_BITS bit; +}; + +// McBSP DXR1 register bit definitions: +struct DXR1_BITS { // bit description + Uint16 LWLB:8; // 16:23 Low word low byte + Uint16 LWHB:8; // 24:31 low word high byte +}; + +union DXR1_REG { + Uint16 all; + struct DXR1_BITS bit; +}; + +// SPCR2 control register bit definitions: +struct SPCR2_BITS { // bit description + Uint16 XRST:1; // 0 transmit reset + Uint16 XRDY:1; // 1 transmit ready + Uint16 XEMPTY:1; // 2 Transmit empty + Uint16 XSYNCERR:1; // 3 Transmit syn errorINT flag + Uint16 XINTM:2; // 5:4 Transmit interrupt types + Uint16 GRST:1; // 6 CLKG reset + Uint16 FRST:1; // 7 Frame sync reset + Uint16 SOFT:1; // 8 SOFT bit + Uint16 FREE:1; // 9 FREE bit + Uint16 rsvd:6; // 15:10 reserved +}; + +union SPCR2_REG { + Uint16 all; + struct SPCR2_BITS bit; +}; + +// SPCR1 control register bit definitions: +struct SPCR1_BITS { // bit description + Uint16 RRST:1; // 0 Receive reset + Uint16 RRDY:1; // 1 Receive ready + Uint16 RFULL:1; // 2 Receive full + Uint16 RSYNCERR:1; // 7 Receive syn error + Uint16 RINTM:2; // 5:4 Receive interrupt types + Uint16 ABIS:1; // 6 ABIS mode select + Uint16 DXENA:1; // 7 DX hi-z enable + Uint16 rsvd:3; // 10:8 reserved + Uint16 CLKSTP:2; // 12:11 CLKSTOP mode bit + Uint16 RJUST:2; // 13:14 Right justified + Uint16 DLB:1; // 15 Digital loop back +}; + +union SPCR1_REG { + Uint16 all; + struct SPCR1_BITS bit; +}; + +// RCR2 control register bit definitions: +struct RCR2_BITS { // bit description + Uint16 RDATDLY:2; // 1:0 Receive data delay + Uint16 RFIG:1; // 2 Receive frame sync ignore + Uint16 RCOMPAND:2; // 4:3 Receive Companding Mode selects + Uint16 RWDLEN2:3; // 7:5 Receive word length + Uint16 RFRLEN2:7; // 14:8 Receive Frame sync + Uint16 RPHASE:1; // 15 Receive Phase +}; + +union RCR2_REG { + Uint16 all; + struct RCR2_BITS bit; +}; + +// RCR1 control register bit definitions: +struct RCR1_BITS { // bit description + Uint16 rsvd1:5; // 4:0 reserved + Uint16 RWDLEN1:3; // 7:5 Receive word length + Uint16 RFRLEN1:7; // 14:8 Receive frame length + Uint16 rsvd2:1; // 15 reserved +}; + +union RCR1_REG { + Uint16 all; + struct RCR1_BITS bit; +}; + +// XCR2 control register bit definitions: + +struct XCR2_BITS { // bit description + Uint16 XDATDLY:2; // 1:0 Transmit data delay + Uint16 XFIG:1; // 2 Transmit frame sync ignore + Uint16 XCOMPAND:2; // 4:3 Transmit Companding Mode selects + Uint16 XWDLEN2:3; // 7:5 Transmit word length + Uint16 XFRLEN2:7; // 14:8 Transmit Frame sync + Uint16 XPHASE:1; // 15 Transmit Phase +}; + +union XCR2_REG { + Uint16 all; + struct XCR2_BITS bit; +}; + +// XCR1 control register bit definitions: +struct XCR1_BITS { // bit description + Uint16 rsvd1:5; // 4:0 reserved + Uint16 XWDLEN1:3; // 7:5 Transmit word length + Uint16 XFRLEN1:7; // 14:8 Transmit frame length + Uint16 rsvd2:1; // 15 reserved +}; + +union XCR1_REG { + Uint16 all; + struct XCR1_BITS bit; +}; + +// SRGR2 Sample rate generator control register bit definitions: +struct SRGR2_BITS { // bit description + Uint16 FPER:12; // 11:0 Frame period + Uint16 FSGM:1; // 12 Frame sync generator mode + Uint16 CLKSM:1; // 13 Sample rate generator mode + Uint16 rsvd:1; // 14 reserved + Uint16 GSYNC:1; // 15 CLKG sync +}; + +union SRGR2_REG { + Uint16 all; + struct SRGR2_BITS bit; +}; + +// SRGR1 control register bit definitions: +struct SRGR1_BITS { // bit description + Uint16 CLKGDV:8; // 7:0 CLKG divider + Uint16 FWID:8; // 15:8 Frame width +}; + +union SRGR1_REG { + Uint16 all; + struct SRGR1_BITS bit; +}; + +// MCR2 Multichannel control register bit definitions: +struct MCR2_BITS { // bit description + Uint16 XMCM:2; // 1:0 Transmit multichannel mode + Uint16 XCBLK:3; // 2:4 Transmit current block + Uint16 XPABLK:2; // 5:6 Transmit partition A Block + Uint16 XPBBLK:2; // 7:8 Transmit partition B Block + Uint16 XMCME:1; // 9 Transmit multi-channel enhance mode + Uint16 rsvd:6; // 15:10 reserved +}; + +union MCR2_REG { + Uint16 all; + struct MCR2_BITS bit; +}; + +// MCR1 Multichannel control register bit definitions: +struct MCR1_BITS { // bit description + Uint16 RMCM:1; // 0 Receive multichannel mode + Uint16 rsvd:1; // 1 reserved + Uint16 RCBLK:3; // 4:2 Receive current block + Uint16 RPABLK:2; // 6:5 Receive partition A Block + Uint16 RPBBLK:2; // 7:8 Receive partition B Block + Uint16 RMCME:1; // 9 Receive multi-channel enhance mode + Uint16 rsvd1:6; // 15:10 reserved +}; + +union MCR1_REG { + Uint16 all; + struct MCR1_BITS bit; +}; + +// RCERA control register bit definitions: +struct RCERA_BITS { // bit description + Uint16 RCEA0:1; // 0 Receive Channel enable bit + Uint16 RCEA1:1; // 1 Receive Channel enable bit + Uint16 RCEA2:1; // 2 Receive Channel enable bit + Uint16 RCEA3:1; // 3 Receive Channel enable bit + Uint16 RCEA4:1; // 4 Receive Channel enable bit + Uint16 RCEA5:1; // 5 Receive Channel enable bit + Uint16 RCEA6:1; // 6 Receive Channel enable bit + Uint16 RCEA7:1; // 7 Receive Channel enable bit + Uint16 RCEA8:1; // 8 Receive Channel enable bit + Uint16 RCEA9:1; // 9 Receive Channel enable bit + Uint16 RCEA10:1; // 10 Receive Channel enable bit + Uint16 RCEA11:1; // 11 Receive Channel enable bit + Uint16 RCEA12:1; // 12 Receive Channel enable bit + Uint16 RCEA13:1; // 13 Receive Channel enable bit + Uint16 RCEA14:1; // 14 Receive Channel enable bit + Uint16 RCEA15:1; // 15 Receive Channel enable bit +}; + +union RCERA_REG { + Uint16 all; + struct RCERA_BITS bit; +}; + +// RCERB control register bit definitions: +struct RCERB_BITS { // bit description + Uint16 RCEB0:1; // 0 Receive Channel enable bit + Uint16 RCEB1:1; // 1 Receive Channel enable bit + Uint16 RCEB2:1; // 2 Receive Channel enable bit + Uint16 RCEB3:1; // 3 Receive Channel enable bit + Uint16 RCEB4:1; // 4 Receive Channel enable bit + Uint16 RCEB5:1; // 5 Receive Channel enable bit + Uint16 RCEB6:1; // 6 Receive Channel enable bit + Uint16 RCEB7:1; // 7 Receive Channel enable bit + Uint16 RCEB8:1; // 8 Receive Channel enable bit + Uint16 RCEB9:1; // 9 Receive Channel enable bit + Uint16 RCEB10:1; // 10 Receive Channel enable bit + Uint16 RCEB11:1; // 11 Receive Channel enable bit + Uint16 RCEB12:1; // 12 Receive Channel enable bit + Uint16 RCEB13:1; // 13 Receive Channel enable bit + Uint16 RCEB14:1; // 14 Receive Channel enable bit + Uint16 RCEB15:1; // 15 Receive Channel enable bit +}; + +union RCERB_REG { + Uint16 all; + struct RCERB_BITS bit; +}; + +// XCERA control register bit definitions: +struct XCERA_BITS { // bit description + Uint16 XCERA0:1; // 0 Receive Channel enable bit + Uint16 XCERA1:1; // 1 Receive Channel enable bit + Uint16 XCERA2:1; // 2 Receive Channel enable bit + Uint16 XCERA3:1; // 3 Receive Channel enable bit + Uint16 XCERA4:1; // 4 Receive Channel enable bit + Uint16 XCERA5:1; // 5 Receive Channel enable bit + Uint16 XCERA6:1; // 6 Receive Channel enable bit + Uint16 XCERA7:1; // 7 Receive Channel enable bit + Uint16 XCERA8:1; // 8 Receive Channel enable bit + Uint16 XCERA9:1; // 9 Receive Channel enable bit + Uint16 XCERA10:1; // 10 Receive Channel enable bit + Uint16 XCERA11:1; // 11 Receive Channel enable bit + Uint16 XCERA12:1; // 12 Receive Channel enable bit + Uint16 XCERA13:1; // 13 Receive Channel enable bit + Uint16 XCERA14:1; // 14 Receive Channel enable bit + Uint16 XCERA15:1; // 15 Receive Channel enable bit +}; + +union XCERA_REG { + Uint16 all; + struct XCERA_BITS bit; +}; + +// XCERB control register bit definitions: +struct XCERB_BITS { // bit description + Uint16 XCERB0:1; // 0 Receive Channel enable bit + Uint16 XCERB1:1; // 1 Receive Channel enable bit + Uint16 XCERB2:1; // 2 Receive Channel enable bit + Uint16 XCERB3:1; // 3 Receive Channel enable bit + Uint16 XCERB4:1; // 4 Receive Channel enable bit + Uint16 XCERB5:1; // 5 Receive Channel enable bit + Uint16 XCERB6:1; // 6 Receive Channel enable bit + Uint16 XCERB7:1; // 7 Receive Channel enable bit + Uint16 XCERB8:1; // 8 Receive Channel enable bit + Uint16 XCERB9:1; // 9 Receive Channel enable bit + Uint16 XCERB10:1; // 10 Receive Channel enable bit + Uint16 XCERB11:1; // 11 Receive Channel enable bit + Uint16 XCERB12:1; // 12 Receive Channel enable bit + Uint16 XCERB13:1; // 13 Receive Channel enable bit + Uint16 XCERB14:1; // 14 Receive Channel enable bit + Uint16 XCERB15:1; // 15 Receive Channel enable bit +}; + +union XCERB_REG { + Uint16 all; + struct XCERB_BITS bit; +}; + +// PCR control register bit definitions: +struct PCR_BITS { // bit description + Uint16 CLKRP:1; // 0 Receive Clock polarity + Uint16 CLKXP:1; // 1 Transmit clock polarity + Uint16 FSRP:1; // 2 Receive Frame synchronization polarity + Uint16 FSXP:1; // 3 Transmit Frame synchronization polarity + Uint16 DR_STAT:1; // 4 DR pin status - reserved for this McBSP + Uint16 DX_STAT:1; // 5 DX pin status - reserved for this McBSP + Uint16 CLKS_STAT:1; // 6 CLKS pin status - reserved for 28x -McBSP + Uint16 SCLKME:1; // 7 Enhanced sample clock mode selection bit. + Uint16 CLKRM:1; // 8 Receiver Clock Mode + Uint16 CLKXM:1; // 9 Transmitter Clock Mode. + Uint16 FSRM:1; // 10 Receive Frame Synchronization Mode + Uint16 FSXM:1; // 11 Transmit Frame Synchronization Mode + Uint16 RIOEN:1; // 12 General Purpose I/O Mode - reserved in this 28x-McBSP + Uint16 XIOEN:1; // 13 General Purpose I/O Mode - reserved in this 28x-McBSP + Uint16 IDEL_EN:1; // 14 reserved in this 28x-McBSP + Uint16 rsvd:1 ; // 15 reserved +}; + +union PCR_REG { + Uint16 all; + struct PCR_BITS bit; +}; + +// RCERC control register bit definitions: +struct RCERC_BITS { // bit description + Uint16 RCEC0:1; // 0 Receive Channel enable bit + Uint16 RCEC1:1; // 1 Receive Channel enable bit + Uint16 RCEC2:1; // 2 Receive Channel enable bit + Uint16 RCEC3:1; // 3 Receive Channel enable bit + Uint16 RCEC4:1; // 4 Receive Channel enable bit + Uint16 RCEC5:1; // 5 Receive Channel enable bit + Uint16 RCEC6:1; // 6 Receive Channel enable bit + Uint16 RCEC7:1; // 7 Receive Channel enable bit + Uint16 RCEC8:1; // 8 Receive Channel enable bit + Uint16 RCEC9:1; // 9 Receive Channel enable bit + Uint16 RCEC10:1; // 10 Receive Channel enable bit + Uint16 RCEC11:1; // 11 Receive Channel enable bit + Uint16 RCEC12:1; // 12 Receive Channel enable bit + Uint16 RCEC13:1; // 13 Receive Channel enable bit + Uint16 RCEC14:1; // 14 Receive Channel enable bit + Uint16 RCEC15:1; // 15 Receive Channel enable bit +}; + +union RCERC_REG { + Uint16 all; + struct RCERC_BITS bit; +}; + +// RCERD control register bit definitions: +struct RCERD_BITS { // bit description + Uint16 RCED0:1; // 0 Receive Channel enable bit + Uint16 RCED1:1; // 1 Receive Channel enable bit + Uint16 RCED2:1; // 2 Receive Channel enable bit + Uint16 RCED3:1; // 3 Receive Channel enable bit + Uint16 RCED4:1; // 4 Receive Channel enable bit + Uint16 RCED5:1; // 5 Receive Channel enable bit + Uint16 RCED6:1; // 6 Receive Channel enable bit + Uint16 RCED7:1; // 7 Receive Channel enable bit + Uint16 RCED8:1; // 8 Receive Channel enable bit + Uint16 RCED9:1; // 9 Receive Channel enable bit + Uint16 RCED10:1; // 10 Receive Channel enable bit + Uint16 RCED11:1; // 11 Receive Channel enable bit + Uint16 RCED12:1; // 12 Receive Channel enable bit + Uint16 RCED13:1; // 13 Receive Channel enable bit + Uint16 RCED14:1; // 14 Receive Channel enable bit + Uint16 RCED15:1; // 15 Receive Channel enable bit +}; + +union RCERD_REG { + Uint16 all; + struct RCERD_BITS bit; +}; + +// XCERC control register bit definitions: +struct XCERC_BITS { // bit description + Uint16 XCERC0:1; // 0 Receive Channel enable bit + Uint16 XCERC1:1; // 1 Receive Channel enable bit + Uint16 XCERC2:1; // 2 Receive Channel enable bit + Uint16 XCERC3:1; // 3 Receive Channel enable bit + Uint16 XCERC4:1; // 4 Receive Channel enable bit + Uint16 XCERC5:1; // 5 Receive Channel enable bit + Uint16 XCERC6:1; // 6 Receive Channel enable bit + Uint16 XCERC7:1; // 7 Receive Channel enable bit + Uint16 XCERC8:1; // 8 Receive Channel enable bit + Uint16 XCERC9:1; // 9 Receive Channel enable bit + Uint16 XCERC10:1; // 10 Receive Channel enable bit + Uint16 XCERC11:1; // 11 Receive Channel enable bit + Uint16 XCERC12:1; // 12 Receive Channel enable bit + Uint16 XCERC13:1; // 13 Receive Channel enable bit + Uint16 XCERC14:1; // 14 Receive Channel enable bit + Uint16 XCERC15:1; // 15 Receive Channel enable bit +}; + +union XCERC_REG { + Uint16 all; + struct XCERC_BITS bit; +}; + +// XCERD control register bit definitions: +struct XCERD_BITS { // bit description + Uint16 XCERD0:1; // 0 Receive Channel enable bit + Uint16 XCERD1:1; // 1 Receive Channel enable bit + Uint16 XCERD2:1; // 2 Receive Channel enable bit + Uint16 XCERD3:1; // 3 Receive Channel enable bit + Uint16 XCERD4:1; // 4 Receive Channel enable bit + Uint16 XCERD5:1; // 5 Receive Channel enable bit + Uint16 XCERD6:1; // 6 Receive Channel enable bit + Uint16 XCERD7:1; // 7 Receive Channel enable bit + Uint16 XCERD8:1; // 8 Receive Channel enable bit + Uint16 XCERD9:1; // 9 Receive Channel enable bit + Uint16 XCERD10:1; // 10 Receive Channel enable bit + Uint16 XCERD11:1; // 11 Receive Channel enable bit + Uint16 XCERD12:1; // 12 Receive Channel enable bit + Uint16 XCERD13:1; // 13 Receive Channel enable bit + Uint16 XCERD14:1; // 14 Receive Channel enable bit + Uint16 XCERD15:1; // 15 Receive Channel enable bit +}; + +union XCERD_REG { + Uint16 all; + struct XCERD_BITS bit; +}; + +// RCERE control register bit definitions: +struct RCERE_BITS { // bit description + Uint16 RCEE0:1; // 0 Receive Channel enable bit + Uint16 RCEE1:1; // 1 Receive Channel enable bit + Uint16 RCEE2:1; // 2 Receive Channel enable bit + Uint16 RCEE3:1; // 3 Receive Channel enable bit + Uint16 RCEE4:1; // 4 Receive Channel enable bit + Uint16 RCEE5:1; // 5 Receive Channel enable bit + Uint16 RCEE6:1; // 6 Receive Channel enable bit + Uint16 RCEE7:1; // 7 Receive Channel enable bit + Uint16 RCEE8:1; // 8 Receive Channel enable bit + Uint16 RCEE9:1; // 9 Receive Channel enable bit + Uint16 RCEE10:1; // 10 Receive Channel enable bit + Uint16 RCEE11:1; // 11 Receive Channel enable bit + Uint16 RCEE12:1; // 12 Receive Channel enable bit + Uint16 RCEE13:1; // 13 Receive Channel enable bit + Uint16 RCEE14:1; // 14 Receive Channel enable bit + Uint16 RCEE15:1; // 15 Receive Channel enable bit +}; + +union RCERE_REG { + Uint16 all; + struct RCERE_BITS bit; +}; + +// RCERF control register bit definitions: +struct RCERF_BITS { // bit description + Uint16 RCEF0:1; // 0 Receive Channel enable bit + Uint16 RCEF1:1; // 1 Receive Channel enable bit + Uint16 RCEF2:1; // 2 Receive Channel enable bit + Uint16 RCEF3:1; // 3 Receive Channel enable bit + Uint16 RCEF4:1; // 4 Receive Channel enable bit + Uint16 RCEF5:1; // 5 Receive Channel enable bit + Uint16 RCEF6:1; // 6 Receive Channel enable bit + Uint16 RCEF7:1; // 7 Receive Channel enable bit + Uint16 RCEF8:1; // 8 Receive Channel enable bit + Uint16 RCEF9:1; // 9 Receive Channel enable bit + Uint16 RCEF10:1; // 10 Receive Channel enable bit + Uint16 RCEF11:1; // 11 Receive Channel enable bit + Uint16 RCEF12:1; // 12 Receive Channel enable bit + Uint16 RCEF13:1; // 13 Receive Channel enable bit + Uint16 RCEF14:1; // 14 Receive Channel enable bit + Uint16 RCEF15:1; // 15 Receive Channel enable bit +}; + +union RCERF_REG { + Uint16 all; + struct RCERF_BITS bit; +}; + +// XCERE control register bit definitions: +struct XCERE_BITS { // bit description + Uint16 XCERE0:1; // 0 Receive Channel enable bit + Uint16 XCERE1:1; // 1 Receive Channel enable bit + Uint16 XCERE2:1; // 2 Receive Channel enable bit + Uint16 XCERE3:1; // 3 Receive Channel enable bit + Uint16 XCERE4:1; // 4 Receive Channel enable bit + Uint16 XCERE5:1; // 5 Receive Channel enable bit + Uint16 XCERE6:1; // 6 Receive Channel enable bit + Uint16 XCERE7:1; // 7 Receive Channel enable bit + Uint16 XCERE8:1; // 8 Receive Channel enable bit + Uint16 XCERE9:1; // 9 Receive Channel enable bit + Uint16 XCERE10:1; // 10 Receive Channel enable bit + Uint16 XCERE11:1; // 11 Receive Channel enable bit + Uint16 XCERE12:1; // 12 Receive Channel enable bit + Uint16 XCERE13:1; // 13 Receive Channel enable bit + Uint16 XCERE14:1; // 14 Receive Channel enable bit + Uint16 XCERE15:1; // 15 Receive Channel enable bit +}; + +union XCERE_REG { + Uint16 all; + struct XCERE_BITS bit; +}; + +// XCERF control register bit definitions: +struct XCERF_BITS { // bit description + Uint16 XCERF0:1; // 0 Receive Channel enable bit + Uint16 XCERF1:1; // 1 Receive Channel enable bit + Uint16 XCERF2:1; // 2 Receive Channel enable bit + Uint16 XCERF3:1; // 3 Receive Channel enable bit + Uint16 XCERF4:1; // 4 Receive Channel enable bit + Uint16 XCERF5:1; // 5 Receive Channel enable bit + Uint16 XCERF6:1; // 6 Receive Channel enable bit + Uint16 XCERF7:1; // 7 Receive Channel enable bit + Uint16 XCERF8:1; // 8 Receive Channel enable bit + Uint16 XCERF9:1; // 9 Receive Channel enable bit + Uint16 XCERF10:1; // 10 Receive Channel enable bit + Uint16 XCERF11:1; // 11 Receive Channel enable bit + Uint16 XCERF12:1; // 12 Receive Channel enable bit + Uint16 XCERF13:1; // 13 Receive Channel enable bit + Uint16 XCERF14:1; // 14 Receive Channel enable bit + Uint16 XCERF15:1; // 15 Receive Channel enable bit +}; + +union XCERF_REG { + Uint16 all; + struct XCERF_BITS bit; +}; + +// RCERG control register bit definitions: +struct RCERG_BITS { // bit description + Uint16 RCEG0:1; // 0 Receive Channel enable bit + Uint16 RCEG1:1; // 1 Receive Channel enable bit + Uint16 RCEG2:1; // 2 Receive Channel enable bit + Uint16 RCEG3:1; // 3 Receive Channel enable bit + Uint16 RCEG4:1; // 4 Receive Channel enable bit + Uint16 RCEG5:1; // 5 Receive Channel enable bit + Uint16 RCEG6:1; // 6 Receive Channel enable bit + Uint16 RCEG7:1; // 7 Receive Channel enable bit + Uint16 RCEG8:1; // 8 Receive Channel enable bit + Uint16 RCEG9:1; // 9 Receive Channel enable bit + Uint16 RCEG10:1; // 10 Receive Channel enable bit + Uint16 RCEG11:1; // 11 Receive Channel enable bit + Uint16 RCEG12:1; // 12 Receive Channel enable bit + Uint16 RCEG13:1; // 13 Receive Channel enable bit + Uint16 RCEG14:1; // 14 Receive Channel enable bit + Uint16 RCEG15:1; // 15 Receive Channel enable bit +}; + +union RCERG_REG { + Uint16 all; + struct RCERG_BITS bit; +}; + +// RCERH control register bit definitions: +struct RCERH_BITS { // bit description + Uint16 RCEH0:1; // 0 Receive Channel enable bit + Uint16 RCEH1:1; // 1 Receive Channel enable bit + Uint16 RCEH2:1; // 2 Receive Channel enable bit + Uint16 RCEH3:1; // 3 Receive Channel enable bit + Uint16 RCEH4:1; // 4 Receive Channel enable bit + Uint16 RCEH5:1; // 5 Receive Channel enable bit + Uint16 RCEH6:1; // 6 Receive Channel enable bit + Uint16 RCEH7:1; // 7 Receive Channel enable bit + Uint16 RCEH8:1; // 8 Receive Channel enable bit + Uint16 RCEH9:1; // 9 Receive Channel enable bit + Uint16 RCEH10:1; // 10 Receive Channel enable bit + Uint16 RCEH11:1; // 11 Receive Channel enable bit + Uint16 RCEH12:1; // 12 Receive Channel enable bit + Uint16 RCEH13:1; // 13 Receive Channel enable bit + Uint16 RCEH14:1; // 14 Receive Channel enable bit + Uint16 RCEH15:1; // 15 Receive Channel enable bit +}; + +union RCERH_REG { + Uint16 all; + struct RCERH_BITS bit; +}; + +// XCERG control register bit definitions: +struct XCERG_BITS { // bit description + Uint16 XCERG0:1; // 0 Receive Channel enable bit + Uint16 XCERG1:1; // 1 Receive Channel enable bit + Uint16 XCERG2:1; // 2 Receive Channel enable bit + Uint16 XCERG3:1; // 3 Receive Channel enable bit + Uint16 XCERG4:1; // 4 Receive Channel enable bit + Uint16 XCERG5:1; // 5 Receive Channel enable bit + Uint16 XCERG6:1; // 6 Receive Channel enable bit + Uint16 XCERG7:1; // 7 Receive Channel enable bit + Uint16 XCERG8:1; // 8 Receive Channel enable bit + Uint16 XCERG9:1; // 9 Receive Channel enable bit + Uint16 XCERG10:1; // 10 Receive Channel enable bit + Uint16 XCERG11:1; // 11 Receive Channel enable bit + Uint16 XCERG12:1; // 12 Receive Channel enable bit + Uint16 XCERG13:1; // 13 Receive Channel enable bit + Uint16 XCERG14:1; // 14 Receive Channel enable bit + Uint16 XCERG15:1; // 15 Receive Channel enable bit +}; + +union XCERG_REG { + Uint16 all; + struct XCERG_BITS bit; +}; + +// XCERH control register bit definitions: +struct XCERH_BITS { // bit description + Uint16 XCEH0:1; // 0 Receive Channel enable bit + Uint16 XCEH1:1; // 1 Receive Channel enable bit + Uint16 XCEH2:1; // 2 Receive Channel enable bit + Uint16 XCEH3:1; // 3 Receive Channel enable bit + Uint16 XCEH4:1; // 4 Receive Channel enable bit + Uint16 XCEH5:1; // 5 Receive Channel enable bit + Uint16 XCEH6:1; // 6 Receive Channel enable bit + Uint16 XCEH7:1; // 7 Receive Channel enable bit + Uint16 XCEH8:1; // 8 Receive Channel enable bit + Uint16 XCEH9:1; // 9 Receive Channel enable bit + Uint16 XCEH10:1; // 10 Receive Channel enable bit + Uint16 XCEH11:1; // 11 Receive Channel enable bit + Uint16 XCEH12:1; // 12 Receive Channel enable bit + Uint16 XCEH13:1; // 13 Receive Channel enable bit + Uint16 XCEH14:1; // 14 Receive Channel enable bit + Uint16 XCEH15:1; // 15 Receive Channel enable bit +}; + +union XCERH_REG { + Uint16 all; + struct XCERH_BITS bit; +}; + +// McBSP FIFO Transmit register bit definitions: +struct MFFTX_BITS { // bit description + Uint16 TXFFIL:5; // 4:0 Interrupt level + Uint16 TXFFIENA:1; // 5 Interrupt enable + Uint16 TXFFINT_CLEAR:1; // 6 Clear INT flag + Uint16 TXFFINT_FLAG:1; // 7 INT flag + Uint16 TXFFST:5; // 12:8 FIFO status + Uint16 TXFIFO_RESET:1; // 13 FIFO reset + Uint16 MFFENA:1; // 14 Enhancement enable + Uint16 rsvd:1; // 15 reserved +}; + +union MFFTX_REG { + Uint16 all; + struct MFFTX_BITS bit; +}; + +// McBSP FIFO recieve register bit definitions: +struct MFFRX_BITS { // bits description + Uint16 RXFFIL:5; // 4:0 Interrupt level + Uint16 RXFFIENA:1; // 5 Interrupt enable + Uint16 RXFFINT_CLEAR:1; // 6 Clear INT flag + Uint16 RXFFINT_FLAG:1; // 7 INT flag + Uint16 RXFFST:5; // 12:8 FIFO status + Uint16 RXFIFO_RESET:1; // 13 FIFO reset + Uint16 RXFFOVF_CLEAR:1; // 14 Clear overflow + Uint16 RXFFOVF_FLAG:1; // 15 FIFO overflow +}; + +union MFFRX_REG { + Uint16 all; + struct MFFRX_BITS bit; +}; + +// McBSP FIFO control register bit definitions: +struct MFFCT_BITS { // bits description + Uint16 FFTXTXDLY:8; // 7:0 FIFO transmit delay + Uint16 rsvd:7; // 15:7 reserved + Uint16 IACKM:1; // 15 is IACK mode enable bit +}; + +union MFFCT_REG { + Uint16 all; + struct MFFCT_BITS bit; +}; + +// McBSP FIFO INTERRUPT control register bit definitions: +struct MFFINT_BITS { // bits description + Uint16 XINT:1; // 0 XINT interrupt enable + Uint16 XEVTA:1; // 1 XEVTA interrupt enable + Uint16 RINT:1; // 2 RINT interrupt enable + Uint16 REVTA:1; // 3 REVTA interrupt enable + Uint16 rsvd:12; // 15:4 reserved +}; + +union MFFINT_REG { + Uint16 all; + struct MFFINT_BITS bit; +}; + +// McBSP FIFO INTERRUPT status register bit definitions: +struct MFFST_BITS { // bits description + Uint16 EOBX:1; // 0 EOBX flag + Uint16 FSX:1; // 1 FSX flag + Uint16 EOBR:1; // 2 EOBR flag + Uint16 FSR:1; // 3 FSR flag + Uint16 rsvd:12; // 15:4 reserved +}; + +union MFFST_REG { + Uint16 all; + struct MFFST_BITS bit; +}; + + +//--------------------------------------------------------------------------- +// McBSP Register File: +// +struct MCBSP_REGS { + union DRR2_REG DRR2; // 0x7800, MCBSP Data receive register bits 31-16 + union DRR1_REG DRR1; // 0x7801, MCBSP Data receive register bits 15-0 + union DXR2_REG DXR2; // 0x7802, MCBSP Data transmit register bits 31-16 + union DXR1_REG DXR1; // 0x7803, MCBSP Data transmit register bits 15-0 + union SPCR2_REG SPCR2; // 0x7804, MCBSP control register bits 31-16 + union SPCR1_REG SPCR1; // 0x7805, MCBSP control register bits 15-0 + union RCR2_REG RCR2; // 0x7806, MCBSP receive control register bits 31-16 + union RCR1_REG RCR1; // 0x7807, MCBSP receive control register bits 15-0 + union XCR2_REG XCR2; // 0x7808, MCBSP transmit control register bits 31-16 + union XCR1_REG XCR1; // 0x7809, MCBSP transmit control register bits 15-0 + union SRGR2_REG SRGR2; // 0x7810, MCBSP sample rate gen register bits 31-16 + union SRGR1_REG SRGR1; // 0x7811, MCBSP sample rate gen register bits 15-0 + union MCR2_REG MCR2; // 0x7812, MCBSP multichannel register bits 31-16 + union MCR1_REG MCR1; // 0x7813, MCBSP multichannel register bits 15-0 + union RCERA_REG RCERA; // 0x7814, MCBSP Receive channel enable partition A + union RCERB_REG RCERB; // 0x7815, MCBSP Receive channel enable partition B + union XCERA_REG XCERA; // 0x7816, MCBSP Transmit channel enable partition A + union XCERB_REG XCERB; // 0x7817, MCBSP Transmit channel enable partition B + union PCR_REG PCR; // 0x7818, MCBSP Pin control register bits 15-0 + union RCERC_REG RCERC; // 0x7819, MCBSP Receive channel enable partition C + union RCERD_REG RCERD; // 0x7820, MCBSP Receive channel enable partition D + union XCERC_REG XCERC; // 0x7821, MCBSP Transmit channel enable partition C + union XCERD_REG XCERD; // 0x7823, MCBSP Transmit channel enable partition D + union RCERE_REG RCERE; // 0x7824, MCBSP Receive channel enable partition E + union RCERF_REG RCERF; // 0x7825, MCBSP Receive channel enable partition F + union XCERE_REG XCERE; // 0x7826, MCBSP Transmit channel enable partition E + union XCERF_REG XCERF; // 0x7827, MCBSP Transmit channel enable partition F + union RCERG_REG RCERG; // 0x7828, MCBSP Receive channel enable partition G + union RCERH_REG RCERH; // 0x7829, MCBSP Receive channel enable partition H + union XCERG_REG XCERG; // 0x7830, MCBSP Transmit channel enable partition G + union XCERH_REG XCERH; // 0x7831, MCBSP Transmit channel enable partition H + Uint16 rsvd1; // 0x7832, reserved + union MFFTX_REG MFFTX; // 0x7833, MCBSP Transmit FIFO register bits + union MFFRX_REG MFFRX; // 0x7834, MCBSP Receive FIFO register bits + union MFFCT_REG MFFCT; // 0x7835, MCBSP FIFO control register bits + union MFFINT_REG MFFINT; // 0x7836, MCBSP Interrupt register bits + union MFFST_REG MFFST; // 0x7837, MCBSP Status register bits +}; + +//--------------------------------------------------------------------------- +// McBSP External References & Function Declarations: +// +extern struct MCBSP_REGS McbspaRegs; + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_MCBSP_H definition + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_PieCtrl.h b/Inu/main_matlab/device_support/include/DSP281x_PieCtrl.h new file mode 100644 index 0000000..20698fb --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_PieCtrl.h @@ -0,0 +1,154 @@ +// TI File $Revision: /main/2 $ +// Checkin $Date: April 28, 2005 14:57:22 $ +//########################################################################### +// +// FILE: DSP281x_PieCtrl.h +// +// TITLE: DSP281x Device PIE Control Register Definitions. +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + + +#ifndef DSP281x_PIE_CTRL_H +#define DSP281x_PIE_CTRL_H + +#ifdef __cplusplus +extern "C" { +#endif + +//--------------------------------------------------------------------------- +// PIE Control Register Bit Definitions: +// +// PIECTRL: Register bit definitions: +struct PIECTRL_BITS { // bits description + Uint16 ENPIE:1; // 0 Enable PIE block + Uint16 PIEVECT:15; // 15:1 Fetched vector address +}; + +union PIECTRL_REG { + Uint16 all; + struct PIECTRL_BITS bit; +}; + +// PIEIER: Register bit definitions: +struct PIEIER_BITS { // bits description + Uint16 INTx1:1; // 0 INTx.1 + Uint16 INTx2:1; // 1 INTx.2 + Uint16 INTx3:1; // 2 INTx.3 + Uint16 INTx4:1; // 3 INTx.4 + Uint16 INTx5:1; // 4 INTx.5 + Uint16 INTx6:1; // 5 INTx.6 + Uint16 INTx7:1; // 6 INTx.7 + Uint16 INTx8:1; // 7 INTx.8 + Uint16 rsvd:8; // 15:8 reserved +}; + +union PIEIER_REG { + Uint16 all; + struct PIEIER_BITS bit; +}; + +// PIEIFR: Register bit definitions: +struct PIEIFR_BITS { // bits description + Uint16 INTx1:1; // 0 INTx.1 + Uint16 INTx2:1; // 1 INTx.2 + Uint16 INTx3:1; // 2 INTx.3 + Uint16 INTx4:1; // 3 INTx.4 + Uint16 INTx5:1; // 4 INTx.5 + Uint16 INTx6:1; // 5 INTx.6 + Uint16 INTx7:1; // 6 INTx.7 + Uint16 INTx8:1; // 7 INTx.8 + Uint16 rsvd:8; // 15:8 reserved +}; + +union PIEIFR_REG { + Uint16 all; + struct PIEIFR_BITS bit; +}; + +// PIEACK: Register bit definitions: +struct PIEACK_BITS { // bits description + Uint16 ACK1:1; // 0 Acknowledge PIE interrupt group 1 + Uint16 ACK2:1; // 1 Acknowledge PIE interrupt group 2 + Uint16 ACK3:1; // 2 Acknowledge PIE interrupt group 3 + Uint16 ACK4:1; // 3 Acknowledge PIE interrupt group 4 + Uint16 ACK5:1; // 4 Acknowledge PIE interrupt group 5 + Uint16 ACK6:1; // 5 Acknowledge PIE interrupt group 6 + Uint16 ACK7:1; // 6 Acknowledge PIE interrupt group 7 + Uint16 ACK8:1; // 7 Acknowledge PIE interrupt group 8 + Uint16 ACK9:1; // 8 Acknowledge PIE interrupt group 9 + Uint16 ACK10:1; // 9 Acknowledge PIE interrupt group 10 + Uint16 ACK11:1; // 10 Acknowledge PIE interrupt group 11 + Uint16 ACK12:1; // 11 Acknowledge PIE interrupt group 12 + Uint16 rsvd:4; // 15:12 reserved +}; + +union PIEACK_REG { + Uint16 all; + struct PIEACK_BITS bit; +}; + +//--------------------------------------------------------------------------- +// PIE Control Register File: +// +struct PIE_CTRL_REGS { + union PIECTRL_REG PIECRTL; // PIE control register + union PIEACK_REG PIEACK; // PIE acknowledge + union PIEIER_REG PIEIER1; // PIE INT1 IER register + union PIEIFR_REG PIEIFR1; // PIE INT1 IFR register + union PIEIER_REG PIEIER2; // PIE INT2 IER register + union PIEIFR_REG PIEIFR2; // PIE INT2 IFR register + union PIEIER_REG PIEIER3; // PIE INT3 IER register + union PIEIFR_REG PIEIFR3; // PIE INT3 IFR register + union PIEIER_REG PIEIER4; // PIE INT4 IER register + union PIEIFR_REG PIEIFR4; // PIE INT4 IFR register + union PIEIER_REG PIEIER5; // PIE INT5 IER register + union PIEIFR_REG PIEIFR5; // PIE INT5 IFR register + union PIEIER_REG PIEIER6; // PIE INT6 IER register + union PIEIFR_REG PIEIFR6; // PIE INT6 IFR register + union PIEIER_REG PIEIER7; // PIE INT7 IER register + union PIEIFR_REG PIEIFR7; // PIE INT7 IFR register + union PIEIER_REG PIEIER8; // PIE INT8 IER register + union PIEIFR_REG PIEIFR8; // PIE INT8 IFR register + union PIEIER_REG PIEIER9; // PIE INT9 IER register + union PIEIFR_REG PIEIFR9; // PIE INT9 IFR register + union PIEIER_REG PIEIER10; // PIE INT10 IER register + union PIEIFR_REG PIEIFR10; // PIE INT10 IFR register + union PIEIER_REG PIEIER11; // PIE INT11 IER register + union PIEIFR_REG PIEIFR11; // PIE INT11 IFR register + union PIEIER_REG PIEIER12; // PIE INT12 IER register + union PIEIFR_REG PIEIFR12; // PIE INT12 IFR register +}; + +#define PIEACK_GROUP1 0x0001; +#define PIEACK_GROUP2 0x0002; +#define PIEACK_GROUP3 0x0004; +#define PIEACK_GROUP4 0x0008; +#define PIEACK_GROUP5 0x0010; +#define PIEACK_GROUP6 0x0020; +#define PIEACK_GROUP7 0x0040; +#define PIEACK_GROUP8 0x0080; +#define PIEACK_GROUP9 0x0100; +#define PIEACK_GROUP10 0x0200; +#define PIEACK_GROUP11 0x0400; +#define PIEACK_GROUP12 0x0800; + +//--------------------------------------------------------------------------- +// PIE Control Registers External References & Function Declarations: +// +extern struct PIE_CTRL_REGS PieCtrlRegs; + + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_PIE_CTRL_H definition + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_PieVect.h b/Inu/main_matlab/device_support/include/DSP281x_PieVect.h new file mode 100644 index 0000000..227c4f0 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_PieVect.h @@ -0,0 +1,210 @@ +// TI File $Revision: /main/2 $ +// Checkin $Date: April 28, 2005 14:57:21 $ +//########################################################################### +// +// FILE: DSP281x_PieVect.h +// +// TITLE: DSP281x Devices PIE Vector Table Definitions. +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_PIE_VECT_H +#define DSP281x_PIE_VECT_H + +#ifdef __cplusplus +extern "C" { +#endif + + +//--------------------------------------------------------------------------- +// PIE Interrupt Vector Table Definition: +// +// Create a user type called PINT (pointer to interrupt): + +typedef interrupt void(*PINT)(void); + +// Define Vector Table: +struct PIE_VECT_TABLE { + +// Reset is never fetched from this table. +// It will always be fetched from 0x3FFFC0 in either +// boot ROM or XINTF Zone 7 depending on the state of +// the XMP/MC input signal. On the F2810 it is always +// fetched from boot ROM. + + PINT PIE1_RESERVED; + PINT PIE2_RESERVED; + PINT PIE3_RESERVED; + PINT PIE4_RESERVED; + PINT PIE5_RESERVED; + PINT PIE6_RESERVED; + PINT PIE7_RESERVED; + PINT PIE8_RESERVED; + PINT PIE9_RESERVED; + PINT PIE10_RESERVED; + PINT PIE11_RESERVED; + PINT PIE12_RESERVED; + PINT PIE13_RESERVED; + +// Non-Peripheral Interrupts: + PINT XINT13; // XINT13 + PINT TINT2; // CPU-Timer2 + PINT DATALOG; // Datalogging interrupt + PINT RTOSINT; // RTOS interrupt + PINT EMUINT; // Emulation interrupt + PINT XNMI; // Non-maskable interrupt + PINT ILLEGAL; // Illegal operation TRAP + PINT USER1; // User Defined trap 1 + PINT USER2; // User Defined trap 2 + PINT USER3; // User Defined trap 3 + PINT USER4; // User Defined trap 4 + PINT USER5; // User Defined trap 5 + PINT USER6; // User Defined trap 6 + PINT USER7; // User Defined trap 7 + PINT USER8; // User Defined trap 8 + PINT USER9; // User Defined trap 9 + PINT USER10; // User Defined trap 10 + PINT USER11; // User Defined trap 11 + PINT USER12; // User Defined trap 12 + +// Group 1 PIE Peripheral Vectors: + PINT PDPINTA; // EV-A + PINT PDPINTB; // EV-B + PINT rsvd1_3; + PINT XINT1; + PINT XINT2; + PINT ADCINT; // ADC + PINT TINT0; // Timer 0 + PINT WAKEINT; // WD + +// Group 2 PIE Peripheral Vectors: + PINT CMP1INT; // EV-A + PINT CMP2INT; // EV-A + PINT CMP3INT; // EV-A + PINT T1PINT; // EV-A + PINT T1CINT; // EV-A + PINT T1UFINT; // EV-A + PINT T1OFINT; // EV-A + PINT rsvd2_8; + +// Group 3 PIE Peripheral Vectors: + PINT T2PINT; // EV-A + PINT T2CINT; // EV-A + PINT T2UFINT; // EV-A + PINT T2OFINT; // EV-A + PINT CAPINT1; // EV-A + PINT CAPINT2; // EV-A + PINT CAPINT3; // EV-A + PINT rsvd3_8; + +// Group 4 PIE Peripheral Vectors: + PINT CMP4INT; // EV-B + PINT CMP5INT; // EV-B + PINT CMP6INT; // EV-B + PINT T3PINT; // EV-B + PINT T3CINT; // EV-B + PINT T3UFINT; // EV-B + PINT T3OFINT; // EV-B + PINT rsvd4_8; + +// Group 5 PIE Peripheral Vectors: + PINT T4PINT; // EV-B + PINT T4CINT; // EV-B + PINT T4UFINT; // EV-B + PINT T4OFINT; // EV-B + PINT CAPINT4; // EV-B + PINT CAPINT5; // EV-B + PINT CAPINT6; // EV-B + PINT rsvd5_8; + +// Group 6 PIE Peripheral Vectors: + PINT SPIRXINTA; // SPI-A + PINT SPITXINTA; // SPI-A + PINT rsvd6_3; + PINT rsvd6_4; + PINT MRINTA; // McBSP-A + PINT MXINTA; // McBSP-A + PINT rsvd6_7; + PINT rsvd6_8; + +// Group 7 PIE Peripheral Vectors: + PINT rsvd7_1; + PINT rsvd7_2; + PINT rsvd7_3; + PINT rsvd7_4; + PINT rsvd7_5; + PINT rsvd7_6; + PINT rsvd7_7; + PINT rsvd7_8; + +// Group 8 PIE Peripheral Vectors: + PINT rsvd8_1; + PINT rsvd8_2; + PINT rsvd8_3; + PINT rsvd8_4; + PINT rsvd8_5; + PINT rsvd8_6; + PINT rsvd8_7; + PINT rsvd8_8; + +// Group 9 PIE Peripheral Vectors: + PINT RXAINT; // SCI-A + PINT TXAINT; // SCI-A + PINT RXBINT; // SCI-B + PINT TXBINT; // SCI-B + PINT ECAN0INTA; // eCAN + PINT ECAN1INTA; // eCAN + PINT rsvd9_7; + PINT rsvd9_8; + +// Group 10 PIE Peripheral Vectors: + PINT rsvd10_1; + PINT rsvd10_2; + PINT rsvd10_3; + PINT rsvd10_4; + PINT rsvd10_5; + PINT rsvd10_6; + PINT rsvd10_7; + PINT rsvd10_8; + +// Group 11 PIE Peripheral Vectors: + PINT rsvd11_1; + PINT rsvd11_2; + PINT rsvd11_3; + PINT rsvd11_4; + PINT rsvd11_5; + PINT rsvd11_6; + PINT rsvd11_7; + PINT rsvd11_8; + +// Group 12 PIE Peripheral Vectors: + PINT rsvd12_1; + PINT rsvd12_2; + PINT rsvd12_3; + PINT rsvd12_4; + PINT rsvd12_5; + PINT rsvd12_6; + PINT rsvd12_7; + PINT rsvd12_8; +}; + +//--------------------------------------------------------------------------- +// PIE Interrupt Vector Table External References & Function Declarations: +// +extern struct PIE_VECT_TABLE PieVectTable; + + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_PIE_VECT_H definition + +//=========================================================================== +// No more. +//=========================================================================== + diff --git a/Inu/main_matlab/device_support/include/DSP281x_SWPrioritizedIsrLevels.h b/Inu/main_matlab/device_support/include/DSP281x_SWPrioritizedIsrLevels.h new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_SWPrioritizedIsrLevels.h @@ -0,0 +1 @@ + diff --git a/Inu/main_matlab/device_support/include/DSP281x_Sci.h b/Inu/main_matlab/device_support/include/DSP281x_Sci.h new file mode 100644 index 0000000..9fd8f02 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_Sci.h @@ -0,0 +1,234 @@ +// TI File $Revision: /main/2 $ +// Checkin $Date: April 28, 2005 14:57:19 $ +//########################################################################### +// +// FILE: DSP281x_Sci.h +// +// TITLE: DSP281x Device SCI Register Definitions. +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_SCI_H +#define DSP281x_SCI_H + + +#ifdef __cplusplus +extern "C" { +#endif + +//--------------------------------------------------------------------------- +// SCI Individual Register Bit Definitions + +//---------------------------------------------------------- +// SCICCR communication control register bit definitions: +// + +struct SCICCR_BITS { // bit description + Uint16 SCICHAR:3; // 2:0 Character length control + Uint16 ADDRIDLE_MODE:1; // 3 ADDR/IDLE Mode control + Uint16 LOOPBKENA:1; // 4 Loop Back enable + Uint16 PARITYENA:1; // 5 Parity enable + Uint16 PARITY:1; // 6 Even or Odd Parity + Uint16 STOPBITS:1; // 7 Number of Stop Bits + Uint16 rsvd1:8; // 15:8 reserved +}; + + +union SCICCR_REG { + Uint16 all; + struct SCICCR_BITS bit; +}; + +//------------------------------------------- +// SCICTL1 control register 1 bit definitions: +// + +struct SCICTL1_BITS { // bit description + Uint16 RXENA:1; // 0 SCI receiver enable + Uint16 TXENA:1; // 1 SCI transmitter enable + Uint16 SLEEP:1; // 2 SCI sleep + Uint16 TXWAKE:1; // 3 Transmitter wakeup method + Uint16 rsvd:1; // 4 reserved + Uint16 SWRESET:1; // 5 Software reset + Uint16 RXERRINTENA:1; // 6 Recieve interrupt enable + Uint16 rsvd1:9; // 15:7 reserved + +}; + +union SCICTL1_REG { + Uint16 all; + struct SCICTL1_BITS bit; +}; + +//--------------------------------------------- +// SCICTL2 control register 2 bit definitions: +// + +struct SCICTL2_BITS { // bit description + Uint16 TXINTENA:1; // 0 Transmit interrupt enable + Uint16 RXBKINTENA:1; // 1 Receiver-buffer break enable + Uint16 rsvd:4; // 5:2 reserved + Uint16 TXEMPTY:1; // 6 Transmitter empty flag + Uint16 TXRDY:1; // 7 Transmitter ready flag + Uint16 rsvd1:8; // 15:8 reserved + +}; + +union SCICTL2_REG { + Uint16 all; + struct SCICTL2_BITS bit; +}; + +//--------------------------------------------------- +// SCIRXST Receiver status register bit definitions: +// + +struct SCIRXST_BITS { // bit description + Uint16 rsvd:1; // 0 reserved + Uint16 RXWAKE:1; // 1 Receiver wakeup detect flag + Uint16 PE:1; // 2 Parity error flag + Uint16 OE:1; // 3 Overrun error flag + Uint16 FE:1; // 4 Framing error flag + Uint16 BRKDT:1; // 5 Break-detect flag + Uint16 RXRDY:1; // 6 Receiver ready flag + Uint16 RXERROR:1; // 7 Receiver error flag + +}; + +union SCIRXST_REG { + Uint16 all; + struct SCIRXST_BITS bit; +}; + +//---------------------------------------------------- +// SCIRXBUF Receiver Data Buffer with FIFO bit definitions: +// + +struct SCIRXBUF_BITS { // bits description + Uint16 RXDT:8; // 7:0 Receive word + Uint16 rsvd:6; // 13:8 reserved + Uint16 SCIFFPE:1; // 14 SCI PE error in FIFO mode + Uint16 SCIFFFE:1; // 15 SCI FE error in FIFO mode +}; + +union SCIRXBUF_REG { + Uint16 all; + struct SCIRXBUF_BITS bit; +}; + +//-------------------------------------------------- +// SCIPRI Priority control register bit definitions: +// +// + +struct SCIPRI_BITS { // bit description + Uint16 rsvd:3; // 2:0 reserved + Uint16 FREE:1; // 3 Free emulation suspend mode + Uint16 SOFT:1; // 4 Soft emulation suspend mode + Uint16 rsvd1:3; // 7:5 reserved +}; + +union SCIPRI_REG { + Uint16 all; + struct SCIPRI_BITS bit; +}; + +//------------------------------------------------- +// SCI FIFO Transmit register bit definitions: +// +// + +struct SCIFFTX_BITS { // bit description + Uint16 TXFFILIL:5; // 4:0 Interrupt level + Uint16 TXFFIENA:1; // 5 Interrupt enable + Uint16 TXINTCLR:1; // 6 Clear INT flag + Uint16 TXFFINT:1; // 7 INT flag + Uint16 TXFFST:5; // 12:8 FIFO status + Uint16 TXFIFOXRESET:1; // 13 FIFO reset + Uint16 SCIFFENA:1; // 14 Enhancement enable + Uint16 SCIRST:1; // 15 SCI reset rx/tx channels + +}; + +union SCIFFTX_REG { + Uint16 all; + struct SCIFFTX_BITS bit; +}; + +//------------------------------------------------ +// SCI FIFO recieve register bit definitions: +// +// + +struct SCIFFRX_BITS { // bits description + Uint16 RXFFIL:5; // 4:0 Interrupt level + Uint16 RXFFIENA:1; // 5 Interrupt enable + Uint16 RXFFINTCLR:1; // 6 Clear INT flag + Uint16 RXFFINT:1; // 7 INT flag + Uint16 RXFIFST:5; // 12:8 FIFO status + Uint16 RXFIFORESET:1; // 13 FIFO reset + Uint16 RXFFOVRCLR:1; // 14 Clear overflow + Uint16 RXFFOVF:1; // 15 FIFO overflow + +}; + +union SCIFFRX_REG { + Uint16 all; + struct SCIFFRX_BITS bit; +}; + +// SCI FIFO control register bit definitions: +struct SCIFFCT_BITS { // bits description + Uint16 FFTXDLY:8; // 7:0 FIFO transmit delay + Uint16 rsvd:5; // 12:8 reserved + Uint16 CDC:1; // 13 Auto baud mode enable + Uint16 ABDCLR:1; // 14 Auto baud clear + Uint16 ABD:1; // 15 Auto baud detect +}; + +union SCIFFCT_REG { + Uint16 all; + struct SCIFFCT_BITS bit; +}; + +//--------------------------------------------------------------------------- +// SCI Register File: +// +struct SCI_REGS { + union SCICCR_REG SCICCR; // Communications control register + union SCICTL1_REG SCICTL1; // Control register 1 + Uint16 SCIHBAUD; // Baud rate (high) register + Uint16 SCILBAUD; // Baud rate (low) register + union SCICTL2_REG SCICTL2; // Control register 2 + union SCIRXST_REG SCIRXST; // Recieve status register + Uint16 SCIRXEMU; // Recieve emulation buffer register + union SCIRXBUF_REG SCIRXBUF; // Recieve data buffer + Uint16 rsvd1; // reserved + Uint16 SCITXBUF; // Transmit data buffer + union SCIFFTX_REG SCIFFTX; // FIFO transmit register + union SCIFFRX_REG SCIFFRX; // FIFO recieve register + union SCIFFCT_REG SCIFFCT; // FIFO control register + Uint16 rsvd2; // reserved + Uint16 rsvd3; // reserved + union SCIPRI_REG SCIPRI; // FIFO Priority control +}; + +//--------------------------------------------------------------------------- +// SCI External References & Function Declarations: +// +extern struct SCI_REGS SciaRegs; +extern struct SCI_REGS ScibRegs; + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_SCI_H definition + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_Spi.h b/Inu/main_matlab/device_support/include/DSP281x_Spi.h new file mode 100644 index 0000000..976188b --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_Spi.h @@ -0,0 +1,184 @@ +// TI File $Revision: /main/2 $ +// Checkin $Date: April 28, 2005 14:57:16 $ +//########################################################################### +// +// FILE: DSP281x_Spi.h +// +// TITLE: DSP281x Device SPI Register Definitions. +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_SPI_H +#define DSP281x_SPI_H + + +#ifdef __cplusplus +extern "C" { +#endif + + +//--------------------------------------------------------------------------- +// SPI Individual Register Bit Definitions: +// +// SPI FIFO Transmit register bit definitions: +struct SPIFFTX_BITS { // bit description + Uint16 TXFFIL:5; // 4:0 Interrupt level + Uint16 TXFFIENA:1; // 5 Interrupt enable + Uint16 TXFFINTCLR:1; // 6 Clear INT flag + Uint16 TXFFINT:1; // 7 INT flag + Uint16 TXFFST:5; // 12:8 FIFO status + Uint16 TXFIFO:1; // 13 FIFO reset + Uint16 SPIFFENA:1; // 14 Enhancement enable + Uint16 SPIRST:1; // 15 Reset SPI +}; + +union SPIFFTX_REG { + Uint16 all; + struct SPIFFTX_BITS bit; +}; + +//-------------------------------------------- +// SPI FIFO recieve register bit definitions: +// +// +struct SPIFFRX_BITS { // bits description + Uint16 RXFFIL:5; // 4:0 Interrupt level + Uint16 RXFFIENA:1; // 5 Interrupt enable + Uint16 RXFFINTCLR:1; // 6 Clear INT flag + Uint16 RXFFINT:1; // 7 INT flag + Uint16 RXFFST:5; // 12:8 FIFO status + Uint16 RXFIFORESET:1; // 13 FIFO reset + Uint16 RXFFOVFCLR:1; // 14 Clear overflow + Uint16 RXFFOVF:1; // 15 FIFO overflow + +}; + +union SPIFFRX_REG { + Uint16 all; + struct SPIFFRX_BITS bit; +}; + +//-------------------------------------------- +// SPI FIFO control register bit definitions: +// +// +struct SPIFFCT_BITS { // bits description + Uint16 TXDLY:8; // 7:0 FIFO transmit delay + Uint16 rsvd:8; // 15:8 reserved +}; + +union SPIFFCT_REG { + Uint16 all; + struct SPIFFCT_BITS bit; +}; + +//--------------------------------------------- +// SPI configuration register bit definitions: +// +// +struct SPICCR_BITS { // bits description + Uint16 SPICHAR:4; // 3:0 Character length control + Uint16 SPILBK:1; // 4 Loop-back enable/disable + Uint16 rsvd1:1; // 5 reserved + Uint16 CLKPOLARITY:1; // 6 Clock polarity + Uint16 SPISWRESET:1; // 7 SPI SW Reset + Uint16 rsvd2:8; // 15:8 reserved +}; + +union SPICCR_REG { + Uint16 all; + struct SPICCR_BITS bit; +}; + +//------------------------------------------------- +// SPI operation control register bit definitions: +// +// +struct SPICTL_BITS { // bits description + Uint16 SPIINTENA:1; // 0 Interrupt enable + Uint16 TALK:1; // 1 Master/Slave transmit enable + Uint16 MASTER_SLAVE:1; // 2 Network control mode + Uint16 CLK_PHASE:1; // 3 Clock phase select + Uint16 OVERRUNINTENA:1; // 4 Overrun interrupt enable + Uint16 rsvd:11; // 15:5 reserved +}; + +union SPICTL_REG { + Uint16 all; + struct SPICTL_BITS bit; +}; + +//-------------------------------------- +// SPI status register bit definitions: +// +// +struct SPISTS_BITS { // bits description + Uint16 rsvd1:5; // 4:0 reserved + Uint16 BUFFULL_FLAG:1; // 5 SPI transmit buffer full flag + Uint16 INT_FLAG:1; // 6 SPI interrupt flag + Uint16 OVERRUN_FLAG:1; // 7 SPI reciever overrun flag + Uint16 rsvd2:8; // 15:8 reserved +}; + +union SPISTS_REG { + Uint16 all; + struct SPISTS_BITS bit; +}; + +//------------------------------------------------ +// SPI priority control register bit definitions: +// +// +struct SPIPRI_BITS { // bits description + Uint16 rsvd1:4; // 3:0 reserved + Uint16 FREE:1; // 4 Free emulation mode control + Uint16 SOFT:1; // 5 Soft emulation mode control + Uint16 PRIORITY:1; // 6 Interrupt priority select + Uint16 rsvd2:9; // 15:7 reserved +}; + +union SPIPRI_REG { + Uint16 all; + struct SPIPRI_BITS bit; +}; + +//--------------------------------------------------------------------------- +// SPI Register File: +// +struct SPI_REGS { + union SPICCR_REG SPICCR; // Configuration register + union SPICTL_REG SPICTL; // Operation control register + union SPISTS_REG SPISTS; // Status register + Uint16 rsvd1; // reserved + Uint16 SPIBRR; // Baud Rate + Uint16 rsvd2; // reserved + Uint16 SPIRXEMU; // Emulation buffer + Uint16 SPIRXBUF; // Serial input buffer + Uint16 SPITXBUF; // Serial output buffer + Uint16 SPIDAT; // Serial data + union SPIFFTX_REG SPIFFTX; // FIFO transmit register + union SPIFFRX_REG SPIFFRX; // FIFO recieve register + union SPIFFCT_REG SPIFFCT; // FIFO control register + Uint16 rsvd3[2]; // reserved + union SPIPRI_REG SPIPRI; // FIFO Priority control +}; + +//--------------------------------------------------------------------------- +// SPI External References & Function Declarations: +// +extern struct SPI_REGS SpiaRegs; + + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_SPI_H definition + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_SysCtrl.h b/Inu/main_matlab/device_support/include/DSP281x_SysCtrl.h new file mode 100644 index 0000000..6db875e --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_SysCtrl.h @@ -0,0 +1,326 @@ +// TI File $Revision: /main/3 $ +// Checkin $Date: March 16, 2007 13:58:47 $ +//########################################################################### +// +// FILE: DSP281x_SysCtrl.h +// +// TITLE: DSP281x Device System Control Register Definitions. +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_SYS_CTRL_H +#define DSP281x_SYS_CTRL_H + + +#ifdef __cplusplus +extern "C" { +#endif + + +//--------------------------------------------------------------------------- +// System Control Individual Register Bit Definitions: +// +// High speed peripheral clock register bit definitions: +struct HISPCP_BITS { // bits description + Uint16 HSPCLK:3; // 2:0 Rate relative to SYSCLKOUT + Uint16 rsvd1:13; // 15:3 reserved +}; + +union HISPCP_REG { + Uint16 all; + struct HISPCP_BITS bit; +}; + +// Low speed peripheral clock register bit definitions: +struct LOSPCP_BITS { // bits description + Uint16 LSPCLK:3; // 2:0 Rate relative to SYSCLKOUT + Uint16 rsvd1:13; // 15:3 reserved +}; + +union LOSPCP_REG { + Uint16 all; + struct LOSPCP_BITS bit; +}; + +// Peripheral clock control register bit definitions: +struct PCLKCR_BITS { // bits description + Uint16 EVAENCLK:1; // 0 Enable high speed clk to EV-A + Uint16 EVBENCLK:1; // 1 Enable high speed clk to EV-B + Uint16 rsvd1:1; // 2 + Uint16 ADCENCLK:1; // 3 Enable high speed clk to ADC + Uint16 rsvd2:4; // 7:4 reserved + Uint16 SPIENCLK:1; // 8 Enable low speed clk to SPI + Uint16 rsvd3:1; // 9 reserved + Uint16 SCIAENCLK:1; // 10 Enable low speed clk to SCI-A + Uint16 SCIBENCLK:1; // 11 Enable low speed clk to SCI-B + Uint16 MCBSPENCLK:1; // 12 Enable low speed clk to McBSP + Uint16 rsvd4:1; // 13 reserved + Uint16 ECANENCLK:1; // 14 Enable system clk to eCAN +}; + +union PCLKCR_REG { + Uint16 all; + struct PCLKCR_BITS bit; +}; + +// PLL control register bit definitions: +struct PLLCR_BITS { // bits description + Uint16 DIV:4; // 3:0 Set clock ratio for the PLL + Uint16 rsvd1:12; // 15:4 reserved +}; + +union PLLCR_REG { + Uint16 all; + struct PLLCR_BITS bit; +}; + +// Low Power Mode 0 control register bit definitions: +struct LPMCR0_BITS { // bits description + Uint16 LPM:2; // 1:0 Set the low power mode + Uint16 QUALSTDBY:6; // 7:2 Qualification + Uint16 rsvd1:8; // 15:8 reserved +}; + +union LPMCR0_REG { + Uint16 all; + struct LPMCR0_BITS bit; +}; + +// Low Power Mode 1 control register bit definitions: +struct LPMCR1_BITS { // bits description + Uint16 XINT1:1; // 0 Enable XINT1 to wake the device from standby + Uint16 XNMI:1; // 1 Enable XMNI to wake the device from standby + Uint16 WDINT:1; // 2 Enable watchdog interrupt to wake the device from standby + Uint16 T1CTRIP:1; // 3 Enable T1CTRIP to wake the device from standby + Uint16 T2CTRIP:1; // 4 Enable T2CTRIP to wake the device from standby + Uint16 T3CTRIP:1; // 5 Enable T3CTRIP to wake the device from standby + Uint16 T4CTRIP:1; // 6 Enable T4CTRIP to wake the device from standby + Uint16 C1TRIP:1; // 7 Enable C1TRIP to wake the device from standby + Uint16 C2TRIP:1; // 8 Enable C2TRIP to wake the device from standby + Uint16 C3TRIP:1; // 9 Enable C3TRIP to wake the device from standby + Uint16 C4TRIP:1; // 10 Enable C4TRIP to wake the device from standby + Uint16 C5TRIP:1; // 11 Enable C5TRIP to wake the device from standby + Uint16 C6TRIP:1; // 12 Enable C6TRIP to wake the device from standby + Uint16 SCIRXA:1; // 13 Enable SCIRXA to wake the device from standby + Uint16 SCIRXB:1; // 14 Enable SCIRXB to wake the device from standby + Uint16 CANRX:1; // 15 Enable CANRX to wake the device from standby +}; + +union LPMCR1_REG { + Uint16 all; + struct LPMCR1_BITS bit; +}; + +//--------------------------------------------------------------------------- +// System Control Register File: +// +struct SYS_CTRL_REGS { + Uint16 rsvd1[10]; // 0-9 + union HISPCP_REG HISPCP; // 10: High-speed peripheral clock pre-scaler + union LOSPCP_REG LOSPCP; // 11: Low-speed peripheral clock pre-scaler + union PCLKCR_REG PCLKCR; // 12: Peripheral clock control register + Uint16 rsvd2; // 13: reserved + union LPMCR0_REG LPMCR0; // 14: Low-power mode control register 0 + union LPMCR1_REG LPMCR1; // 15: Low-power mode control register 1 + Uint16 rsvd3; // 16: reserved + union PLLCR_REG PLLCR; // 17: PLL control register + // No bit definitions are defined for SCSR because + // a read-modify-write instruction can clear the WDOVERRIDE bit + Uint16 SCSR; // 18: System control and status register + Uint16 WDCNTR; // 19: WD counter register + Uint16 rsvd4; // 20 + Uint16 WDKEY; // 21: WD reset key register + Uint16 rsvd5[3]; // 22-24 + // No bit definitions are defined for WDCR because + // the proper value must be written to the WDCHK field + // whenever writing to this register. + Uint16 WDCR; // 25: WD timer control register + Uint16 rsvd6[6]; // 26-31 +}; + + +/* --------------------------------------------------- */ +/* CSM Registers */ +/* */ +/* ----------------------------------------------------*/ + +/* CSM Status & Control register bit definitions */ +struct CSMSCR_BITS { // bit description + Uint16 SECURE:1; // 0 Secure flag + Uint16 rsvd1:14; // 14-1 reserved + Uint16 FORCESEC:1; // 15 Force Secure control bit + +}; + +/* Allow access to the bit fields or entire register */ +union CSMSCR_REG { + Uint16 all; + struct CSMSCR_BITS bit; +}; + +/* CSM Register File */ +struct CSM_REGS { + Uint16 KEY0; // KEY reg bits 15-0 + Uint16 KEY1; // KEY reg bits 31-16 + Uint16 KEY2; // KEY reg bits 47-32 + Uint16 KEY3; // KEY reg bits 63-48 + Uint16 KEY4; // KEY reg bits 79-64 + Uint16 KEY5; // KEY reg bits 95-80 + Uint16 KEY6; // KEY reg bits 111-96 + Uint16 KEY7; // KEY reg bits 127-112 + Uint16 rsvd1; // reserved + Uint16 rsvd2; // reserved + Uint16 rsvd3; // reserved + Uint16 rsvd4; // reserved + Uint16 rsvd5; // reserved + Uint16 rsvd6; // reserved + Uint16 rsvd7; // reserved + union CSMSCR_REG CSMSCR; // CSM Status & Control register +}; + +/* Password locations */ +struct CSM_PWL { + Uint16 PSWD0; // PSWD bits 15-0 + Uint16 PSWD1; // PSWD bits 31-16 + Uint16 PSWD2; // PSWD bits 47-32 + Uint16 PSWD3; // PSWD bits 63-48 + Uint16 PSWD4; // PSWD bits 79-64 + Uint16 PSWD5; // PSWD bits 95-80 + Uint16 PSWD6; // PSWD bits 111-96 + Uint16 PSWD7; // PSWD bits 127-112 +}; + + + +/* Flash Registers */ + +#define FLASH_SLEEP 0x0000; +#define FLASH_STANDBY 0x0001; +#define FLASH_ACTIVE 0x0003; + + +/* Flash Option Register bit definitions */ +struct FOPT_BITS { // bit description + Uint16 ENPIPE:1; // 0 Enable Pipeline Mode + Uint16 rsvd:15; // 1-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FOPT_REG { + Uint16 all; + struct FOPT_BITS bit; +}; + +/* Flash Power Modes Register bit definitions */ +struct FPWR_BITS { // bit description + Uint16 PWR:2; // 0-1 Power Mode bits + Uint16 rsvd:14; // 2-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FPWR_REG { + Uint16 all; + struct FPWR_BITS bit; +}; + + +/* Flash Status Register bit definitions */ +struct FSTATUS_BITS { // bit description + Uint16 PWRS:2; // 0-1 Power Mode Status bits + Uint16 STDBYWAITS:1; // 2 Bank/Pump Sleep to Standby Wait Counter Status bits + Uint16 ACTIVEWAITS:1; // 3 Bank/Pump Standby to Active Wait Counter Status bits + Uint16 rsvd1:4; // 4-7 reserved + Uint16 V3STAT:1; // 8 VDD3V Status Latch bit + Uint16 rsvd2:7; // 9-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FSTATUS_REG { + Uint16 all; + struct FSTATUS_BITS bit; +}; + +/* Flash Sleep to Standby Wait Counter Register bit definitions */ +struct FSTDBYWAIT_BITS { // bit description + Uint16 STDBYWAIT:9; // 0-8 Bank/Pump Sleep to Standby Wait Count bits + Uint16 rsvd:7; // 9-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FSTDBYWAIT_REG { + Uint16 all; + struct FSTDBYWAIT_BITS bit; +}; + +/* Flash Standby to Active Wait Counter Register bit definitions */ +struct FACTIVEWAIT_BITS { // bit description + Uint16 ACTIVEWAIT:9; // 0-8 Bank/Pump Standby to Active Wait Count bits + Uint16 rsvd:7; // 9-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FACTIVEWAIT_REG { + Uint16 all; + struct FACTIVEWAIT_BITS bit; +}; + +/* Bank Read Access Wait State Register bit definitions */ +struct FBANKWAIT_BITS { // bit description + Uint16 RANDWAIT:4; // 0-3 Flash Random Read Wait State bits + Uint16 rsvd1:4; // 4-7 reserved + Uint16 PAGEWAIT:4; // 8-11 Flash Paged Read Wait State bits + Uint16 rsvd2:4; // 12-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FBANKWAIT_REG { + Uint16 all; + struct FBANKWAIT_BITS bit; +}; + +/* OTP Read Access Wait State Register bit definitions */ +struct FOTPWAIT_BITS { // bit description + Uint16 OTPWAIT:5; // 0-4 OTP Read Wait State bits + Uint16 rsvd:11; // 5-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FOTPWAIT_REG { + Uint16 all; + struct FOTPWAIT_BITS bit; +}; + + +struct FLASH_REGS { + union FOPT_REG FOPT; // Option Register + Uint16 rsvd1; // reserved + union FPWR_REG FPWR; // Power Modes Register + union FSTATUS_REG FSTATUS; // Status Register + union FSTDBYWAIT_REG FSTDBYWAIT; // Pump/Bank Sleep to Standby Wait State Register + union FACTIVEWAIT_REG FACTIVEWAIT; // Pump/Bank Standby to Active Wait State Register + union FBANKWAIT_REG FBANKWAIT; // Bank Read Access Wait State Register + union FOTPWAIT_REG FOTPWAIT; // OTP Read Access Wait State Register +}; + +//--------------------------------------------------------------------------- +// System Control External References & Function Declarations: +// +extern struct SYS_CTRL_REGS SysCtrlRegs; +extern struct CSM_REGS CsmRegs; +extern struct CSM_PWL CsmPwl; +extern struct FLASH_REGS FlashRegs; + + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_SYS_CTRL_H definition + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_XIntrupt.h b/Inu/main_matlab/device_support/include/DSP281x_XIntrupt.h new file mode 100644 index 0000000..b25ad8f --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_XIntrupt.h @@ -0,0 +1,79 @@ +// TI File $Revision: /main/2 $ +// Checkin $Date: April 28, 2005 14:57:07 $ +//########################################################################### +// +// FILE: DSP281x_XIntrupt.h +// +// TITLE: DSP281x Device External Interrupt Register Definitions. +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_XINTRUPT_H +#define DSP281x_XINTRUPT_H + + +#ifdef __cplusplus +extern "C" { +#endif + +//--------------------------------------------------------------------------- + +struct XINTCR_BITS { + Uint16 ENABLE:1; // 0 enable/disable + Uint16 rsvd1:1; // 1 reserved + Uint16 POLARITY:1; // 2 pos/neg triggered + Uint16 rsvd2:12; // 15:3 reserved +}; + +union XINTCR_REG { + Uint16 all; + struct XINTCR_BITS bit; +}; + +struct XNMICR_BITS { + Uint16 ENABLE:1; // 0 enable/disable + Uint16 SELECT:1; // 1 Timer 1 or XNMI connected to INT13 + Uint16 POLARITY:1; // 2 pos/neg triggered + Uint16 rsvd2:12; // 15:3 reserved +}; + +union XNMICR_REG { + Uint16 all; + struct XNMICR_BITS bit; +}; + + + + +//--------------------------------------------------------------------------- +// External Interrupt Register File: +// +struct XINTRUPT_REGS { + union XINTCR_REG XINT1CR; + union XINTCR_REG XINT2CR; + Uint16 rsvd1[5]; + union XNMICR_REG XNMICR; + Uint16 XINT1CTR; + Uint16 XINT2CTR; + Uint16 rsvd[5]; + Uint16 XNMICTR; +}; + +//--------------------------------------------------------------------------- +// External Interrupt References & Function Declarations: +// +extern struct XINTRUPT_REGS XIntruptRegs; + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_XINTF_H definition + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP281x_Xintf.h b/Inu/main_matlab/device_support/include/DSP281x_Xintf.h new file mode 100644 index 0000000..73816f6 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP281x_Xintf.h @@ -0,0 +1,112 @@ +// TI File $Revision: /main/3 $ +// Checkin $Date: March 20, 2007 16:30:14 $ +//########################################################################### +// +// FILE: DSP281x_Xintf.h +// +// TITLE: DSP281x Device External Interface Register Definitions. +// +//########################################################################### +// $TI Release: DSP281x C/C++ Header Files V1.20 $ +// $Release Date: July 27, 2009 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP281x_XINTF_H +#define DSP281x_XINTF_H + + +#ifdef __cplusplus +extern "C" { +#endif + + +// XINTF timing register bit definitions: +struct XTIMING_BITS { // bits description + Uint16 XWRTRAIL:2; // 1:0 Write access trail timing + Uint16 XWRACTIVE:3; // 4:2 Write access active timing + Uint16 XWRLEAD:2; // 6:5 Write access lead timing + Uint16 XRDTRAIL:2; // 8:7 Read access trail timing + Uint16 XRDACTIVE:3; // 11:9 Read access active timing + Uint16 XRDLEAD:2; // 13:12 Read access lead timing + Uint16 USEREADY:1; // 14 Extend access using HW waitstates + Uint16 READYMODE:1; // 15 Ready mode + Uint16 XSIZE:2; // 17:16 XINTF bus width - must be written as 11b + Uint16 rsvd1:4; // 21:18 reserved + Uint16 X2TIMING:1; // 22 Double lead/active/trail timing + Uint16 rsvd3:9; // 31:23 reserved +}; + +union XTIMING_REG { + Uint32 all; + struct XTIMING_BITS bit; +}; + +// XINTF control register bit definitions: +struct XINTCNF2_BITS { // bits description + Uint16 WRBUFF:2; // 1:0 Write buffer depth + Uint16 CLKMODE:1; // 2 Ratio for XCLKOUT with respect to XTIMCLK + Uint16 CLKOFF:1; // 3 Disable XCLKOUT + Uint16 rsvd1:2; // 5:4 reserved + Uint16 WLEVEL:2; // 7:6 Current level of the write buffer + Uint16 MPNMC:1; // 8 Micro-processor/micro-computer mode + Uint16 HOLD:1; // 9 Hold enable/disable + Uint16 HOLDS:1; // 10 Current state of HOLDn input + Uint16 HOLDAS:1; // 11 Current state of HOLDAn output + Uint16 rsvd2:4; // 15:12 reserved + Uint16 XTIMCLK:3; // 18:16 Ratio for XTIMCLK + Uint16 rsvd3:13; // 31:19 reserved +}; + +union XINTCNF2_REG { + Uint32 all; + struct XINTCNF2_BITS bit; +}; + +// XINTF bank switching register bit definitions: +struct XBANK_BITS { // bits description + Uint16 BANK:3; // 2:0 Zone for which banking is enabled + Uint16 BCYC:3; // 5:3 XTIMCLK cycles to add + Uint16 rsvd:10; // 15:6 reserved +}; + +union XBANK_REG { + Uint16 all; + struct XBANK_BITS bit; +}; + + +//--------------------------------------------------------------------------- +// XINTF Register File: +// +struct XINTF_REGS { + union XTIMING_REG XTIMING0; + union XTIMING_REG XTIMING1; + union XTIMING_REG XTIMING2; + Uint32 rsvd1[3]; + union XTIMING_REG XTIMING6; + union XTIMING_REG XTIMING7; + Uint32 rsvd2[2]; + union XINTCNF2_REG XINTCNF2; + Uint32 rsvd3; + union XBANK_REG XBANK; + Uint16 rsvd4; + Uint16 XREVISION; + Uint16 rsvd5[5]; +}; + +//--------------------------------------------------------------------------- +// XINTF External References & Function Declarations: +// +extern struct XINTF_REGS XintfRegs; + + +#ifdef __cplusplus +} +#endif /* extern "C" */ + +#endif // end of DSP281x_XINTF_H definition + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_Adc.h b/Inu/main_matlab/device_support/include/DSP2833x_Adc.h new file mode 100644 index 0000000..cf4f7fd --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_Adc.h @@ -0,0 +1,258 @@ +// TI File $Revision: /main/1 $ +// Checkin $Date: August 18, 2006 13:51:50 $ +//########################################################################### +// +// FILE: DSP2833x_Adc.h +// +// TITLE: DSP2833x Device ADC Register Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_ADC_H +#define DSP2833x_ADC_H + + + +//--------------------------------------------------------------------------- +// ADC Individual Register Bit Definitions: + +struct ADCTRL1_BITS { // bits description + Uint16 rsvd1:4; // 3:0 reserved + Uint16 SEQ_CASC:1; // 4 Cascaded sequencer mode + Uint16 SEQ_OVRD:1; // 5 Sequencer override + Uint16 CONT_RUN:1; // 6 Continuous run + Uint16 CPS:1; // 7 ADC core clock pre-scalar + Uint16 ACQ_PS:4; // 11:8 Acquisition window size + Uint16 SUSMOD:2; // 13:12 Emulation suspend mode + Uint16 RESET:1; // 14 ADC reset + Uint16 rsvd2:1; // 15 reserved +}; + + +union ADCTRL1_REG { + Uint16 all; + struct ADCTRL1_BITS bit; +}; + + +struct ADCTRL2_BITS { // bits description + Uint16 EPWM_SOCB_SEQ2:1; // 0 EPWM compare B SOC mask for SEQ2 + Uint16 rsvd1:1; // 1 reserved + Uint16 INT_MOD_SEQ2:1; // 2 SEQ2 Interrupt mode + Uint16 INT_ENA_SEQ2:1; // 3 SEQ2 Interrupt enable + Uint16 rsvd2:1; // 4 reserved + Uint16 SOC_SEQ2:1; // 5 Start of conversion for SEQ2 + Uint16 RST_SEQ2:1; // 6 Reset SEQ2 + Uint16 EXT_SOC_SEQ1:1; // 7 External start of conversion for SEQ1 + Uint16 EPWM_SOCA_SEQ1:1; // 8 EPWM compare B SOC mask for SEQ1 + Uint16 rsvd3:1; // 9 reserved + Uint16 INT_MOD_SEQ1:1; // 10 SEQ1 Interrupt mode + Uint16 INT_ENA_SEQ1:1; // 11 SEQ1 Interrupt enable + Uint16 rsvd4:1; // 12 reserved + Uint16 SOC_SEQ1:1; // 13 Start of conversion trigger for SEQ1 + Uint16 RST_SEQ1:1; // 14 Restart sequencer 1 + Uint16 EPWM_SOCB_SEQ:1; // 15 EPWM compare B SOC enable +}; + + +union ADCTRL2_REG { + Uint16 all; + struct ADCTRL2_BITS bit; +}; + + +struct ADCASEQSR_BITS { // bits description + Uint16 SEQ1_STATE:4; // 3:0 SEQ1 state + Uint16 SEQ2_STATE:3; // 6:4 SEQ2 state + Uint16 rsvd1:1; // 7 reserved + Uint16 SEQ_CNTR:4; // 11:8 Sequencing counter status + Uint16 rsvd2:4; // 15:12 reserved +}; + +union ADCASEQSR_REG { + Uint16 all; + struct ADCASEQSR_BITS bit; +}; + + +struct ADCMAXCONV_BITS { // bits description + Uint16 MAX_CONV1:4; // 3:0 Max number of conversions + Uint16 MAX_CONV2:3; // 6:4 Max number of conversions + Uint16 rsvd1:9; // 15:7 reserved +}; + +union ADCMAXCONV_REG { + Uint16 all; + struct ADCMAXCONV_BITS bit; +}; + + +struct ADCCHSELSEQ1_BITS { // bits description + Uint16 CONV00:4; // 3:0 Conversion selection 00 + Uint16 CONV01:4; // 7:4 Conversion selection 01 + Uint16 CONV02:4; // 11:8 Conversion selection 02 + Uint16 CONV03:4; // 15:12 Conversion selection 03 +}; + +union ADCCHSELSEQ1_REG{ + Uint16 all; + struct ADCCHSELSEQ1_BITS bit; +}; + +struct ADCCHSELSEQ2_BITS { // bits description + Uint16 CONV04:4; // 3:0 Conversion selection 04 + Uint16 CONV05:4; // 7:4 Conversion selection 05 + Uint16 CONV06:4; // 11:8 Conversion selection 06 + Uint16 CONV07:4; // 15:12 Conversion selection 07 +}; + +union ADCCHSELSEQ2_REG{ + Uint16 all; + struct ADCCHSELSEQ2_BITS bit; +}; + +struct ADCCHSELSEQ3_BITS { // bits description + Uint16 CONV08:4; // 3:0 Conversion selection 08 + Uint16 CONV09:4; // 7:4 Conversion selection 09 + Uint16 CONV10:4; // 11:8 Conversion selection 10 + Uint16 CONV11:4; // 15:12 Conversion selection 11 +}; + +union ADCCHSELSEQ3_REG{ + Uint16 all; + struct ADCCHSELSEQ3_BITS bit; +}; + +struct ADCCHSELSEQ4_BITS { // bits description + Uint16 CONV12:4; // 3:0 Conversion selection 12 + Uint16 CONV13:4; // 7:4 Conversion selection 13 + Uint16 CONV14:4; // 11:8 Conversion selection 14 + Uint16 CONV15:4; // 15:12 Conversion selection 15 +}; + +union ADCCHSELSEQ4_REG { + Uint16 all; + struct ADCCHSELSEQ4_BITS bit; +}; + +struct ADCTRL3_BITS { // bits description + Uint16 SMODE_SEL:1; // 0 Sampling mode select + Uint16 ADCCLKPS:4; // 4:1 ADC core clock divider + Uint16 ADCPWDN:1; // 5 ADC powerdown + Uint16 ADCBGRFDN:2; // 7:6 ADC bandgap/ref power down + Uint16 rsvd1:8; // 15:8 reserved +}; + +union ADCTRL3_REG { + Uint16 all; + struct ADCTRL3_BITS bit; +}; + + +struct ADCST_BITS { // bits description + Uint16 INT_SEQ1:1; // 0 SEQ1 Interrupt flag + Uint16 INT_SEQ2:1; // 1 SEQ2 Interrupt flag + Uint16 SEQ1_BSY:1; // 2 SEQ1 busy status + Uint16 SEQ2_BSY:1; // 3 SEQ2 busy status + Uint16 INT_SEQ1_CLR:1; // 4 SEQ1 Interrupt clear + Uint16 INT_SEQ2_CLR:1; // 5 SEQ2 Interrupt clear + Uint16 EOS_BUF1:1; // 6 End of sequence buffer1 + Uint16 EOS_BUF2:1; // 7 End of sequence buffer2 + Uint16 rsvd1:8; // 15:8 reserved +}; + + +union ADCST_REG { + Uint16 all; + struct ADCST_BITS bit; +}; + +struct ADCREFSEL_BITS { // bits description + Uint16 rsvd1:14; // 13:0 reserved + Uint16 REF_SEL:2; // 15:14 Reference select +}; +union ADCREFSEL_REG { + Uint16 all; + struct ADCREFSEL_BITS bit; +}; + +struct ADCOFFTRIM_BITS{ // bits description + int16 OFFSET_TRIM:9; // 8:0 Offset Trim + Uint16 rsvd1:7; // 15:9 reserved +}; + +union ADCOFFTRIM_REG{ + Uint16 all; + struct ADCOFFTRIM_BITS bit; +}; +struct ADC_REGS { + union ADCTRL1_REG ADCTRL1; // ADC Control 1 + union ADCTRL2_REG ADCTRL2; // ADC Control 2 + union ADCMAXCONV_REG ADCMAXCONV; // Max conversions + union ADCCHSELSEQ1_REG ADCCHSELSEQ1; // Channel select sequencing control 1 + union ADCCHSELSEQ2_REG ADCCHSELSEQ2; // Channel select sequencing control 2 + union ADCCHSELSEQ3_REG ADCCHSELSEQ3; // Channel select sequencing control 3 + union ADCCHSELSEQ4_REG ADCCHSELSEQ4; // Channel select sequencing control 4 + union ADCASEQSR_REG ADCASEQSR; // Autosequence status register + Uint16 ADCRESULT0; // Conversion Result Buffer 0 + Uint16 ADCRESULT1; // Conversion Result Buffer 1 + Uint16 ADCRESULT2; // Conversion Result Buffer 2 + Uint16 ADCRESULT3; // Conversion Result Buffer 3 + Uint16 ADCRESULT4; // Conversion Result Buffer 4 + Uint16 ADCRESULT5; // Conversion Result Buffer 5 + Uint16 ADCRESULT6; // Conversion Result Buffer 6 + Uint16 ADCRESULT7; // Conversion Result Buffer 7 + Uint16 ADCRESULT8; // Conversion Result Buffer 8 + Uint16 ADCRESULT9; // Conversion Result Buffer 9 + Uint16 ADCRESULT10; // Conversion Result Buffer 10 + Uint16 ADCRESULT11; // Conversion Result Buffer 11 + Uint16 ADCRESULT12; // Conversion Result Buffer 12 + Uint16 ADCRESULT13; // Conversion Result Buffer 13 + Uint16 ADCRESULT14; // Conversion Result Buffer 14 + Uint16 ADCRESULT15; // Conversion Result Buffer 15 + union ADCTRL3_REG ADCTRL3; // ADC Control 3 + union ADCST_REG ADCST; // ADC Status Register + Uint16 rsvd1; + Uint16 rsvd2; + union ADCREFSEL_REG ADCREFSEL; // Reference Select Register + union ADCOFFTRIM_REG ADCOFFTRIM; // Offset Trim Register +}; + + +struct ADC_RESULT_MIRROR_REGS +{ + Uint16 ADCRESULT0; // Conversion Result Buffer 0 + Uint16 ADCRESULT1; // Conversion Result Buffer 1 + Uint16 ADCRESULT2; // Conversion Result Buffer 2 + Uint16 ADCRESULT3; // Conversion Result Buffer 3 + Uint16 ADCRESULT4; // Conversion Result Buffer 4 + Uint16 ADCRESULT5; // Conversion Result Buffer 5 + Uint16 ADCRESULT6; // Conversion Result Buffer 6 + Uint16 ADCRESULT7; // Conversion Result Buffer 7 + Uint16 ADCRESULT8; // Conversion Result Buffer 8 + Uint16 ADCRESULT9; // Conversion Result Buffer 9 + Uint16 ADCRESULT10; // Conversion Result Buffer 10 + Uint16 ADCRESULT11; // Conversion Result Buffer 11 + Uint16 ADCRESULT12; // Conversion Result Buffer 12 + Uint16 ADCRESULT13; // Conversion Result Buffer 13 + Uint16 ADCRESULT14; // Conversion Result Buffer 14 + Uint16 ADCRESULT15; // Conversion Result Buffer 15 +}; + +//--------------------------------------------------------------------------- +// ADC External References & Function Declarations: +// +extern struct ADC_REGS AdcRegs; +extern struct ADC_RESULT_MIRROR_REGS AdcMirror; + + + +#endif // end of DSP2833x_ADC_H definition + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_CpuTimers.h b/Inu/main_matlab/device_support/include/DSP2833x_CpuTimers.h new file mode 100644 index 0000000..e79ea52 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_CpuTimers.h @@ -0,0 +1,184 @@ +// TI File $Revision: /main/4 $ +// Checkin $Date: March 20, 2007 15:33:42 $ +//########################################################################### +// +// FILE: DSP2833x_CpuTimers.h +// +// TITLE: DSP2833x CPU 32-bit Timers Register Definitions. +// +// NOTES: CpuTimer1 and CpuTimer2 are reserved for use with DSP BIOS and +// other realtime operating systems. +// +// Do not use these two timers in your application if you ever plan +// on integrating DSP-BIOS or another realtime OS. +// +// For this reason, comment out the code to manipulate these two timers +// if using DSP-BIOS or another realtime OS. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_CPU_TIMERS_H +#define DSP2833x_CPU_TIMERS_H + + +//--------------------------------------------------------------------------- +// CPU Timer Register Bit Definitions: +// +// +// TCR: Control register bit definitions: +struct TCR_BITS { // bits description + Uint16 rsvd1:4; // 3:0 reserved + Uint16 TSS:1; // 4 Timer Start/Stop + Uint16 TRB:1; // 5 Timer reload + Uint16 rsvd2:4; // 9:6 reserved + Uint16 SOFT:1; // 10 Emulation modes + Uint16 FREE:1; // 11 + Uint16 rsvd3:2; // 12:13 reserved + Uint16 TIE:1; // 14 Output enable + Uint16 TIF:1; // 15 Interrupt flag +}; + +union TCR_REG { + Uint16 all; + struct TCR_BITS bit; +}; + +// TPR: Pre-scale low bit definitions: +struct TPR_BITS { // bits description + Uint16 TDDR:8; // 7:0 Divide-down low + Uint16 PSC:8; // 15:8 Prescale counter low +}; + +union TPR_REG { + Uint16 all; + struct TPR_BITS bit; +}; + +// TPRH: Pre-scale high bit definitions: +struct TPRH_BITS { // bits description + Uint16 TDDRH:8; // 7:0 Divide-down high + Uint16 PSCH:8; // 15:8 Prescale counter high +}; + +union TPRH_REG { + Uint16 all; + struct TPRH_BITS bit; +}; + +// TIM, TIMH: Timer register definitions: +struct TIM_REG { + Uint16 LSW; + Uint16 MSW; +}; + +union TIM_GROUP { + Uint32 all; + struct TIM_REG half; +}; + +// PRD, PRDH: Period register definitions: +struct PRD_REG { + Uint16 LSW; + Uint16 MSW; +}; + +union PRD_GROUP { + Uint32 all; + struct PRD_REG half; +}; + +//--------------------------------------------------------------------------- +// CPU Timer Register File: +// +struct CPUTIMER_REGS { + union TIM_GROUP TIM; // Timer counter register + union PRD_GROUP PRD; // Period register + union TCR_REG TCR; // Timer control register + Uint16 rsvd1; // reserved + union TPR_REG TPR; // Timer pre-scale low + union TPRH_REG TPRH; // Timer pre-scale high +}; + +//--------------------------------------------------------------------------- +// CPU Timer Support Variables: +// +struct CPUTIMER_VARS { + struct CPUTIMER_REGS *RegsAddr; + Uint32 InterruptCount; + float CPUFreqInMHz; + float PeriodInUSec; +}; + +//--------------------------------------------------------------------------- +// Function prototypes and external definitions: +// +void InitCpuTimers(void); +void ConfigCpuTimer(struct CPUTIMER_VARS *Timer, float Freq, float Period); + +extern struct CPUTIMER_REGS CpuTimer0Regs; +extern struct CPUTIMER_VARS CpuTimer0; + +// CpuTimer 1 and CpuTimer2 are reserved for DSP BIOS & other RTOS. Comment out CpuTimer1 and CpuTimer2 if using DSP BIOS or other RTOS +extern struct CPUTIMER_REGS CpuTimer1Regs; +extern struct CPUTIMER_REGS CpuTimer2Regs; + +extern struct CPUTIMER_VARS CpuTimer1; +extern struct CPUTIMER_VARS CpuTimer2; + +//--------------------------------------------------------------------------- +// Usefull Timer Operations: +// +// Start Timer: +#define StartCpuTimer0() CpuTimer0Regs.TCR.bit.TSS = 0 + +// Stop Timer: +#define StopCpuTimer0() CpuTimer0Regs.TCR.bit.TSS = 1 + +// Reload Timer With period Value: +#define ReloadCpuTimer0() CpuTimer0Regs.TCR.bit.TRB = 1 + +// Read 32-Bit Timer Value: +#define ReadCpuTimer0Counter() CpuTimer0Regs.TIM.all + +// Read 32-Bit Period Value: +#define ReadCpuTimer0Period() CpuTimer0Regs.PRD.all + +// CpuTimer 1 and CpuTimer2 are reserved for DSP BIOS & other RTOS +// Do not use these two timers if you ever plan on integrating +// DSP-BIOS or another realtime OS. +// +// For this reason, comment out the code to manipulate these two timers +// if using DSP-BIOS or another realtime OS. + +// Start Timer: +#define StartCpuTimer1() CpuTimer1Regs.TCR.bit.TSS = 0 +#define StartCpuTimer2() CpuTimer2Regs.TCR.bit.TSS = 0 + + +// Stop Timer: +#define StopCpuTimer1() CpuTimer1Regs.TCR.bit.TSS = 1 +#define StopCpuTimer2() CpuTimer2Regs.TCR.bit.TSS = 1 + +// Reload Timer With period Value: +#define ReloadCpuTimer1() CpuTimer1Regs.TCR.bit.TRB = 1 +#define ReloadCpuTimer2() CpuTimer2Regs.TCR.bit.TRB = 1 + +// Read 32-Bit Timer Value: +#define ReadCpuTimer1Counter() CpuTimer1Regs.TIM.all +#define ReadCpuTimer2Counter() CpuTimer2Regs.TIM.all + +// Read 32-Bit Period Value: +#define ReadCpuTimer1Period() CpuTimer1Regs.PRD.all +#define ReadCpuTimer2Period() CpuTimer2Regs.PRD.all + + +#endif // end of DSP2833x_CPU_TIMERS_H definition + + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_DMA.h b/Inu/main_matlab/device_support/include/DSP2833x_DMA.h new file mode 100644 index 0000000..e253eb9 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_DMA.h @@ -0,0 +1,290 @@ +// TI File $Revision: /main/11 $ +// Checkin $Date: June 23, 2008 11:34:15 $ +//########################################################################### +// +// FILE: DSP2833x_DMA.h +// +// TITLE: DSP2833x DMA Module Register Bit Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_DMA_H +#define DSP2833x_DMA_H + + + +//---------------------------------------------------- +// Channel MODE register bit definitions: +struct MODE_BITS { // bits description + Uint16 PERINTSEL:5; // 4:0 Peripheral Interrupt and Sync Select Bits (R/W): + // 0 no interrupt + // 1 SEQ1INT & ADCSYNC + // 2 SEQ2INT + // 3 XINT1 + // 4 XINT2 + // 5 XINT3 + // 6 XINT4 + // 7 XINT5 + // 8 XINT6 + // 9 XINT7 + // 10 XINT13 + // 11 TINT0 + // 12 TINT1 + // 13 TINT2 + // 14 MXEVTA & MXSYNCA + // 15 MREVTA & MRSYNCA + // 16 MXEVTB & MXSYNCB + // 17 MREVTB & MRSYNCB + // 18 ePWM1SOCA + // 19 ePWM1SOCB + // 20 ePWM2SOCA + // 21 ePWM2SOCB + // 22 ePWM3SOCA + // 23 ePWM3SOCB + // 24 ePWM4SOCA + // 25 ePWM4SOCB + // 26 ePWM5SOCA + // 27 ePWM5SOCB + // 28 ePWM6SOCA + // 29 ePWM6SOCB + // 30:31 no interrupt + Uint16 rsvd1:2; // 6:5 (R=0:0) + Uint16 OVRINTE:1; // 7 Overflow Interrupt Enable (R/W): + // 0 overflow interrupt disabled + // 1 overflow interrupt enabled + Uint16 PERINTE:1; // 8 Peripheral Interrupt Enable Bit (R/W): + // 0 peripheral interrupt disabled + // 1 peripheral interrupt enabled + Uint16 CHINTMODE:1; // 9 Channel Interrupt Mode Bit (R/W): + // 0 generate interrupt at beginning of new transfer + // 1 generate interrupt at end of transfer + Uint16 ONESHOT:1; // 10 One Shot Mode Bit (R/W): + // 0 only interrupt event triggers single burst transfer + // 1 first interrupt triggers burst, continue until transfer count is zero + Uint16 CONTINUOUS:1; // 11 Continous Mode Bit (R/W): + // 0 stop when transfer count is zero + // 1 re-initialize when transfer count is zero + Uint16 SYNCE:1; // 12 Sync Enable Bit (R/W): + // 0 ignore selected interrupt sync signal + // 1 enable selected interrupt sync signal + Uint16 SYNCSEL:1; // 13 Sync Select Bit (R/W): + // 0 sync signal controls source wrap counter + // 1 sync signal controls destination wrap counter + Uint16 DATASIZE:1; // 14 Data Size Mode Bit (R/W): + // 0 16-bit data transfer size + // 1 32-bit data transfer size + Uint16 CHINTE:1; // 15 Channel Interrupt Enable Bit (R/W): + // 0 channel interrupt disabled + // 1 channel interrupt enabled +}; + +union MODE_REG { + Uint16 all; + struct MODE_BITS bit; +}; + +//---------------------------------------------------- +// Channel CONTROL register bit definitions: +struct CONTROL_BITS { // bits description + Uint16 RUN:1; // 0 Run Bit (R=0/W=1) + Uint16 HALT:1; // 1 Halt Bit (R=0/W=1) + Uint16 SOFTRESET:1; // 2 Soft Reset Bit (R=0/W=1) + Uint16 PERINTFRC:1; // 3 Interrupt Force Bit (R=0/W=1) + Uint16 PERINTCLR:1; // 4 Interrupt Clear Bit (R=0/W=1) + Uint16 SYNCFRC:1; // 5 Sync Force Bit (R=0/W=1) + Uint16 SYNCCLR:1; // 6 Sync Clear Bit (R=0/W=1) + Uint16 ERRCLR:1; // 7 Error Clear Bit (R=0/W=1) + Uint16 PERINTFLG:1; // 8 Interrupt Flag Bit (R): + // 0 no interrupt pending + // 1 interrupt pending + Uint16 SYNCFLG:1; // 9 Sync Flag Bit (R): + // 0 no sync pending + // 1 sync pending + Uint16 SYNCERR:1; // 10 Sync Error Flag Bit (R): + // 0 no sync error + // 1 sync error detected + Uint16 TRANSFERSTS:1; // 11 Transfer Status Bit (R): + // 0 no transfer in progress or pending + // 1 transfer in progress or pending + Uint16 BURSTSTS:1; // 12 Burst Status Bit (R): + // 0 no burst in progress or pending + // 1 burst in progress or pending + Uint16 RUNSTS:1; // 13 Run Status Bit (R): + // 0 channel not running or halted + // 1 channel running + Uint16 OVRFLG:1; // 14 Overflow Flag Bit(R) + // 0 no overflow event + // 1 overflow event + Uint16 rsvd1:1; // 15 (R=0) +}; + +union CONTROL_REG { + Uint16 all; + struct CONTROL_BITS bit; +}; + +//---------------------------------------------------- +// DMACTRL register bit definitions: +struct DMACTRL_BITS { // bits description + Uint16 HARDRESET:1; // 0 Hard Reset Bit (R=0/W=1) + Uint16 PRIORITYRESET:1; // 1 Priority Reset Bit (R=0/W=1) + Uint16 rsvd1:14; // 15:2 (R=0:0) +}; + +union DMACTRL_REG { + Uint16 all; + struct DMACTRL_BITS bit; +}; + +//---------------------------------------------------- +// DEBUGCTRL register bit definitions: +struct DEBUGCTRL_BITS { // bits description + Uint16 rsvd1:15; // 14:0 (R=0:0) + Uint16 FREE:1; // 15 Debug Mode Bit (R/W): + // 0 halt after current read-write operation + // 1 continue running +}; + +union DEBUGCTRL_REG { + Uint16 all; + struct DEBUGCTRL_BITS bit; +}; + + +//---------------------------------------------------- +// PRIORITYCTRL1 register bit definitions: +struct PRIORITYCTRL1_BITS { // bits description + Uint16 CH1PRIORITY:1; // 0 Ch1 Priority Bit (R/W): + // 0 same priority as all other channels + // 1 highest priority channel + Uint16 rsvd1:15; // 15:1 (R=0:0) +}; + +union PRIORITYCTRL1_REG { + Uint16 all; + struct PRIORITYCTRL1_BITS bit; +}; + + +//---------------------------------------------------- +// PRIORITYSTAT register bit definitions: +struct PRIORITYSTAT_BITS { // bits description + Uint16 ACTIVESTS:3; // 2:0 Active Channel Status Bits (R): + // 0,0,0 no channel active + // 0,0,1 Ch1 channel active + // 0,1,0 Ch2 channel active + // 0,1,1 Ch3 channel active + // 1,0,0 Ch4 channel active + // 1,0,1 Ch5 channel active + // 1,1,0 Ch6 channel active + Uint16 rsvd1:1; // 3 (R=0) + Uint16 ACTIVESTS_SHADOW:3; // 6:4 Active Channel Status Shadow Bits (R): + // 0,0,0 no channel active and interrupted by Ch1 + // 0,0,1 cannot occur + // 0,1,0 Ch2 was active and interrupted by Ch1 + // 0,1,1 Ch3 was active and interrupted by Ch1 + // 1,0,0 Ch4 was active and interrupted by Ch1 + // 1,0,1 Ch5 was active and interrupted by Ch1 + // 1,1,0 Ch6 was active and interrupted by Ch1 + Uint16 rsvd2:9; // 15:7 (R=0:0) +}; + +union PRIORITYSTAT_REG { + Uint16 all; + struct PRIORITYSTAT_BITS bit; +}; + +// Burst Size +struct BURST_SIZE_BITS { // bits description + Uint16 BURSTSIZE:5; // 4:0 Burst transfer size + Uint16 rsvd1:11; // 15:5 reserved +}; + +union BURST_SIZE_REG { + Uint16 all; + struct BURST_SIZE_BITS bit; +}; + +// Burst Count +struct BURST_COUNT_BITS { // bits description + Uint16 BURSTCOUNT:5; // 4:0 Burst transfer size + Uint16 rsvd1:11; // 15:5 reserved +}; + +union BURST_COUNT_REG { + Uint16 all; + struct BURST_COUNT_BITS bit; +}; + + + +//---------------------------------------------------- +// DMA Channel Registers: +struct CH_REGS { + union MODE_REG MODE; // Mode Register + union CONTROL_REG CONTROL; // Control Register + + union BURST_SIZE_REG BURST_SIZE; // Burst Size Register + union BURST_COUNT_REG BURST_COUNT; // Burst Count Register + int16 SRC_BURST_STEP; // Source Burst Step Register + int16 DST_BURST_STEP; // Destination Burst Step Register + + Uint16 TRANSFER_SIZE; // Transfer Size Register + Uint16 TRANSFER_COUNT; // Transfer Count Register + int16 SRC_TRANSFER_STEP; // Source Transfer Step Register + int16 DST_TRANSFER_STEP; // Destination Transfer Step Register + + Uint16 SRC_WRAP_SIZE; // Source Wrap Size Register + Uint16 SRC_WRAP_COUNT; // Source Wrap Count Register + int16 SRC_WRAP_STEP; // Source Wrap Step Register + + Uint16 DST_WRAP_SIZE; // Destination Wrap Size Register + Uint16 DST_WRAP_COUNT; // Destination Wrap Count Register + int16 DST_WRAP_STEP; // Destination Wrap Step Register + + Uint32 SRC_BEG_ADDR_SHADOW; // Source Begin Address Shadow Register + Uint32 SRC_ADDR_SHADOW; // Source Address Shadow Register + Uint32 SRC_BEG_ADDR_ACTIVE; // Source Begin Address Active Register + Uint32 SRC_ADDR_ACTIVE; // Source Address Active Register + + Uint32 DST_BEG_ADDR_SHADOW; // Destination Begin Address Shadow Register + Uint32 DST_ADDR_SHADOW; // Destination Address Shadow Register + Uint32 DST_BEG_ADDR_ACTIVE; // Destination Begin Address Active Register + Uint32 DST_ADDR_ACTIVE; // Destination Address Active Register +}; + +//---------------------------------------------------- +// DMA Registers: +struct DMA_REGS { + union DMACTRL_REG DMACTRL; // DMA Control Register + union DEBUGCTRL_REG DEBUGCTRL; // Debug Control Register + Uint16 rsvd0; // reserved + Uint16 rsvd1; // + union PRIORITYCTRL1_REG PRIORITYCTRL1; // Priority Control 1 Register + Uint16 rsvd2; // + union PRIORITYSTAT_REG PRIORITYSTAT; // Priority Status Register + Uint16 rsvd3[25]; // + struct CH_REGS CH1; // DMA Channel 1 Registers + struct CH_REGS CH2; // DMA Channel 2 Registers + struct CH_REGS CH3; // DMA Channel 3 Registers + struct CH_REGS CH4; // DMA Channel 4 Registers + struct CH_REGS CH5; // DMA Channel 5 Registers + struct CH_REGS CH6; // DMA Channel 6 Registers +}; + + +//--------------------------------------------------------------------------- +// External References & Function Declarations: +// +extern struct DMA_REGS DmaRegs; + + +#endif // end of DSP2833x_DMA_H definition + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_DevEmu.h b/Inu/main_matlab/device_support/include/DSP2833x_DevEmu.h new file mode 100644 index 0000000..4bc43ef --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_DevEmu.h @@ -0,0 +1,88 @@ +// TI File $Revision: /main/4 $ +// Checkin $Date: April 15, 2009 10:05:17 $ +//########################################################################### +// +// FILE: DSP2833x_DevEmu.h +// +// TITLE: DSP2833x Device Emulation Register Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_DEV_EMU_H +#define DSP2833x_DEV_EMU_H + + +//--------------------------------------------------------------------------- +// Device Emulation Register Bit Definitions: +// +// Device Configuration Register Bit Definitions +struct DEVICECNF_BITS { // bits description + Uint16 rsvd1:3; // 2:0 reserved + Uint16 VMAPS:1; // 3 VMAP Status + Uint16 rsvd2:1; // 4 reserved + Uint16 XRSn:1; // 5 XRSn Signal Status + Uint16 rsvd3:10; // 15:6 + Uint16 rsvd4:3; // 18:16 + Uint16 ENPROT:1; // 19 Enable/Disable pipeline protection + Uint16 rsvd5:7; // 26:20 reserved + Uint16 TRSTN:1; // 27 Status of TRSTn signal + Uint16 rsvd6:4; // 31:28 reserved +}; + +union DEVICECNF_REG { + Uint32 all; + struct DEVICECNF_BITS bit; +}; + +// CLASSID +struct CLASSID_BITS { // bits description + Uint16 CLASSNO:8; // 7:0 Class Number + Uint16 PARTTYPE:8; // 15:8 Part Type +}; + +union CLASSID_REG { + Uint16 all; + struct CLASSID_BITS bit; +}; + +struct DEV_EMU_REGS { + union DEVICECNF_REG DEVICECNF; // device configuration + union CLASSID_REG CLASSID; // Class ID + Uint16 REVID; // Device ID + Uint16 PROTSTART; // Write-Read protection start + Uint16 PROTRANGE; // Write-Read protection range + Uint16 rsvd2[202]; +}; + +// PARTID +struct PARTID_BITS { // bits description + Uint16 PARTNO:8; // 7:0 Part Number + Uint16 PARTTYPE:8; // 15:8 Part Type +}; + +union PARTID_REG { + Uint16 all; + struct PARTID_BITS bit; +}; + +struct PARTID_REGS { + union PARTID_REG PARTID; // Part ID +}; + + + +//--------------------------------------------------------------------------- +// Device Emulation Register References & Function Declarations: +// +extern struct DEV_EMU_REGS DevEmuRegs; +extern struct PARTID_REGS PartIdRegs; + +#endif // end of DSP2833x_DEV_EMU_H definition + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_Device.h b/Inu/main_matlab/device_support/include/DSP2833x_Device.h new file mode 100644 index 0000000..50be82e --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_Device.h @@ -0,0 +1,203 @@ +// 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 $ +//######################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_DEVICE_H +#define DSP2833x_DEVICE_H + + + +#define TARGET 1 +//------------------------------------------------------------------------- +// User To Select Target Device: + +#define DSP28_28335 TARGET // Selects '28335/'28235 +#define DSP28_28334 0 // Selects '28334/'28234 +#define DSP28_28332 0 // Selects '28332/'28232 + + +//------------------------------------------------------------------------- +// Common CPU Definitions: +// + +unsigned int IFR; +unsigned int IER; + +#define EINT ; +#define DINT ; +#define ERTM ; +#define DRTM ; +#define EALLOW ; +#define EDIS ; +#define 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 unsigned int Uint16; +typedef unsigned long Uint32; +typedef float float32; +typedef long double float64; +#endif + + +//------------------------------------------------------------------------- +// Include All 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 +#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 + +#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 + + +#endif // end of DSP2833x_DEVICE_H definition + + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_ECan.h b/Inu/main_matlab/device_support/include/DSP2833x_ECan.h new file mode 100644 index 0000000..e6e4a49 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_ECan.h @@ -0,0 +1,1155 @@ +// TI File $Revision: /main/2 $ +// Checkin $Date: May 7, 2007 16:05:39 $ +//########################################################################### +// +// FILE: DSP2833x_ECan.h +// +// TITLE: DSP2833x Device eCAN Register Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_ECAN_H +#define DSP2833x_ECAN_H + + + +/* --------------------------------------------------- */ +/* eCAN Control & Status Registers */ +/* ----------------------------------------------------*/ + +/* eCAN Mailbox enable register (CANME) bit definitions */ +struct CANME_BITS { // bit description + Uint16 ME0:1; // 0 Enable Mailbox 0 + Uint16 ME1:1; // 1 Enable Mailbox 1 + Uint16 ME2:1; // 2 Enable Mailbox 2 + Uint16 ME3:1; // 3 Enable Mailbox 3 + Uint16 ME4:1; // 4 Enable Mailbox 4 + Uint16 ME5:1; // 5 Enable Mailbox 5 + Uint16 ME6:1; // 6 Enable Mailbox 6 + Uint16 ME7:1; // 7 Enable Mailbox 7 + Uint16 ME8:1; // 8 Enable Mailbox 8 + Uint16 ME9:1; // 9 Enable Mailbox 9 + Uint16 ME10:1; // 10 Enable Mailbox 10 + Uint16 ME11:1; // 11 Enable Mailbox 11 + Uint16 ME12:1; // 12 Enable Mailbox 12 + Uint16 ME13:1; // 13 Enable Mailbox 13 + Uint16 ME14:1; // 14 Enable Mailbox 14 + Uint16 ME15:1; // 15 Enable Mailbox 15 + Uint16 ME16:1; // 16 Enable Mailbox 16 + Uint16 ME17:1; // 17 Enable Mailbox 17 + Uint16 ME18:1; // 18 Enable Mailbox 18 + Uint16 ME19:1; // 19 Enable Mailbox 19 + Uint16 ME20:1; // 20 Enable Mailbox 20 + Uint16 ME21:1; // 21 Enable Mailbox 21 + Uint16 ME22:1; // 22 Enable Mailbox 22 + Uint16 ME23:1; // 23 Enable Mailbox 23 + Uint16 ME24:1; // 24 Enable Mailbox 24 + Uint16 ME25:1; // 25 Enable Mailbox 25 + Uint16 ME26:1; // 26 Enable Mailbox 26 + Uint16 ME27:1; // 27 Enable Mailbox 27 + Uint16 ME28:1; // 28 Enable Mailbox 28 + Uint16 ME29:1; // 29 Enable Mailbox 29 + Uint16 ME30:1; // 30 Enable Mailbox 30 + Uint16 ME31:1; // 31 Enable Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANME_REG { + Uint32 all; + struct CANME_BITS bit; +}; + +/* eCAN Mailbox direction register (CANMD) bit definitions */ +struct CANMD_BITS { // bit description + Uint16 MD0:1; // 0 0 -> Tx 1 -> Rx + Uint16 MD1:1; // 1 0 -> Tx 1 -> Rx + Uint16 MD2:1; // 2 0 -> Tx 1 -> Rx + Uint16 MD3:1; // 3 0 -> Tx 1 -> Rx + Uint16 MD4:1; // 4 0 -> Tx 1 -> Rx + Uint16 MD5:1; // 5 0 -> Tx 1 -> Rx + Uint16 MD6:1; // 6 0 -> Tx 1 -> Rx + Uint16 MD7:1; // 7 0 -> Tx 1 -> Rx + Uint16 MD8:1; // 8 0 -> Tx 1 -> Rx + Uint16 MD9:1; // 9 0 -> Tx 1 -> Rx + Uint16 MD10:1; // 10 0 -> Tx 1 -> Rx + Uint16 MD11:1; // 11 0 -> Tx 1 -> Rx + Uint16 MD12:1; // 12 0 -> Tx 1 -> Rx + Uint16 MD13:1; // 13 0 -> Tx 1 -> Rx + Uint16 MD14:1; // 14 0 -> Tx 1 -> Rx + Uint16 MD15:1; // 15 0 -> Tx 1 -> Rx + Uint16 MD16:1; // 16 0 -> Tx 1 -> Rx + Uint16 MD17:1; // 17 0 -> Tx 1 -> Rx + Uint16 MD18:1; // 18 0 -> Tx 1 -> Rx + Uint16 MD19:1; // 19 0 -> Tx 1 -> Rx + Uint16 MD20:1; // 20 0 -> Tx 1 -> Rx + Uint16 MD21:1; // 21 0 -> Tx 1 -> Rx + Uint16 MD22:1; // 22 0 -> Tx 1 -> Rx + Uint16 MD23:1; // 23 0 -> Tx 1 -> Rx + Uint16 MD24:1; // 24 0 -> Tx 1 -> Rx + Uint16 MD25:1; // 25 0 -> Tx 1 -> Rx + Uint16 MD26:1; // 26 0 -> Tx 1 -> Rx + Uint16 MD27:1; // 27 0 -> Tx 1 -> Rx + Uint16 MD28:1; // 28 0 -> Tx 1 -> Rx + Uint16 MD29:1; // 29 0 -> Tx 1 -> Rx + Uint16 MD30:1; // 30 0 -> Tx 1 -> Rx + Uint16 MD31:1; // 31 0 -> Tx 1 -> Rx + +}; + +/* Allow access to the bit fields or entire register */ +union CANMD_REG { + Uint32 all; + struct CANMD_BITS bit; +}; + +/* eCAN Transmit Request Set register (CANTRS) bit definitions */ +struct CANTRS_BITS { // bit description + Uint16 TRS0:1; // 0 TRS for Mailbox 0 + Uint16 TRS1:1; // 1 TRS for Mailbox 1 + Uint16 TRS2:1; // 2 TRS for Mailbox 2 + Uint16 TRS3:1; // 3 TRS for Mailbox 3 + Uint16 TRS4:1; // 4 TRS for Mailbox 4 + Uint16 TRS5:1; // 5 TRS for Mailbox 5 + Uint16 TRS6:1; // 6 TRS for Mailbox 6 + Uint16 TRS7:1; // 7 TRS for Mailbox 7 + Uint16 TRS8:1; // 8 TRS for Mailbox 8 + Uint16 TRS9:1; // 9 TRS for Mailbox 9 + Uint16 TRS10:1; // 10 TRS for Mailbox 10 + Uint16 TRS11:1; // 11 TRS for Mailbox 11 + Uint16 TRS12:1; // 12 TRS for Mailbox 12 + Uint16 TRS13:1; // 13 TRS for Mailbox 13 + Uint16 TRS14:1; // 14 TRS for Mailbox 14 + Uint16 TRS15:1; // 15 TRS for Mailbox 15 + Uint16 TRS16:1; // 16 TRS for Mailbox 16 + Uint16 TRS17:1; // 17 TRS for Mailbox 17 + Uint16 TRS18:1; // 18 TRS for Mailbox 18 + Uint16 TRS19:1; // 19 TRS for Mailbox 19 + Uint16 TRS20:1; // 20 TRS for Mailbox 20 + Uint16 TRS21:1; // 21 TRS for Mailbox 21 + Uint16 TRS22:1; // 22 TRS for Mailbox 22 + Uint16 TRS23:1; // 23 TRS for Mailbox 23 + Uint16 TRS24:1; // 24 TRS for Mailbox 24 + Uint16 TRS25:1; // 25 TRS for Mailbox 25 + Uint16 TRS26:1; // 26 TRS for Mailbox 26 + Uint16 TRS27:1; // 27 TRS for Mailbox 27 + Uint16 TRS28:1; // 28 TRS for Mailbox 28 + Uint16 TRS29:1; // 29 TRS for Mailbox 29 + Uint16 TRS30:1; // 30 TRS for Mailbox 30 + Uint16 TRS31:1; // 31 TRS for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANTRS_REG { + Uint32 all; + struct CANTRS_BITS bit; +}; + +/* eCAN Transmit Request Reset register (CANTRR) bit definitions */ +struct CANTRR_BITS { // bit description + Uint16 TRR0:1; // 0 TRR for Mailbox 0 + Uint16 TRR1:1; // 1 TRR for Mailbox 1 + Uint16 TRR2:1; // 2 TRR for Mailbox 2 + Uint16 TRR3:1; // 3 TRR for Mailbox 3 + Uint16 TRR4:1; // 4 TRR for Mailbox 4 + Uint16 TRR5:1; // 5 TRR for Mailbox 5 + Uint16 TRR6:1; // 6 TRR for Mailbox 6 + Uint16 TRR7:1; // 7 TRR for Mailbox 7 + Uint16 TRR8:1; // 8 TRR for Mailbox 8 + Uint16 TRR9:1; // 9 TRR for Mailbox 9 + Uint16 TRR10:1; // 10 TRR for Mailbox 10 + Uint16 TRR11:1; // 11 TRR for Mailbox 11 + Uint16 TRR12:1; // 12 TRR for Mailbox 12 + Uint16 TRR13:1; // 13 TRR for Mailbox 13 + Uint16 TRR14:1; // 14 TRR for Mailbox 14 + Uint16 TRR15:1; // 15 TRR for Mailbox 15 + Uint16 TRR16:1; // 16 TRR for Mailbox 16 + Uint16 TRR17:1; // 17 TRR for Mailbox 17 + Uint16 TRR18:1; // 18 TRR for Mailbox 18 + Uint16 TRR19:1; // 19 TRR for Mailbox 19 + Uint16 TRR20:1; // 20 TRR for Mailbox 20 + Uint16 TRR21:1; // 21 TRR for Mailbox 21 + Uint16 TRR22:1; // 22 TRR for Mailbox 22 + Uint16 TRR23:1; // 23 TRR for Mailbox 23 + Uint16 TRR24:1; // 24 TRR for Mailbox 24 + Uint16 TRR25:1; // 25 TRR for Mailbox 25 + Uint16 TRR26:1; // 26 TRR for Mailbox 26 + Uint16 TRR27:1; // 27 TRR for Mailbox 27 + Uint16 TRR28:1; // 28 TRR for Mailbox 28 + Uint16 TRR29:1; // 29 TRR for Mailbox 29 + Uint16 TRR30:1; // 30 TRR for Mailbox 30 + Uint16 TRR31:1; // 31 TRR for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANTRR_REG { + Uint32 all; + struct CANTRR_BITS bit; +}; + +/* eCAN Transmit Acknowledge register (CANTA) bit definitions */ +struct CANTA_BITS { // bit description + Uint16 TA0:1; // 0 TA for Mailbox 0 + Uint16 TA1:1; // 1 TA for Mailbox 1 + Uint16 TA2:1; // 2 TA for Mailbox 2 + Uint16 TA3:1; // 3 TA for Mailbox 3 + Uint16 TA4:1; // 4 TA for Mailbox 4 + Uint16 TA5:1; // 5 TA for Mailbox 5 + Uint16 TA6:1; // 6 TA for Mailbox 6 + Uint16 TA7:1; // 7 TA for Mailbox 7 + Uint16 TA8:1; // 8 TA for Mailbox 8 + Uint16 TA9:1; // 9 TA for Mailbox 9 + Uint16 TA10:1; // 10 TA for Mailbox 10 + Uint16 TA11:1; // 11 TA for Mailbox 11 + Uint16 TA12:1; // 12 TA for Mailbox 12 + Uint16 TA13:1; // 13 TA for Mailbox 13 + Uint16 TA14:1; // 14 TA for Mailbox 14 + Uint16 TA15:1; // 15 TA for Mailbox 15 + Uint16 TA16:1; // 16 TA for Mailbox 16 + Uint16 TA17:1; // 17 TA for Mailbox 17 + Uint16 TA18:1; // 18 TA for Mailbox 18 + Uint16 TA19:1; // 19 TA for Mailbox 19 + Uint16 TA20:1; // 20 TA for Mailbox 20 + Uint16 TA21:1; // 21 TA for Mailbox 21 + Uint16 TA22:1; // 22 TA for Mailbox 22 + Uint16 TA23:1; // 23 TA for Mailbox 23 + Uint16 TA24:1; // 24 TA for Mailbox 24 + Uint16 TA25:1; // 25 TA for Mailbox 25 + Uint16 TA26:1; // 26 TA for Mailbox 26 + Uint16 TA27:1; // 27 TA for Mailbox 27 + Uint16 TA28:1; // 28 TA for Mailbox 28 + Uint16 TA29:1; // 29 TA for Mailbox 29 + Uint16 TA30:1; // 30 TA for Mailbox 30 + Uint16 TA31:1; // 31 TA for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANTA_REG { + Uint32 all; + struct CANTA_BITS bit; +}; + +/* eCAN Transmit Abort Acknowledge register (CANAA) bit definitions */ +struct CANAA_BITS { // bit description + Uint16 AA0:1; // 0 AA for Mailbox 0 + Uint16 AA1:1; // 1 AA for Mailbox 1 + Uint16 AA2:1; // 2 AA for Mailbox 2 + Uint16 AA3:1; // 3 AA for Mailbox 3 + Uint16 AA4:1; // 4 AA for Mailbox 4 + Uint16 AA5:1; // 5 AA for Mailbox 5 + Uint16 AA6:1; // 6 AA for Mailbox 6 + Uint16 AA7:1; // 7 AA for Mailbox 7 + Uint16 AA8:1; // 8 AA for Mailbox 8 + Uint16 AA9:1; // 9 AA for Mailbox 9 + Uint16 AA10:1; // 10 AA for Mailbox 10 + Uint16 AA11:1; // 11 AA for Mailbox 11 + Uint16 AA12:1; // 12 AA for Mailbox 12 + Uint16 AA13:1; // 13 AA for Mailbox 13 + Uint16 AA14:1; // 14 AA for Mailbox 14 + Uint16 AA15:1; // 15 AA for Mailbox 15 + Uint16 AA16:1; // 16 AA for Mailbox 16 + Uint16 AA17:1; // 17 AA for Mailbox 17 + Uint16 AA18:1; // 18 AA for Mailbox 18 + Uint16 AA19:1; // 19 AA for Mailbox 19 + Uint16 AA20:1; // 20 AA for Mailbox 20 + Uint16 AA21:1; // 21 AA for Mailbox 21 + Uint16 AA22:1; // 22 AA for Mailbox 22 + Uint16 AA23:1; // 23 AA for Mailbox 23 + Uint16 AA24:1; // 24 AA for Mailbox 24 + Uint16 AA25:1; // 25 AA for Mailbox 25 + Uint16 AA26:1; // 26 AA for Mailbox 26 + Uint16 AA27:1; // 27 AA for Mailbox 27 + Uint16 AA28:1; // 28 AA for Mailbox 28 + Uint16 AA29:1; // 29 AA for Mailbox 29 + Uint16 AA30:1; // 30 AA for Mailbox 30 + Uint16 AA31:1; // 31 AA for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANAA_REG { + Uint32 all; + struct CANAA_BITS bit; +}; + +/* eCAN Received Message Pending register (CANRMP) bit definitions */ +struct CANRMP_BITS { // bit description + Uint16 RMP0:1; // 0 RMP for Mailbox 0 + Uint16 RMP1:1; // 1 RMP for Mailbox 1 + Uint16 RMP2:1; // 2 RMP for Mailbox 2 + Uint16 RMP3:1; // 3 RMP for Mailbox 3 + Uint16 RMP4:1; // 4 RMP for Mailbox 4 + Uint16 RMP5:1; // 5 RMP for Mailbox 5 + Uint16 RMP6:1; // 6 RMP for Mailbox 6 + Uint16 RMP7:1; // 7 RMP for Mailbox 7 + Uint16 RMP8:1; // 8 RMP for Mailbox 8 + Uint16 RMP9:1; // 9 RMP for Mailbox 9 + Uint16 RMP10:1; // 10 RMP for Mailbox 10 + Uint16 RMP11:1; // 11 RMP for Mailbox 11 + Uint16 RMP12:1; // 12 RMP for Mailbox 12 + Uint16 RMP13:1; // 13 RMP for Mailbox 13 + Uint16 RMP14:1; // 14 RMP for Mailbox 14 + Uint16 RMP15:1; // 15 RMP for Mailbox 15 + Uint16 RMP16:1; // 16 RMP for Mailbox 16 + Uint16 RMP17:1; // 17 RMP for Mailbox 17 + Uint16 RMP18:1; // 18 RMP for Mailbox 18 + Uint16 RMP19:1; // 19 RMP for Mailbox 19 + Uint16 RMP20:1; // 20 RMP for Mailbox 20 + Uint16 RMP21:1; // 21 RMP for Mailbox 21 + Uint16 RMP22:1; // 22 RMP for Mailbox 22 + Uint16 RMP23:1; // 23 RMP for Mailbox 23 + Uint16 RMP24:1; // 24 RMP for Mailbox 24 + Uint16 RMP25:1; // 25 RMP for Mailbox 25 + Uint16 RMP26:1; // 26 RMP for Mailbox 26 + Uint16 RMP27:1; // 27 RMP for Mailbox 27 + Uint16 RMP28:1; // 28 RMP for Mailbox 28 + Uint16 RMP29:1; // 29 RMP for Mailbox 29 + Uint16 RMP30:1; // 30 RMP for Mailbox 30 + Uint16 RMP31:1; // 31 RMP for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANRMP_REG { + Uint32 all; + struct CANRMP_BITS bit; +}; + +/* eCAN Received Message Lost register (CANRML) bit definitions */ +struct CANRML_BITS { // bit description + Uint16 RML0:1; // 0 RML for Mailbox 0 + Uint16 RML1:1; // 1 RML for Mailbox 1 + Uint16 RML2:1; // 2 RML for Mailbox 2 + Uint16 RML3:1; // 3 RML for Mailbox 3 + Uint16 RML4:1; // 4 RML for Mailbox 4 + Uint16 RML5:1; // 5 RML for Mailbox 5 + Uint16 RML6:1; // 6 RML for Mailbox 6 + Uint16 RML7:1; // 7 RML for Mailbox 7 + Uint16 RML8:1; // 8 RML for Mailbox 8 + Uint16 RML9:1; // 9 RML for Mailbox 9 + Uint16 RML10:1; // 10 RML for Mailbox 10 + Uint16 RML11:1; // 11 RML for Mailbox 11 + Uint16 RML12:1; // 12 RML for Mailbox 12 + Uint16 RML13:1; // 13 RML for Mailbox 13 + Uint16 RML14:1; // 14 RML for Mailbox 14 + Uint16 RML15:1; // 15 RML for Mailbox 15 + Uint16 RML16:1; // 16 RML for Mailbox 16 + Uint16 RML17:1; // 17 RML for Mailbox 17 + Uint16 RML18:1; // 18 RML for Mailbox 18 + Uint16 RML19:1; // 19 RML for Mailbox 19 + Uint16 RML20:1; // 20 RML for Mailbox 20 + Uint16 RML21:1; // 21 RML for Mailbox 21 + Uint16 RML22:1; // 22 RML for Mailbox 22 + Uint16 RML23:1; // 23 RML for Mailbox 23 + Uint16 RML24:1; // 24 RML for Mailbox 24 + Uint16 RML25:1; // 25 RML for Mailbox 25 + Uint16 RML26:1; // 26 RML for Mailbox 26 + Uint16 RML27:1; // 27 RML for Mailbox 27 + Uint16 RML28:1; // 28 RML for Mailbox 28 + Uint16 RML29:1; // 29 RML for Mailbox 29 + Uint16 RML30:1; // 30 RML for Mailbox 30 + Uint16 RML31:1; // 31 RML for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANRML_REG { + Uint32 all; + struct CANRML_BITS bit; +}; + +/* eCAN Remote Frame Pending register (CANRFP) bit definitions */ +struct CANRFP_BITS { // bit description + Uint16 RFP0:1; // 0 RFP for Mailbox 0 + Uint16 RFP1:1; // 1 RFP for Mailbox 1 + Uint16 RFP2:1; // 2 RFP for Mailbox 2 + Uint16 RFP3:1; // 3 RFP for Mailbox 3 + Uint16 RFP4:1; // 4 RFP for Mailbox 4 + Uint16 RFP5:1; // 5 RFP for Mailbox 5 + Uint16 RFP6:1; // 6 RFP for Mailbox 6 + Uint16 RFP7:1; // 7 RFP for Mailbox 7 + Uint16 RFP8:1; // 8 RFP for Mailbox 8 + Uint16 RFP9:1; // 9 RFP for Mailbox 9 + Uint16 RFP10:1; // 10 RFP for Mailbox 10 + Uint16 RFP11:1; // 11 RFP for Mailbox 11 + Uint16 RFP12:1; // 12 RFP for Mailbox 12 + Uint16 RFP13:1; // 13 RFP for Mailbox 13 + Uint16 RFP14:1; // 14 RFP for Mailbox 14 + Uint16 RFP15:1; // 15 RFP for Mailbox 15 + Uint16 RFP16:1; // 16 RFP for Mailbox 16 + Uint16 RFP17:1; // 17 RFP for Mailbox 17 + Uint16 RFP18:1; // 18 RFP for Mailbox 18 + Uint16 RFP19:1; // 19 RFP for Mailbox 19 + Uint16 RFP20:1; // 20 RFP for Mailbox 20 + Uint16 RFP21:1; // 21 RFP for Mailbox 21 + Uint16 RFP22:1; // 22 RFP for Mailbox 22 + Uint16 RFP23:1; // 23 RFP for Mailbox 23 + Uint16 RFP24:1; // 24 RFP for Mailbox 24 + Uint16 RFP25:1; // 25 RFP for Mailbox 25 + Uint16 RFP26:1; // 26 RFP for Mailbox 26 + Uint16 RFP27:1; // 27 RFP for Mailbox 27 + Uint16 RFP28:1; // 28 RFP for Mailbox 28 + Uint16 RFP29:1; // 29 RFP for Mailbox 29 + Uint16 RFP30:1; // 30 RFP for Mailbox 30 + Uint16 RFP31:1; // 31 RFP for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANRFP_REG { + Uint32 all; + struct CANRFP_BITS bit; +}; + +/* eCAN Global Acceptance Mask register (CANGAM) bit definitions */ +struct CANGAM_BITS { // bits description + Uint16 GAM150:16; // 15:0 Global acceptance mask bits 0-15 + Uint16 GAM2816:13; // 28:16 Global acceptance mask bits 16-28 + Uint16 rsvd:2; // 30:29 reserved + Uint16 AMI:1; // 31 AMI bit +}; + +/* Allow access to the bit fields or entire register */ +union CANGAM_REG { + Uint32 all; + struct CANGAM_BITS bit; +}; + + +/* eCAN Master Control register (CANMC) bit definitions */ +struct CANMC_BITS { // bits description + Uint16 MBNR:5; // 4:0 MBX # for CDR bit + Uint16 SRES:1; // 5 Soft reset + Uint16 STM:1; // 6 Self-test mode + Uint16 ABO:1; // 7 Auto bus-on + Uint16 CDR:1; // 8 Change data request + Uint16 WUBA:1; // 9 Wake-up on bus activity + Uint16 DBO:1; // 10 Data-byte order + Uint16 PDR:1; // 11 Power-down mode request + Uint16 CCR:1; // 12 Change configuration request + Uint16 SCB:1; // 13 SCC compatibility bit + Uint16 TCC:1; // 14 TSC MSB clear bit + Uint16 MBCC:1; // 15 TSC clear bit thru mailbox 16 + Uint16 SUSP:1; // 16 SUSPEND free/soft bit + Uint16 rsvd:15; // 31:17 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANMC_REG { + Uint32 all; + struct CANMC_BITS bit; +}; + +/* eCAN Bit -timing configuration register (CANBTC) bit definitions */ +struct CANBTC_BITS { // bits description + Uint16 TSEG2REG:3; // 2:0 TSEG2 register value + Uint16 TSEG1REG:4; // 6:3 TSEG1 register value + Uint16 SAM:1; // 7 Sample-point setting + Uint16 SJWREG:2; // 9:8 Synchroniztion Jump Width register value + Uint16 rsvd1:6; // 15:10 reserved + Uint16 BRPREG:8; // 23:16 Baudrate prescaler register value + Uint16 rsvd2:8; // 31:24 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANBTC_REG { + Uint32 all; + struct CANBTC_BITS bit; +}; + +/* eCAN Error & Status register (CANES) bit definitions */ +struct CANES_BITS { // bits description + Uint16 TM:1; // 0 Transmit Mode + Uint16 RM:1; // 1 Receive Mode + Uint16 rsvd1:1; // 2 reserved + Uint16 PDA:1; // 3 Power-down acknowledge + Uint16 CCE:1; // 4 Change Configuration Enable + Uint16 SMA:1; // 5 Suspend Mode Acknowledge + Uint16 rsvd2:10; // 15:6 reserved + Uint16 EW:1; // 16 Warning status + Uint16 EP:1; // 17 Error Passive status + Uint16 BO:1; // 18 Bus-off status + Uint16 ACKE:1; // 19 Acknowledge error + Uint16 SE:1; // 20 Stuff error + Uint16 CRCE:1; // 21 CRC error + Uint16 SA1:1; // 22 Stuck at Dominant error + Uint16 BE:1; // 23 Bit error + Uint16 FE:1; // 24 Framing error + Uint16 rsvd3:7; // 31:25 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANES_REG { + Uint32 all; + struct CANES_BITS bit; +}; + + +/* eCAN Transmit Error Counter register (CANTEC) bit definitions */ +struct CANTEC_BITS { // bits description + Uint16 TEC:8; // 7:0 TEC + Uint16 rsvd1:8; // 15:8 reserved + Uint16 rsvd2:16; // 31:16 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANTEC_REG { + Uint32 all; + struct CANTEC_BITS bit; +}; + +/* eCAN Receive Error Counter register (CANREC) bit definitions */ +struct CANREC_BITS { // bits description + Uint16 REC:8; // 7:0 REC + Uint16 rsvd1:8; // 15:8 reserved + Uint16 rsvd2:16; // 31:16 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANREC_REG { + Uint32 all; + struct CANREC_BITS bit; +}; + +/* eCAN Global Interrupt Flag 0 (CANGIF0) bit definitions */ +struct CANGIF0_BITS { // bits description + Uint16 MIV0:5; // 4:0 Mailbox Interrupt Vector + Uint16 rsvd1:3; // 7:5 reserved + Uint16 WLIF0:1; // 8 Warning level interrupt flag + Uint16 EPIF0:1; // 9 Error-passive interrupt flag + Uint16 BOIF0:1; // 10 Bus-off interrupt flag + Uint16 RMLIF0:1; // 11 Received message lost interrupt flag + Uint16 WUIF0:1; // 12 Wakeup interrupt flag + Uint16 WDIF0:1; // 13 Write denied interrupt flag + Uint16 AAIF0:1; // 14 Abort Ack interrupt flag + Uint16 GMIF0:1; // 15 Global MBX interrupt flag + Uint16 TCOF0:1; // 16 TSC Overflow flag + Uint16 MTOF0:1; // 17 Mailbox Timeout flag + Uint16 rsvd2:14; // 31:18 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANGIF0_REG { + Uint32 all; + struct CANGIF0_BITS bit; +}; + +/* eCAN Global Interrupt Mask register (CANGIM) bit definitions */ +struct CANGIM_BITS { // bits description + Uint16 I0EN:1; // 0 Interrupt 0 enable + Uint16 I1EN:1; // 1 Interrupt 1 enable + Uint16 GIL:1; // 2 Global Interrupt Level + Uint16 rsvd1:5; // 7:3 reserved + Uint16 WLIM:1; // 8 Warning level interrupt mask + Uint16 EPIM:1; // 9 Error-passive interrupt mask + Uint16 BOIM:1; // 10 Bus-off interrupt mask + Uint16 RMLIM:1; // 11 Received message lost interrupt mask + Uint16 WUIM:1; // 12 Wakeup interrupt mask + Uint16 WDIM:1; // 13 Write denied interrupt mask + Uint16 AAIM:1; // 14 Abort Ack interrupt mask + Uint16 rsvd2:1; // 15 reserved + Uint16 TCOM:1; // 16 TSC overflow interrupt mask + Uint16 MTOM:1; // 17 MBX Timeout interrupt mask + Uint16 rsvd3:14; // 31:18 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANGIM_REG { + Uint32 all; + struct CANGIM_BITS bit; +}; + + +/* eCAN Global Interrupt Flag 1 (eCANGIF1) bit definitions */ +struct CANGIF1_BITS { // bits description + Uint16 MIV1:5; // 4:0 Mailbox Interrupt Vector + Uint16 rsvd1:3; // 7:5 reserved + Uint16 WLIF1:1; // 8 Warning level interrupt flag + Uint16 EPIF1:1; // 9 Error-passive interrupt flag + Uint16 BOIF1:1; // 10 Bus-off interrupt flag + Uint16 RMLIF1:1; // 11 Received message lost interrupt flag + Uint16 WUIF1:1; // 12 Wakeup interrupt flag + Uint16 WDIF1:1; // 13 Write denied interrupt flag + Uint16 AAIF1:1; // 14 Abort Ack interrupt flag + Uint16 GMIF1:1; // 15 Global MBX interrupt flag + Uint16 TCOF1:1; // 16 TSC Overflow flag + Uint16 MTOF1:1; // 17 Mailbox Timeout flag + Uint16 rsvd2:14; // 31:18 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANGIF1_REG { + Uint32 all; + struct CANGIF1_BITS bit; +}; + + +/* eCAN Mailbox Interrupt Mask register (CANMIM) bit definitions */ +struct CANMIM_BITS { // bit description + Uint16 MIM0:1; // 0 MIM for Mailbox 0 + Uint16 MIM1:1; // 1 MIM for Mailbox 1 + Uint16 MIM2:1; // 2 MIM for Mailbox 2 + Uint16 MIM3:1; // 3 MIM for Mailbox 3 + Uint16 MIM4:1; // 4 MIM for Mailbox 4 + Uint16 MIM5:1; // 5 MIM for Mailbox 5 + Uint16 MIM6:1; // 6 MIM for Mailbox 6 + Uint16 MIM7:1; // 7 MIM for Mailbox 7 + Uint16 MIM8:1; // 8 MIM for Mailbox 8 + Uint16 MIM9:1; // 9 MIM for Mailbox 9 + Uint16 MIM10:1; // 10 MIM for Mailbox 10 + Uint16 MIM11:1; // 11 MIM for Mailbox 11 + Uint16 MIM12:1; // 12 MIM for Mailbox 12 + Uint16 MIM13:1; // 13 MIM for Mailbox 13 + Uint16 MIM14:1; // 14 MIM for Mailbox 14 + Uint16 MIM15:1; // 15 MIM for Mailbox 15 + Uint16 MIM16:1; // 16 MIM for Mailbox 16 + Uint16 MIM17:1; // 17 MIM for Mailbox 17 + Uint16 MIM18:1; // 18 MIM for Mailbox 18 + Uint16 MIM19:1; // 19 MIM for Mailbox 19 + Uint16 MIM20:1; // 20 MIM for Mailbox 20 + Uint16 MIM21:1; // 21 MIM for Mailbox 21 + Uint16 MIM22:1; // 22 MIM for Mailbox 22 + Uint16 MIM23:1; // 23 MIM for Mailbox 23 + Uint16 MIM24:1; // 24 MIM for Mailbox 24 + Uint16 MIM25:1; // 25 MIM for Mailbox 25 + Uint16 MIM26:1; // 26 MIM for Mailbox 26 + Uint16 MIM27:1; // 27 MIM for Mailbox 27 + Uint16 MIM28:1; // 28 MIM for Mailbox 28 + Uint16 MIM29:1; // 29 MIM for Mailbox 29 + Uint16 MIM30:1; // 30 MIM for Mailbox 30 + Uint16 MIM31:1; // 31 MIM for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANMIM_REG { + Uint32 all; + struct CANMIM_BITS bit; +}; + +/* eCAN Mailbox Interrupt Level register (CANMIL) bit definitions */ +struct CANMIL_BITS { // bit description + Uint16 MIL0:1; // 0 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL1:1; // 1 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL2:1; // 2 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL3:1; // 3 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL4:1; // 4 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL5:1; // 5 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL6:1; // 6 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL7:1; // 7 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL8:1; // 8 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL9:1; // 9 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL10:1; // 10 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL11:1; // 11 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL12:1; // 12 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL13:1; // 13 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL14:1; // 14 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL15:1; // 15 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL16:1; // 16 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL17:1; // 17 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL18:1; // 18 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL19:1; // 19 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL20:1; // 20 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL21:1; // 21 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL22:1; // 22 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL23:1; // 23 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL24:1; // 24 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL25:1; // 25 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL26:1; // 26 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL27:1; // 27 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL28:1; // 28 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL29:1; // 29 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL30:1; // 30 0 -> Int 9.5 1 -> Int 9.6 + Uint16 MIL31:1; // 31 0 -> Int 9.5 1 -> Int 9.6 + +}; + +/* Allow access to the bit fields or entire register */ +union CANMIL_REG { + Uint32 all; + struct CANMIL_BITS bit; +}; + + +/* eCAN Overwrite Protection Control register (CANOPC) bit definitions */ +struct CANOPC_BITS { // bit description + Uint16 OPC0:1; // 0 OPC for Mailbox 0 + Uint16 OPC1:1; // 1 OPC for Mailbox 1 + Uint16 OPC2:1; // 2 OPC for Mailbox 2 + Uint16 OPC3:1; // 3 OPC for Mailbox 3 + Uint16 OPC4:1; // 4 OPC for Mailbox 4 + Uint16 OPC5:1; // 5 OPC for Mailbox 5 + Uint16 OPC6:1; // 6 OPC for Mailbox 6 + Uint16 OPC7:1; // 7 OPC for Mailbox 7 + Uint16 OPC8:1; // 8 OPC for Mailbox 8 + Uint16 OPC9:1; // 9 OPC for Mailbox 9 + Uint16 OPC10:1; // 10 OPC for Mailbox 10 + Uint16 OPC11:1; // 11 OPC for Mailbox 11 + Uint16 OPC12:1; // 12 OPC for Mailbox 12 + Uint16 OPC13:1; // 13 OPC for Mailbox 13 + Uint16 OPC14:1; // 14 OPC for Mailbox 14 + Uint16 OPC15:1; // 15 OPC for Mailbox 15 + Uint16 OPC16:1; // 16 OPC for Mailbox 16 + Uint16 OPC17:1; // 17 OPC for Mailbox 17 + Uint16 OPC18:1; // 18 OPC for Mailbox 18 + Uint16 OPC19:1; // 19 OPC for Mailbox 19 + Uint16 OPC20:1; // 20 OPC for Mailbox 20 + Uint16 OPC21:1; // 21 OPC for Mailbox 21 + Uint16 OPC22:1; // 22 OPC for Mailbox 22 + Uint16 OPC23:1; // 23 OPC for Mailbox 23 + Uint16 OPC24:1; // 24 OPC for Mailbox 24 + Uint16 OPC25:1; // 25 OPC for Mailbox 25 + Uint16 OPC26:1; // 26 OPC for Mailbox 26 + Uint16 OPC27:1; // 27 OPC for Mailbox 27 + Uint16 OPC28:1; // 28 OPC for Mailbox 28 + Uint16 OPC29:1; // 29 OPC for Mailbox 29 + Uint16 OPC30:1; // 30 OPC for Mailbox 30 + Uint16 OPC31:1; // 31 OPC for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANOPC_REG { + Uint32 all; + struct CANOPC_BITS bit; +}; + + +/* eCAN TX I/O Control Register (CANTIOC) bit definitions */ +struct CANTIOC_BITS { // bits description + Uint16 rsvd1:3; // 2:0 reserved + Uint16 TXFUNC:1; // 3 TXFUNC + Uint16 rsvd2:12; // 15:4 reserved + Uint16 rsvd3:16; // 31:16 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANTIOC_REG { + Uint32 all; + struct CANTIOC_BITS bit; +}; + +/* eCAN RX I/O Control Register (CANRIOC) bit definitions */ +struct CANRIOC_BITS { // bits description + Uint16 rsvd1:3; // 2:0 reserved + Uint16 RXFUNC:1; // 3 RXFUNC + Uint16 rsvd2:12; // 15:4 reserved + Uint16 rsvd3:16; // 31:16 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANRIOC_REG { + Uint32 all; + struct CANRIOC_BITS bit; +}; + + +/* eCAN Time-out Control register (CANTOC) bit definitions */ +struct CANTOC_BITS { // bit description + Uint16 TOC0:1; // 0 TOC for Mailbox 0 + Uint16 TOC1:1; // 1 TOC for Mailbox 1 + Uint16 TOC2:1; // 2 TOC for Mailbox 2 + Uint16 TOC3:1; // 3 TOC for Mailbox 3 + Uint16 TOC4:1; // 4 TOC for Mailbox 4 + Uint16 TOC5:1; // 5 TOC for Mailbox 5 + Uint16 TOC6:1; // 6 TOC for Mailbox 6 + Uint16 TOC7:1; // 7 TOC for Mailbox 7 + Uint16 TOC8:1; // 8 TOC for Mailbox 8 + Uint16 TOC9:1; // 9 TOC for Mailbox 9 + Uint16 TOC10:1; // 10 TOC for Mailbox 10 + Uint16 TOC11:1; // 11 TOC for Mailbox 11 + Uint16 TOC12:1; // 12 TOC for Mailbox 12 + Uint16 TOC13:1; // 13 TOC for Mailbox 13 + Uint16 TOC14:1; // 14 TOC for Mailbox 14 + Uint16 TOC15:1; // 15 TOC for Mailbox 15 + Uint16 TOC16:1; // 16 TOC for Mailbox 16 + Uint16 TOC17:1; // 17 TOC for Mailbox 17 + Uint16 TOC18:1; // 18 TOC for Mailbox 18 + Uint16 TOC19:1; // 19 TOC for Mailbox 19 + Uint16 TOC20:1; // 20 TOC for Mailbox 20 + Uint16 TOC21:1; // 21 TOC for Mailbox 21 + Uint16 TOC22:1; // 22 TOC for Mailbox 22 + Uint16 TOC23:1; // 23 TOC for Mailbox 23 + Uint16 TOC24:1; // 24 TOC for Mailbox 24 + Uint16 TOC25:1; // 25 TOC for Mailbox 25 + Uint16 TOC26:1; // 26 TOC for Mailbox 26 + Uint16 TOC27:1; // 27 TOC for Mailbox 27 + Uint16 TOC28:1; // 28 TOC for Mailbox 28 + Uint16 TOC29:1; // 29 TOC for Mailbox 29 + Uint16 TOC30:1; // 30 TOC for Mailbox 30 + Uint16 TOC31:1; // 31 TOC for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANTOC_REG { + Uint32 all; + struct CANTOC_BITS bit; +}; + + +/* eCAN Time-out Status register (CANTOS) bit definitions */ +struct CANTOS_BITS { // bit description + Uint16 TOS0:1; // 0 TOS for Mailbox 0 + Uint16 TOS1:1; // 1 TOS for Mailbox 1 + Uint16 TOS2:1; // 2 TOS for Mailbox 2 + Uint16 TOS3:1; // 3 TOS for Mailbox 3 + Uint16 TOS4:1; // 4 TOS for Mailbox 4 + Uint16 TOS5:1; // 5 TOS for Mailbox 5 + Uint16 TOS6:1; // 6 TOS for Mailbox 6 + Uint16 TOS7:1; // 7 TOS for Mailbox 7 + Uint16 TOS8:1; // 8 TOS for Mailbox 8 + Uint16 TOS9:1; // 9 TOS for Mailbox 9 + Uint16 TOS10:1; // 10 TOS for Mailbox 10 + Uint16 TOS11:1; // 11 TOS for Mailbox 11 + Uint16 TOS12:1; // 12 TOS for Mailbox 12 + Uint16 TOS13:1; // 13 TOS for Mailbox 13 + Uint16 TOS14:1; // 14 TOS for Mailbox 14 + Uint16 TOS15:1; // 15 TOS for Mailbox 15 + Uint16 TOS16:1; // 16 TOS for Mailbox 16 + Uint16 TOS17:1; // 17 TOS for Mailbox 17 + Uint16 TOS18:1; // 18 TOS for Mailbox 18 + Uint16 TOS19:1; // 19 TOS for Mailbox 19 + Uint16 TOS20:1; // 20 TOS for Mailbox 20 + Uint16 TOS21:1; // 21 TOS for Mailbox 21 + Uint16 TOS22:1; // 22 TOS for Mailbox 22 + Uint16 TOS23:1; // 23 TOS for Mailbox 23 + Uint16 TOS24:1; // 24 TOS for Mailbox 24 + Uint16 TOS25:1; // 25 TOS for Mailbox 25 + Uint16 TOS26:1; // 26 TOS for Mailbox 26 + Uint16 TOS27:1; // 27 TOS for Mailbox 27 + Uint16 TOS28:1; // 28 TOS for Mailbox 28 + Uint16 TOS29:1; // 29 TOS for Mailbox 29 + Uint16 TOS30:1; // 30 TOS for Mailbox 30 + Uint16 TOS31:1; // 31 TOS for Mailbox 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANTOS_REG { + Uint32 all; + struct CANTOS_BITS bit; +}; + +/**************************************/ +/* eCAN Control & Status register file */ +/**************************************/ + +struct ECAN_REGS { + union CANME_REG CANME; // Mailbox Enable + union CANMD_REG CANMD; // Mailbox Direction + union CANTRS_REG CANTRS; // Transmit Request Set + union CANTRR_REG CANTRR; // Transmit Request Reset + union CANTA_REG CANTA; // Transmit Acknowledge + union CANAA_REG CANAA; // Abort Acknowledge + union CANRMP_REG CANRMP; // Received Message Pending + union CANRML_REG CANRML; // Received Message Lost + union CANRFP_REG CANRFP; // Remote Frame Pending + union CANGAM_REG CANGAM; // Global Acceptance Mask + union CANMC_REG CANMC; // Master Control + union CANBTC_REG CANBTC; // Bit Timing + union CANES_REG CANES; // Error Status + union CANTEC_REG CANTEC; // Transmit Error Counter + union CANREC_REG CANREC; // Receive Error Counter + union CANGIF0_REG CANGIF0; // Global Interrupt Flag 0 + union CANGIM_REG CANGIM; // Global Interrupt Mask 0 + union CANGIF1_REG CANGIF1; // Global Interrupt Flag 1 + union CANMIM_REG CANMIM; // Mailbox Interrupt Mask + union CANMIL_REG CANMIL; // Mailbox Interrupt Level + union CANOPC_REG CANOPC; // Overwrite Protection Control + union CANTIOC_REG CANTIOC; // TX I/O Control + union CANRIOC_REG CANRIOC; // RX I/O Control + Uint32 CANTSC; // Time-stamp counter + union CANTOC_REG CANTOC; // Time-out Control + union CANTOS_REG CANTOS; // Time-out Status + +}; + +/* --------------------------------------------------- */ +/* eCAN Mailbox Registers */ +/* ----------------------------------------------------*/ + +/* eCAN Message ID (MSGID) bit definitions */ +struct CANMSGID_BITS { // bits description + Uint16 EXTMSGID_L:16; // 0:15 + Uint16 EXTMSGID_H:2; // 16:17 + Uint16 STDMSGID:11; // 18:28 + Uint16 AAM:1; // 29 + Uint16 AME:1; // 30 + Uint16 IDE:1; // 31 + +}; + +/* Allow access to the bit fields or entire register */ +union CANMSGID_REG { + Uint32 all; + struct CANMSGID_BITS bit; +}; + +/* eCAN Message Control Register (MSGCTRL) bit definitions */ +struct CANMSGCTRL_BITS { // bits description + Uint16 DLC:4; // 0:3 + Uint16 RTR:1; // 4 + Uint16 rsvd1:3; // 7:5 reserved + Uint16 TPL:5; // 12:8 + Uint16 rsvd2:3; // 15:13 reserved + Uint16 rsvd3:16; // 31:16 reserved +}; + +/* Allow access to the bit fields or entire register */ +union CANMSGCTRL_REG { + Uint32 all; + struct CANMSGCTRL_BITS bit; +}; + +/* eCAN Message Data Register low (MDR_L) word definitions */ +struct CANMDL_WORDS { // bits description + Uint16 LOW_WORD:16; // 0:15 + Uint16 HI_WORD:16; // 31:16 +}; + +/* eCAN Message Data Register low (MDR_L) byte definitions */ +struct CANMDL_BYTES { // bits description + Uint16 BYTE3:8; // 31:24 + Uint16 BYTE2:8; // 23:16 + Uint16 BYTE1:8; // 15:8 + Uint16 BYTE0:8; // 7:0 +}; + + +/* Allow access to the bit fields or entire register */ + +union CANMDL_REG { + Uint32 all; + struct CANMDL_WORDS word; + struct CANMDL_BYTES byte; +}; + + + +/* eCAN Message Data Register high (MDR_H) word definitions */ +struct CANMDH_WORDS { // bits description + Uint16 LOW_WORD:16; // 0:15 + Uint16 HI_WORD:16; // 31:16 +}; + +/* eCAN Message Data Register low (MDR_H) byte definitions */ +struct CANMDH_BYTES { // bits description + Uint16 BYTE7:8; // 63:56 + Uint16 BYTE6:8; // 55:48 + Uint16 BYTE5:8; // 47:40 + Uint16 BYTE4:8; // 39:32 +}; + +/* Allow access to the bit fields or entire register */ +union CANMDH_REG { + Uint32 all; + struct CANMDH_WORDS word; + struct CANMDH_BYTES byte; +}; + + +struct MBOX { + union CANMSGID_REG MSGID; + union CANMSGCTRL_REG MSGCTRL; + union CANMDL_REG MDL; + union CANMDH_REG MDH; +}; + +/**************************************/ +/* eCAN Mailboxes */ +/**************************************/ + +struct ECAN_MBOXES { + struct MBOX MBOX0; + struct MBOX MBOX1; + struct MBOX MBOX2; + struct MBOX MBOX3; + struct MBOX MBOX4; + struct MBOX MBOX5; + struct MBOX MBOX6; + struct MBOX MBOX7; + struct MBOX MBOX8; + struct MBOX MBOX9; + struct MBOX MBOX10; + struct MBOX MBOX11; + struct MBOX MBOX12; + struct MBOX MBOX13; + struct MBOX MBOX14; + struct MBOX MBOX15; + struct MBOX MBOX16; + struct MBOX MBOX17; + struct MBOX MBOX18; + struct MBOX MBOX19; + struct MBOX MBOX20; + struct MBOX MBOX21; + struct MBOX MBOX22; + struct MBOX MBOX23; + struct MBOX MBOX24; + struct MBOX MBOX25; + struct MBOX MBOX26; + struct MBOX MBOX27; + struct MBOX MBOX28; + struct MBOX MBOX29; + struct MBOX MBOX30; + struct MBOX MBOX31; +}; + +/* eCAN Local Acceptance Mask (LAM) bit definitions */ +struct CANLAM_BITS { // bits description + Uint16 LAM_L:16; // 0:15 + Uint16 LAM_H:13; // 16:28 + Uint16 rsvd1:2; // 29:30 reserved + Uint16 LAMI:1; // 31 +}; + +/* Allow access to the bit fields or entire register */ +union CANLAM_REG { + Uint32 all; + struct CANLAM_BITS bit; +}; + + +/**************************************/ +/* eCAN Local Acceptance Masks */ +/**************************************/ + +/* eCAN LAM File */ +struct LAM_REGS { + union CANLAM_REG LAM0; + union CANLAM_REG LAM1; + union CANLAM_REG LAM2; + union CANLAM_REG LAM3; + union CANLAM_REG LAM4; + union CANLAM_REG LAM5; + union CANLAM_REG LAM6; + union CANLAM_REG LAM7; + union CANLAM_REG LAM8; + union CANLAM_REG LAM9; + union CANLAM_REG LAM10; + union CANLAM_REG LAM11; + union CANLAM_REG LAM12; + union CANLAM_REG LAM13; + union CANLAM_REG LAM14; + union CANLAM_REG LAM15; + union CANLAM_REG LAM16; + union CANLAM_REG LAM17; + union CANLAM_REG LAM18; + union CANLAM_REG LAM19; + union CANLAM_REG LAM20; + union CANLAM_REG LAM21; + union CANLAM_REG LAM22; + union CANLAM_REG LAM23; + union CANLAM_REG LAM24; + union CANLAM_REG LAM25; + union CANLAM_REG LAM26; + union CANLAM_REG LAM27; + union CANLAM_REG LAM28; + union CANLAM_REG LAM29; + union CANLAM_REG LAM30; + union CANLAM_REG LAM31; +}; + +/* Mailbox MOTS File */ + +struct MOTS_REGS { + Uint32 MOTS0; + Uint32 MOTS1; + Uint32 MOTS2; + Uint32 MOTS3; + Uint32 MOTS4; + Uint32 MOTS5; + Uint32 MOTS6; + Uint32 MOTS7; + Uint32 MOTS8; + Uint32 MOTS9; + Uint32 MOTS10; + Uint32 MOTS11; + Uint32 MOTS12; + Uint32 MOTS13; + Uint32 MOTS14; + Uint32 MOTS15; + Uint32 MOTS16; + Uint32 MOTS17; + Uint32 MOTS18; + Uint32 MOTS19; + Uint32 MOTS20; + Uint32 MOTS21; + Uint32 MOTS22; + Uint32 MOTS23; + Uint32 MOTS24; + Uint32 MOTS25; + Uint32 MOTS26; + Uint32 MOTS27; + Uint32 MOTS28; + Uint32 MOTS29; + Uint32 MOTS30; + Uint32 MOTS31; +}; + +/* Mailbox MOTO File */ + +struct MOTO_REGS { + Uint32 MOTO0; + Uint32 MOTO1; + Uint32 MOTO2; + Uint32 MOTO3; + Uint32 MOTO4; + Uint32 MOTO5; + Uint32 MOTO6; + Uint32 MOTO7; + Uint32 MOTO8; + Uint32 MOTO9; + Uint32 MOTO10; + Uint32 MOTO11; + Uint32 MOTO12; + Uint32 MOTO13; + Uint32 MOTO14; + Uint32 MOTO15; + Uint32 MOTO16; + Uint32 MOTO17; + Uint32 MOTO18; + Uint32 MOTO19; + Uint32 MOTO20; + Uint32 MOTO21; + Uint32 MOTO22; + Uint32 MOTO23; + Uint32 MOTO24; + Uint32 MOTO25; + Uint32 MOTO26; + Uint32 MOTO27; + Uint32 MOTO28; + Uint32 MOTO29; + Uint32 MOTO30; + Uint32 MOTO31; +}; + + +//--------------------------------------------------------------------------- +// eCAN External References & Function Declarations: +// +extern struct ECAN_REGS ECanaRegs; +extern struct ECAN_MBOXES ECanaMboxes; +extern struct LAM_REGS ECanaLAMRegs; +extern struct MOTO_REGS ECanaMOTORegs; +extern struct MOTS_REGS ECanaMOTSRegs; + +extern struct ECAN_REGS ECanbRegs; +extern struct ECAN_MBOXES ECanbMboxes; +extern struct LAM_REGS ECanbLAMRegs; +extern struct MOTO_REGS ECanbMOTORegs; +extern struct MOTS_REGS ECanbMOTSRegs; + + +#endif // end of DSP2833x_ECAN.H definition + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_ECap.h b/Inu/main_matlab/device_support/include/DSP2833x_ECap.h new file mode 100644 index 0000000..4ba692e --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_ECap.h @@ -0,0 +1,145 @@ +// TI File $Revision: /main/1 $ +// Checkin $Date: August 18, 2006 13:52:07 $ +//########################################################################### +// +// FILE: DSP2833x_ECap.h +// +// TITLE: DSP2833x Enhanced Capture Module Register Bit Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_ECAP_H +#define DSP2833x_ECAP_H + + + +//---------------------------------------------------- +// Capture control register 1 bit definitions */ +struct ECCTL1_BITS { // bits description + Uint16 CAP1POL:1; // 0 Capture Event 1 Polarity select + Uint16 CTRRST1:1; // 1 Counter Reset on Capture Event 1 + Uint16 CAP2POL:1; // 2 Capture Event 2 Polarity select + Uint16 CTRRST2:1; // 3 Counter Reset on Capture Event 2 + Uint16 CAP3POL:1; // 4 Capture Event 3 Polarity select + Uint16 CTRRST3:1; // 5 Counter Reset on Capture Event 3 + Uint16 CAP4POL:1; // 6 Capture Event 4 Polarity select + Uint16 CTRRST4:1; // 7 Counter Reset on Capture Event 4 + Uint16 CAPLDEN:1; // 8 Enable Loading CAP1-4 regs on a Cap Event + Uint16 PRESCALE:5; // 13:9 Event Filter prescale select + Uint16 FREE_SOFT:2; // 15:14 Emulation mode +}; + +union ECCTL1_REG { + Uint16 all; + struct ECCTL1_BITS bit; +}; + + +// In V1.1 the STOPVALUE bit field was changed to +// STOP_WRAP. This correlated to a silicon change from +// F2833x Rev 0 to Rev A. +//---------------------------------------------------- +// Capture control register 2 bit definitions */ +struct ECCTL2_BITS { // bits description + Uint16 CONT_ONESHT:1; // 0 Continuous or one-shot + Uint16 STOP_WRAP:2; // 2:1 Stop value for one-shot, Wrap for continuous + Uint16 REARM:1; // 3 One-shot re-arm + Uint16 TSCTRSTOP:1; // 4 TSCNT counter stop + Uint16 SYNCI_EN:1; // 5 Counter sync-in select + Uint16 SYNCO_SEL:2; // 7:6 Sync-out mode + Uint16 SWSYNC:1; // 8 SW forced counter sync + Uint16 CAP_APWM:1; // 9 CAP/APWM operating mode select + Uint16 APWMPOL:1; // 10 APWM output polarity select + Uint16 rsvd1:5; // 15:11 +}; + + +union ECCTL2_REG { + Uint16 all; + struct ECCTL2_BITS bit; +}; + + +//---------------------------------------------------- +// ECAP interrupt enable register bit definitions */ +struct ECEINT_BITS { // bits description + Uint16 rsvd1:1; // 0 reserved + Uint16 CEVT1:1; // 1 Capture Event 1 Interrupt Enable + Uint16 CEVT2:1; // 2 Capture Event 2 Interrupt Enable + Uint16 CEVT3:1; // 3 Capture Event 3 Interrupt Enable + Uint16 CEVT4:1; // 4 Capture Event 4 Interrupt Enable + Uint16 CTROVF:1; // 5 Counter Overflow Interrupt Enable + Uint16 CTR_EQ_PRD:1; // 6 Period Equal Interrupt Enable + Uint16 CTR_EQ_CMP:1; // 7 Compare Equal Interrupt Enable + Uint16 rsvd2:8; // 15:8 reserved +}; + + +union ECEINT_REG { + Uint16 all; + struct ECEINT_BITS bit; +}; + +//---------------------------------------------------- +// ECAP interrupt flag register bit definitions */ +struct ECFLG_BITS { // bits description + Uint16 INT:1; // 0 Global Flag + Uint16 CEVT1:1; // 1 Capture Event 1 Interrupt Flag + Uint16 CEVT2:1; // 2 Capture Event 2 Interrupt Flag + Uint16 CEVT3:1; // 3 Capture Event 3 Interrupt Flag + Uint16 CEVT4:1; // 4 Capture Event 4 Interrupt Flag + Uint16 CTROVF:1; // 5 Counter Overflow Interrupt Flag + Uint16 CTR_EQ_PRD:1; // 6 Period Equal Interrupt Flag + Uint16 CTR_EQ_CMP:1; // 7 Compare Equal Interrupt Flag + Uint16 rsvd2:8; // 15:8 reserved +}; + + +union ECFLG_REG { + Uint16 all; + struct ECFLG_BITS bit; +}; + + +//---------------------------------------------------- + +struct ECAP_REGS { + Uint32 TSCTR; // Time stamp counter + Uint32 CTRPHS; // Counter phase + Uint32 CAP1; // Capture 1 + Uint32 CAP2; // Capture 2 + Uint32 CAP3; // Capture 3 + Uint32 CAP4; // Capture 4 + Uint16 rsvd1[8]; // reserved + union ECCTL1_REG ECCTL1; // Capture Control Reg 1 + union ECCTL2_REG ECCTL2; // Capture Control Reg 2 + union ECEINT_REG ECEINT; // ECAP interrupt enable + union ECFLG_REG ECFLG; // ECAP interrupt flags + union ECFLG_REG ECCLR; // ECAP interrupt clear + union ECEINT_REG ECFRC; // ECAP interrupt force + Uint16 rsvd2[6]; // reserved +}; + + + + +//--------------------------------------------------------------------------- +// GPI/O External References & Function Declarations: +// +extern struct ECAP_REGS ECap1Regs; +extern struct ECAP_REGS ECap2Regs; +extern struct ECAP_REGS ECap3Regs; +extern struct ECAP_REGS ECap4Regs; +extern struct ECAP_REGS ECap5Regs; +extern struct ECAP_REGS ECap6Regs; + + +#endif // end of DSP2833x_ECAP_H definition + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_EPwm.h b/Inu/main_matlab/device_support/include/DSP2833x_EPwm.h new file mode 100644 index 0000000..c3fa4d6 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_EPwm.h @@ -0,0 +1,424 @@ +// TI File $Revision: /main/1 $ +// Checkin $Date: August 18, 2006 13:52:10 $ +//########################################################################### +// +// FILE: DSP2833x_EPwm.h +// +// TITLE: DSP2833x Enhanced PWM Module Register Bit Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_EPWM_H +#define DSP2833x_EPWM_H + + +//---------------------------------------------------- +// Time base control register bit definitions */ +struct TBCTL_BITS { // bits description + Uint16 CTRMODE:2; // 1:0 Counter Mode + Uint16 PHSEN:1; // 2 Phase load enable + Uint16 PRDLD:1; // 3 Active period load + Uint16 SYNCOSEL:2; // 5:4 Sync output select + Uint16 SWFSYNC:1; // 6 Software force sync pulse + Uint16 HSPCLKDIV:3; // 9:7 High speed time pre-scale + Uint16 CLKDIV:3; // 12:10 Timebase clock pre-scale + Uint16 PHSDIR:1; // 13 Phase Direction + Uint16 FREE_SOFT:2; // 15:14 Emulation mode +}; + +union TBCTL_REG { + Uint16 all; + struct TBCTL_BITS bit; +}; + +//---------------------------------------------------- +// Time base status register bit definitions */ +struct TBSTS_BITS { // bits description + Uint16 CTRDIR:1; // 0 Counter direction status + Uint16 SYNCI:1; // 1 External input sync status + Uint16 CTRMAX:1; // 2 Counter max latched status + Uint16 rsvd1:13; // 15:3 reserved +}; + +union TBSTS_REG { + Uint16 all; + struct TBSTS_BITS bit; +}; + +//---------------------------------------------------- +// Compare control register bit definitions */ +struct CMPCTL_BITS { // bits description + Uint16 LOADAMODE:2; // 0:1 Active compare A + Uint16 LOADBMODE:2; // 3:2 Active compare B + Uint16 SHDWAMODE:1; // 4 Compare A block operating mode + Uint16 rsvd1:1; // 5 reserved + Uint16 SHDWBMODE:1; // 6 Compare B block operating mode + Uint16 rsvd2:1; // 7 reserved + Uint16 SHDWAFULL:1; // 8 Compare A Shadow registers full Status + Uint16 SHDWBFULL:1; // 9 Compare B Shadow registers full Status + Uint16 rsvd3:6; // 15:10 reserved +}; + + +union CMPCTL_REG { + Uint16 all; + struct CMPCTL_BITS bit; +}; + +//---------------------------------------------------- +// Action qualifier register bit definitions */ +struct AQCTL_BITS { // bits description + Uint16 ZRO:2; // 1:0 Action Counter = Zero + Uint16 PRD:2; // 3:2 Action Counter = Period + Uint16 CAU:2; // 5:4 Action Counter = Compare A up + Uint16 CAD:2; // 7:6 Action Counter = Compare A down + Uint16 CBU:2; // 9:8 Action Counter = Compare B up + Uint16 CBD:2; // 11:10 Action Counter = Compare B down + Uint16 rsvd:4; // 15:12 reserved +}; + +union AQCTL_REG { + Uint16 all; + struct AQCTL_BITS bit; +}; + +//---------------------------------------------------- +// Action qualifier SW force register bit definitions */ +struct AQSFRC_BITS { // bits description + Uint16 ACTSFA:2; // 1:0 Action when One-time SW Force A invoked + Uint16 OTSFA:1; // 2 One-time SW Force A output + Uint16 ACTSFB:2; // 4:3 Action when One-time SW Force B invoked + Uint16 OTSFB:1; // 5 One-time SW Force A output + Uint16 RLDCSF:2; // 7:6 Reload from Shadow options + Uint16 rsvd1:8; // 15:8 reserved +}; + +union AQSFRC_REG { + Uint16 all; + struct AQSFRC_BITS bit; +}; + +//---------------------------------------------------- +// Action qualifier continuous SW force register bit definitions */ +struct AQCSFRC_BITS { // bits description + Uint16 CSFA:2; // 1:0 Continuous Software Force on output A + Uint16 CSFB:2; // 3:2 Continuous Software Force on output B + Uint16 rsvd1:12; // 15:4 reserved +}; + +union AQCSFRC_REG { + Uint16 all; + struct AQCSFRC_BITS bit; +}; + + +// As of version 1.1 +// Changed the MODE bit-field to OUT_MODE +// Added the bit-field IN_MODE +// This corresponds to changes in silicon as of F2833x devices +// Rev A silicon. +//---------------------------------------------------- +// Dead-band generator control register bit definitions +struct DBCTL_BITS { // bits description + Uint16 OUT_MODE:2; // 1:0 Dead Band Output Mode Control + Uint16 POLSEL:2; // 3:2 Polarity Select Control + Uint16 IN_MODE:2; // 5:4 Dead Band Input Select Mode Control + Uint16 rsvd1:10; // 15:4 reserved +}; + +union DBCTL_REG { + Uint16 all; + struct DBCTL_BITS bit; +}; + + +//---------------------------------------------------- +// Trip zone select register bit definitions +struct TZSEL_BITS { // bits description + Uint16 CBC1:1; // 0 TZ1 CBC select + Uint16 CBC2:1; // 1 TZ2 CBC select + Uint16 CBC3:1; // 2 TZ3 CBC select + Uint16 CBC4:1; // 3 TZ4 CBC select + Uint16 CBC5:1; // 4 TZ5 CBC select + Uint16 CBC6:1; // 5 TZ6 CBC select + Uint16 rsvd1:2; // 7:6 reserved + Uint16 OSHT1:1; // 8 One-shot TZ1 select + Uint16 OSHT2:1; // 9 One-shot TZ2 select + Uint16 OSHT3:1; // 10 One-shot TZ3 select + Uint16 OSHT4:1; // 11 One-shot TZ4 select + Uint16 OSHT5:1; // 12 One-shot TZ5 select + Uint16 OSHT6:1; // 13 One-shot TZ6 select + Uint16 rsvd2:2; // 15:14 reserved +}; + +union TZSEL_REG { + Uint16 all; + struct TZSEL_BITS bit; +}; + + +//---------------------------------------------------- +// Trip zone control register bit definitions */ +struct TZCTL_BITS { // bits description + Uint16 TZA:2; // 1:0 TZ1 to TZ6 Trip Action On EPWMxA + Uint16 TZB:2; // 3:2 TZ1 to TZ6 Trip Action On EPWMxB + Uint16 rsvd:12; // 15:4 reserved +}; + +union TZCTL_REG { + Uint16 all; + struct TZCTL_BITS bit; +}; + + +//---------------------------------------------------- +// Trip zone control register bit definitions */ +struct TZEINT_BITS { // bits description + Uint16 rsvd1:1; // 0 reserved + Uint16 CBC:1; // 1 Trip Zones Cycle By Cycle Int Enable + Uint16 OST:1; // 2 Trip Zones One Shot Int Enable + Uint16 rsvd2:13; // 15:3 reserved +}; + + +union TZEINT_REG { + Uint16 all; + struct TZEINT_BITS bit; +}; + + +//---------------------------------------------------- +// Trip zone flag register bit definitions */ +struct TZFLG_BITS { // bits description + Uint16 INT:1; // 0 Global status + Uint16 CBC:1; // 1 Trip Zones Cycle By Cycle Int + Uint16 OST:1; // 2 Trip Zones One Shot Int + Uint16 rsvd2:13; // 15:3 reserved +}; + +union TZFLG_REG { + Uint16 all; + struct TZFLG_BITS bit; +}; + +//---------------------------------------------------- +// Trip zone flag clear register bit definitions */ +struct TZCLR_BITS { // bits description + Uint16 INT:1; // 0 Global status + Uint16 CBC:1; // 1 Trip Zones Cycle By Cycle Int + Uint16 OST:1; // 2 Trip Zones One Shot Int + Uint16 rsvd2:13; // 15:3 reserved +}; + +union TZCLR_REG { + Uint16 all; + struct TZCLR_BITS bit; +}; + +//---------------------------------------------------- +// Trip zone flag force register bit definitions */ +struct TZFRC_BITS { // bits description + Uint16 rsvd1:1; // 0 reserved + Uint16 CBC:1; // 1 Trip Zones Cycle By Cycle Int + Uint16 OST:1; // 2 Trip Zones One Shot Int + Uint16 rsvd2:13; // 15:3 reserved +}; + +union TZFRC_REG { + Uint16 all; + struct TZFRC_BITS bit; +}; + +//---------------------------------------------------- +// Event trigger select register bit definitions */ +struct ETSEL_BITS { // bits description + Uint16 INTSEL:3; // 2:0 EPWMxINTn Select + Uint16 INTEN:1; // 3 EPWMxINTn Enable + Uint16 rsvd1:4; // 7:4 reserved + Uint16 SOCASEL:3; // 10:8 Start of conversion A Select + Uint16 SOCAEN:1; // 11 Start of conversion A Enable + Uint16 SOCBSEL:3; // 14:12 Start of conversion B Select + Uint16 SOCBEN:1; // 15 Start of conversion B Enable +}; + +union ETSEL_REG { + Uint16 all; + struct ETSEL_BITS bit; +}; + + +//---------------------------------------------------- +// Event trigger pre-scale register bit definitions */ +struct ETPS_BITS { // bits description + Uint16 INTPRD:2; // 1:0 EPWMxINTn Period Select + Uint16 INTCNT:2; // 3:2 EPWMxINTn Counter Register + Uint16 rsvd1:4; // 7:4 reserved + Uint16 SOCAPRD:2; // 9:8 EPWMxSOCA Period Select + Uint16 SOCACNT:2; // 11:10 EPWMxSOCA Counter Register + Uint16 SOCBPRD:2; // 13:12 EPWMxSOCB Period Select + Uint16 SOCBCNT:2; // 15:14 EPWMxSOCB Counter Register +}; + +union ETPS_REG { + Uint16 all; + struct ETPS_BITS bit; +}; + +//---------------------------------------------------- +// Event trigger Flag register bit definitions */ +struct ETFLG_BITS { // bits description + Uint16 INT:1; // 0 EPWMxINTn Flag + Uint16 rsvd1:1; // 1 reserved + Uint16 SOCA:1; // 2 EPWMxSOCA Flag + Uint16 SOCB:1; // 3 EPWMxSOCB Flag + Uint16 rsvd2:12; // 15:4 reserved +}; + +union ETFLG_REG { + Uint16 all; + struct ETFLG_BITS bit; +}; + + +//---------------------------------------------------- +// Event trigger Clear register bit definitions */ +struct ETCLR_BITS { // bits description + Uint16 INT:1; // 0 EPWMxINTn Clear + Uint16 rsvd1:1; // 1 reserved + Uint16 SOCA:1; // 2 EPWMxSOCA Clear + Uint16 SOCB:1; // 3 EPWMxSOCB Clear + Uint16 rsvd2:12; // 15:4 reserved +}; + +union ETCLR_REG { + Uint16 all; + struct ETCLR_BITS bit; +}; + +//---------------------------------------------------- +// Event trigger Force register bit definitions */ +struct ETFRC_BITS { // bits description + Uint16 INT:1; // 0 EPWMxINTn Force + Uint16 rsvd1:1; // 1 reserved + Uint16 SOCA:1; // 2 EPWMxSOCA Force + Uint16 SOCB:1; // 3 EPWMxSOCB Force + Uint16 rsvd2:12; // 15:4 reserved +}; + +union ETFRC_REG { + Uint16 all; + struct ETFRC_BITS bit; +}; +//---------------------------------------------------- +// PWM chopper control register bit definitions */ +struct PCCTL_BITS { // bits description + Uint16 CHPEN:1; // 0 PWM chopping enable + Uint16 OSHTWTH:4; // 4:1 One-shot pulse width + Uint16 CHPFREQ:3; // 7:5 Chopping clock frequency + Uint16 CHPDUTY:3; // 10:8 Chopping clock Duty cycle + Uint16 rsvd1:5; // 15:11 reserved +}; + + +union PCCTL_REG { + Uint16 all; + struct PCCTL_BITS bit; +}; + +struct HRCNFG_BITS { // bits description + Uint16 EDGMODE:2; // 1:0 Edge Mode select Bits + Uint16 CTLMODE:1; // 2 Control mode Select Bit + Uint16 HRLOAD:1; // 3 Shadow mode Select Bit + Uint16 rsvd1:12; // 15:4 reserved +}; + +union HRCNFG_REG { + Uint16 all; + struct HRCNFG_BITS bit; +}; + + +struct TBPHS_HRPWM_REG { // bits description + Uint16 TBPHSHR; // 15:0 Extension register for HRPWM Phase (8 bits) + Uint16 TBPHS; // 31:16 Phase offset register +}; + +union TBPHS_HRPWM_GROUP { + Uint32 all; + struct TBPHS_HRPWM_REG half; +}; + +struct CMPA_HRPWM_REG { // bits description + Uint16 CMPAHR; // 15:0 Extension register for HRPWM compare (8 bits) + Uint16 CMPA; // 31:16 Compare A reg +}; + +union CMPA_HRPWM_GROUP { + Uint32 all; + struct CMPA_HRPWM_REG half; +}; + + +struct EPWM_REGS { + union TBCTL_REG TBCTL; // + union TBSTS_REG TBSTS; // + union TBPHS_HRPWM_GROUP TBPHS; // Union of TBPHS:TBPHSHR + Uint16 TBCTR; // Counter + Uint16 TBPRD; // Period register set + Uint16 rsvd1; // + union CMPCTL_REG CMPCTL; // Compare control + union CMPA_HRPWM_GROUP CMPA; // Union of CMPA:CMPAHR + Uint16 CMPB; // Compare B reg + union AQCTL_REG AQCTLA; // Action qual output A + union AQCTL_REG AQCTLB; // Action qual output B + union AQSFRC_REG AQSFRC; // Action qual SW force + union AQCSFRC_REG AQCSFRC; // Action qualifier continuous SW force + union DBCTL_REG DBCTL; // Dead-band control + Uint16 DBRED; // Dead-band rising edge delay + Uint16 DBFED; // Dead-band falling edge delay + union TZSEL_REG TZSEL; // Trip zone select + Uint16 rsvd2; + union TZCTL_REG TZCTL; // Trip zone control + union TZEINT_REG TZEINT; // Trip zone interrupt enable + union TZFLG_REG TZFLG; // Trip zone interrupt flags + union TZCLR_REG TZCLR; // Trip zone clear + union TZFRC_REG TZFRC; // Trip zone force interrupt + union ETSEL_REG ETSEL; // Event trigger selection + union ETPS_REG ETPS; // Event trigger pre-scaler + union ETFLG_REG ETFLG; // Event trigger flags + union ETCLR_REG ETCLR; // Event trigger clear + union ETFRC_REG ETFRC; // Event trigger force + union PCCTL_REG PCCTL; // PWM chopper control + Uint16 rsvd3; // + union HRCNFG_REG HRCNFG; // HRPWM Config Reg +}; + + + +//--------------------------------------------------------------------------- +// External References & Function Declarations: +// +extern struct EPWM_REGS EPwm1Regs; +extern struct EPWM_REGS EPwm2Regs; +extern struct EPWM_REGS EPwm3Regs; +extern struct EPWM_REGS EPwm4Regs; +extern struct EPWM_REGS EPwm5Regs; +extern struct EPWM_REGS EPwm6Regs; + +extern struct EPWM_REGS EPwm7Regs; +extern struct EPWM_REGS EPwm8Regs; +extern struct EPWM_REGS EPwm9Regs; +extern struct EPWM_REGS EPwm10Regs; +extern struct EPWM_REGS EPwm11Regs; +extern struct EPWM_REGS EPwm12Regs; + + +#endif // end of DSP2833x_EPWM_H definition + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_EQep.h b/Inu/main_matlab/device_support/include/DSP2833x_EQep.h new file mode 100644 index 0000000..3bf71f4 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_EQep.h @@ -0,0 +1,236 @@ +// TI File $Revision: /main/1 $ +// Checkin $Date: August 18, 2006 13:52:13 $ +//########################################################################### +// +// FILE: DSP2833x_EQep.h +// +// TITLE: DSP2833x Enhanced Quadrature Encoder Pulse Module +// Register Bit Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_EQEP_H +#define DSP2833x_EQEP_H + + + +//---------------------------------------------------- +// Capture decoder control register bit definitions */ +struct QDECCTL_BITS { // bits description + Uint16 rsvd1:5; // 4:0 reserved + Uint16 QSP:1; // 5 QEPS input polarity + Uint16 QIP:1; // 6 QEPI input polarity + Uint16 QBP:1; // 7 QEPB input polarity + Uint16 QAP:1; // 8 QEPA input polarity + Uint16 IGATE:1; // 9 Index pulse gating option + Uint16 SWAP:1; // 10 CLK/DIR signal source for Position Counter + Uint16 XCR:1; // 11 External clock rate + Uint16 SPSEL:1; // 12 Sync output pin select + Uint16 SOEN:1; // 13 Enable position compare sync + Uint16 QSRC:2; // 15:14 Position counter source +}; + +union QDECCTL_REG { + Uint16 all; + struct QDECCTL_BITS bit; +}; + + +//---------------------------------------------------- +// QEP control register bit definitions */ +struct QEPCTL_BITS { // bits description + Uint16 WDE:1; // 0 QEP watchdog enable + Uint16 UTE:1; // 1 QEP unit timer enable + Uint16 QCLM:1; // 2 QEP capture latch mode + Uint16 QPEN:1; // 3 Quadrature position counter enable + Uint16 IEL:2; // 5:4 Index event latch + Uint16 SEL:1; // 6 Strobe event latch + Uint16 SWI:1; // 7 Software init position counter + Uint16 IEI:2; // 9:8 Index event init of position count + Uint16 SEI:2; // 11:10 Strobe event init + Uint16 PCRM:2; // 13:12 Position counter reset + Uint16 FREE_SOFT:2; // 15:14 Emulation mode +}; + +union QEPCTL_REG { + Uint16 all; + struct QEPCTL_BITS bit; +}; + + +//---------------------------------------------------- +// Quadrature capture control register bit definitions */ +struct QCAPCTL_BITS { // bits description + Uint16 UPPS:4; // 3:0 Unit position pre-scale + Uint16 CCPS:3; // 6:4 QEP capture timer pre-scale + Uint16 rsvd1:8; // 14:7 reserved + Uint16 CEN:1; // 15 Enable QEP capture +}; + + +union QCAPCTL_REG { + Uint16 all; + struct QCAPCTL_BITS bit; +}; + + + +//---------------------------------------------------- +// Position compare control register bit definitions */ +struct QPOSCTL_BITS { // bits description + Uint16 PCSPW:12; // 11:0 Position compare sync pulse width + Uint16 PCE:1; // 12 Position compare enable/disable + Uint16 PCPOL:1; // 13 Polarity of sync output + Uint16 PCLOAD:1; // 14 Position compare of shadow load + Uint16 PCSHDW:1; // 15 Position compare shadow enable +}; + +union QPOSCTL_REG { + Uint16 all; + struct QPOSCTL_BITS bit; +}; + +//---------------------------------------------------- +// QEP interrupt control register bit definitions */ +struct QEINT_BITS { // bits description + Uint16 rsvd1:1; // 0 reserved + Uint16 PCE:1; // 1 Position counter error + Uint16 QPE:1; // 2 Quadrature phase error + Uint16 QDC:1; // 3 Quadrature dir change + Uint16 WTO:1; // 4 Watchdog timeout + Uint16 PCU:1; // 5 Position counter underflow + Uint16 PCO:1; // 6 Position counter overflow + Uint16 PCR:1; // 7 Position compare ready + Uint16 PCM:1; // 8 Position compare match + Uint16 SEL:1; // 9 Strobe event latch + Uint16 IEL:1; // 10 Event latch + Uint16 UTO:1; // 11 Unit timeout + Uint16 rsvd2:4; // 15:12 reserved +}; + + +union QEINT_REG { + Uint16 all; + struct QEINT_BITS bit; +}; + + +//---------------------------------------------------- +// QEP interrupt status register bit definitions */ +struct QFLG_BITS { // bits description + Uint16 INT:1; // 0 Global interrupt + Uint16 PCE:1; // 1 Position counter error + Uint16 PHE:1; // 2 Quadrature phase error + Uint16 QDC:1; // 3 Quadrature dir change + Uint16 WTO:1; // 4 Watchdog timeout + Uint16 PCU:1; // 5 Position counter underflow + Uint16 PCO:1; // 6 Position counter overflow + Uint16 PCR:1; // 7 Position compare ready + Uint16 PCM:1; // 8 Position compare match + Uint16 SEL:1; // 9 Strobe event latch + Uint16 IEL:1; // 10 Event latch + Uint16 UTO:1; // 11 Unit timeout + Uint16 rsvd2:4; // 15:12 reserved +}; + + +union QFLG_REG { + Uint16 all; + struct QFLG_BITS bit; +}; + +//---------------------------------------------------- +// QEP interrupt force register bit definitions */ +struct QFRC_BITS { // bits description + Uint16 reserved:1; // 0 Reserved + Uint16 PCE:1; // 1 Position counter error + Uint16 PHE:1; // 2 Quadrature phase error + Uint16 QDC:1; // 3 Quadrature dir change + Uint16 WTO:1; // 4 Watchdog timeout + Uint16 PCU:1; // 5 Position counter underflow + Uint16 PCO:1; // 6 Position counter overflow + Uint16 PCR:1; // 7 Position compare ready + Uint16 PCM:1; // 8 Position compare match + Uint16 SEL:1; // 9 Strobe event latch + Uint16 IEL:1; // 10 Event latch + Uint16 UTO:1; // 11 Unit timeout + Uint16 rsvd2:4; // 15:12 reserved +}; + + +union QFRC_REG { + Uint16 all; + struct QFRC_BITS bit; +}; + +// V1.1 Added UPEVNT (bit 7) This reflects changes +// made as of F2833x Rev A devices +//---------------------------------------------------- +// QEP status register bit definitions */ +struct QEPSTS_BITS { // bits description + Uint16 PCEF:1; // 0 Position counter error + Uint16 FIMF:1; // 1 First index marker + Uint16 CDEF:1; // 2 Capture direction error + Uint16 COEF:1; // 3 Capture overflow error + Uint16 QDLF:1; // 4 QEP direction latch + Uint16 QDF:1; // 5 Quadrature direction + Uint16 FIDF:1; // 6 Direction on first index marker + Uint16 UPEVNT:1; // 7 Unit position event flag + Uint16 rsvd1:8; // 15:8 reserved +}; + +union QEPSTS_REG { + Uint16 all; + struct QEPSTS_BITS bit; +}; + +//---------------------------------------------------- + +struct EQEP_REGS { + Uint32 QPOSCNT; // Position counter + Uint32 QPOSINIT; // Position counter init + Uint32 QPOSMAX; // Maximum position count + Uint32 QPOSCMP; // Position compare + Uint32 QPOSILAT; // Index position latch + Uint32 QPOSSLAT; // Strobe position latch + Uint32 QPOSLAT; // Position latch + Uint32 QUTMR; // Unit timer + Uint32 QUPRD; // Unit period + Uint16 QWDTMR; // QEP watchdog timer + Uint16 QWDPRD; // QEP watchdog period + union QDECCTL_REG QDECCTL; // Quadrature decoder control + union QEPCTL_REG QEPCTL; // QEP control + union QCAPCTL_REG QCAPCTL; // Quadrature capture control + union QPOSCTL_REG QPOSCTL; // Position compare control + union QEINT_REG QEINT; // QEP interrupt control + union QFLG_REG QFLG; // QEP interrupt flag + union QFLG_REG QCLR; // QEP interrupt clear + union QFRC_REG QFRC; // QEP interrupt force + union QEPSTS_REG QEPSTS; // QEP status + Uint16 QCTMR; // QEP capture timer + Uint16 QCPRD; // QEP capture period + Uint16 QCTMRLAT; // QEP capture latch + Uint16 QCPRDLAT; // QEP capture period latch + Uint16 rsvd1[30]; // reserved +}; + + + + +//--------------------------------------------------------------------------- +// GPI/O External References & Function Declarations: +// +extern struct EQEP_REGS EQep1Regs; +extern struct EQEP_REGS EQep2Regs; + + + +#endif // end of DSP2833x_EQEP_H definition + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_Gpio.h b/Inu/main_matlab/device_support/include/DSP2833x_Gpio.h new file mode 100644 index 0000000..8584011 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_Gpio.h @@ -0,0 +1,385 @@ +// TI File $Revision: /main/4 $ +// Checkin $Date: November 15, 2007 09:58:53 $ +//########################################################################### +// +// FILE: DSP2833x_Gpio.h +// +// TITLE: DSP2833x General Purpose I/O Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_GPIO_H +#define DSP2833x_GPIO_H + + + +//---------------------------------------------------- +// GPIO A control register bit definitions */ +struct GPACTRL_BITS { // bits description + Uint16 QUALPRD0:8; // 7:0 Qual period + Uint16 QUALPRD1:8; // 15:8 Qual period + Uint16 QUALPRD2:8; // 23:16 Qual period + Uint16 QUALPRD3:8; // 31:24 Qual period +}; + +union GPACTRL_REG { + Uint32 all; + struct GPACTRL_BITS bit; +}; + +//---------------------------------------------------- +// GPIO B control register bit definitions */ +struct GPBCTRL_BITS { // bits description + Uint16 QUALPRD0:8; // 7:0 Qual period + Uint16 QUALPRD1:8; // 15:8 Qual period + Uint16 QUALPRD2:8; // 23:16 Qual period + Uint16 QUALPRD3:8; // 31:24 +}; + +union GPBCTRL_REG { + Uint32 all; + struct GPBCTRL_BITS bit; +}; + +//---------------------------------------------------- +// GPIO A Qual/MUX select register bit definitions */ +struct GPA1_BITS { // bits description + Uint16 GPIO0:2; // 1:0 GPIO0 + Uint16 GPIO1:2; // 3:2 GPIO1 + Uint16 GPIO2:2; // 5:4 GPIO2 + Uint16 GPIO3:2; // 7:6 GPIO3 + Uint16 GPIO4:2; // 9:8 GPIO4 + Uint16 GPIO5:2; // 11:10 GPIO5 + Uint16 GPIO6:2; // 13:12 GPIO6 + Uint16 GPIO7:2; // 15:14 GPIO7 + Uint16 GPIO8:2; // 17:16 GPIO8 + Uint16 GPIO9:2; // 19:18 GPIO9 + Uint16 GPIO10:2; // 21:20 GPIO10 + Uint16 GPIO11:2; // 23:22 GPIO11 + Uint16 GPIO12:2; // 25:24 GPIO12 + Uint16 GPIO13:2; // 27:26 GPIO13 + Uint16 GPIO14:2; // 29:28 GPIO14 + Uint16 GPIO15:2; // 31:30 GPIO15 +}; + + +struct GPA2_BITS { // bits description + Uint16 GPIO16:2; // 1:0 GPIO16 + Uint16 GPIO17:2; // 3:2 GPIO17 + Uint16 GPIO18:2; // 5:4 GPIO18 + Uint16 GPIO19:2; // 7:6 GPIO19 + Uint16 GPIO20:2; // 9:8 GPIO20 + Uint16 GPIO21:2; // 11:10 GPIO21 + Uint16 GPIO22:2; // 13:12 GPIO22 + Uint16 GPIO23:2; // 15:14 GPIO23 + Uint16 GPIO24:2; // 17:16 GPIO24 + Uint16 GPIO25:2; // 19:18 GPIO25 + Uint16 GPIO26:2; // 21:20 GPIO26 + Uint16 GPIO27:2; // 23:22 GPIO27 + Uint16 GPIO28:2; // 25:24 GPIO28 + Uint16 GPIO29:2; // 27:26 GPIO29 + Uint16 GPIO30:2; // 29:28 GPIO30 + Uint16 GPIO31:2; // 31:30 GPIO31 +}; + +struct GPB1_BITS { // bits description + Uint16 GPIO32:2; // 1:0 GPIO32 + Uint16 GPIO33:2; // 3:2 GPIO33 + Uint16 GPIO34:2; // 5:4 GPIO34 + Uint16 GPIO35:2; // 7:6 GPIO35 + Uint16 GPIO36:2; // 9:8 GPIO36 + Uint16 GPIO37:2; // 11:10 GPIO37 + Uint16 GPIO38:2; // 13:12 GPIO38 + Uint16 GPIO39:2; // 15:14 GPIO39 + Uint16 GPIO40:2; // 17:16 GPIO40 + Uint16 GPIO41:2; // 19:16 GPIO41 + Uint16 GPIO42:2; // 21:20 GPIO42 + Uint16 GPIO43:2; // 23:22 GPIO43 + Uint16 GPIO44:2; // 25:24 GPIO44 + Uint16 GPIO45:2; // 27:26 GPIO45 + Uint16 GPIO46:2; // 29:28 GPIO46 + Uint16 GPIO47:2; // 31:30 GPIO47 +}; + +struct GPB2_BITS { // bits description + Uint16 GPIO48:2; // 1:0 GPIO48 + Uint16 GPIO49:2; // 3:2 GPIO49 + Uint16 GPIO50:2; // 5:4 GPIO50 + Uint16 GPIO51:2; // 7:6 GPIO51 + Uint16 GPIO52:2; // 9:8 GPIO52 + Uint16 GPIO53:2; // 11:10 GPIO53 + Uint16 GPIO54:2; // 13:12 GPIO54 + Uint16 GPIO55:2; // 15:14 GPIO55 + Uint16 GPIO56:2; // 17:16 GPIO56 + Uint16 GPIO57:2; // 19:18 GPIO57 + Uint16 GPIO58:2; // 21:20 GPIO58 + Uint16 GPIO59:2; // 23:22 GPIO59 + Uint16 GPIO60:2; // 25:24 GPIO60 + Uint16 GPIO61:2; // 27:26 GPIO61 + Uint16 GPIO62:2; // 29:28 GPIO62 + Uint16 GPIO63:2; // 31:30 GPIO63 +}; + +struct GPC1_BITS { // bits description + Uint16 GPIO64:2; // 1:0 GPIO64 + Uint16 GPIO65:2; // 3:2 GPIO65 + Uint16 GPIO66:2; // 5:4 GPIO66 + Uint16 GPIO67:2; // 7:6 GPIO67 + Uint16 GPIO68:2; // 9:8 GPIO68 + Uint16 GPIO69:2; // 11:10 GPIO69 + Uint16 GPIO70:2; // 13:12 GPIO70 + Uint16 GPIO71:2; // 15:14 GPIO71 + Uint16 GPIO72:2; // 17:16 GPIO72 + Uint16 GPIO73:2; // 19:18 GPIO73 + Uint16 GPIO74:2; // 21:20 GPIO74 + Uint16 GPIO75:2; // 23:22 GPIO75 + Uint16 GPIO76:2; // 25:24 GPIO76 + Uint16 GPIO77:2; // 27:26 GPIO77 + Uint16 GPIO78:2; // 29:28 GPIO78 + Uint16 GPIO79:2; // 31:30 GPIO79 +}; + + +struct GPC2_BITS { // bits description + Uint16 GPIO80:2; // 1:0 GPIO80 + Uint16 GPIO81:2; // 3:2 GPIO81 + Uint16 GPIO82:2; // 5:4 GPIO82 + Uint16 GPIO83:2; // 7:6 GPIO83 + Uint16 GPIO84:2; // 9:8 GPIO84 + Uint16 GPIO85:2; // 11:10 GPIO85 + Uint16 GPIO86:2; // 13:12 GPIO86 + Uint16 GPIO87:2; // 15:14 GPIO87 + Uint16 rsvd:16; // 31:16 reserved +}; + + +union GPA1_REG { + Uint32 all; + struct GPA1_BITS bit; +}; + +union GPA2_REG { + Uint32 all; + struct GPA2_BITS bit; +}; + +union GPB1_REG { + Uint32 all; + struct GPB1_BITS bit; +}; + +union GPB2_REG { + Uint32 all; + struct GPB2_BITS bit; +}; + +union GPC1_REG { + Uint32 all; + struct GPC1_BITS bit; +}; + +union GPC2_REG { + Uint32 all; + struct GPC2_BITS bit; +}; + +//---------------------------------------------------- +// GPIO A DIR/TOGGLE/SET/CLEAR register bit definitions */ +struct GPADAT_BITS { // bits description + Uint16 GPIO0:1; // 0 GPIO0 + Uint16 GPIO1:1; // 1 GPIO1 + Uint16 GPIO2:1; // 2 GPIO2 + Uint16 GPIO3:1; // 3 GPIO3 + Uint16 GPIO4:1; // 4 GPIO4 + Uint16 GPIO5:1; // 5 GPIO5 + Uint16 GPIO6:1; // 6 GPIO6 + Uint16 GPIO7:1; // 7 GPIO7 + Uint16 GPIO8:1; // 8 GPIO8 + Uint16 GPIO9:1; // 9 GPIO9 + Uint16 GPIO10:1; // 10 GPIO10 + Uint16 GPIO11:1; // 11 GPIO11 + Uint16 GPIO12:1; // 12 GPIO12 + Uint16 GPIO13:1; // 13 GPIO13 + Uint16 GPIO14:1; // 14 GPIO14 + Uint16 GPIO15:1; // 15 GPIO15 + Uint16 GPIO16:1; // 16 GPIO16 + Uint16 GPIO17:1; // 17 GPIO17 + Uint16 GPIO18:1; // 18 GPIO18 + Uint16 GPIO19:1; // 19 GPIO19 + Uint16 GPIO20:1; // 20 GPIO20 + Uint16 GPIO21:1; // 21 GPIO21 + Uint16 GPIO22:1; // 22 GPIO22 + Uint16 GPIO23:1; // 23 GPIO23 + Uint16 GPIO24:1; // 24 GPIO24 + Uint16 GPIO25:1; // 25 GPIO25 + Uint16 GPIO26:1; // 26 GPIO26 + Uint16 GPIO27:1; // 27 GPIO27 + Uint16 GPIO28:1; // 28 GPIO28 + Uint16 GPIO29:1; // 29 GPIO29 + Uint16 GPIO30:1; // 30 GPIO30 + Uint16 GPIO31:1; // 31 GPIO31 +}; + +struct GPBDAT_BITS { // bits description + Uint16 GPIO32:1; // 0 GPIO32 + Uint16 GPIO33:1; // 1 GPIO33 + Uint16 GPIO34:1; // 2 GPIO34 + Uint16 GPIO35:1; // 3 GPIO35 + Uint16 GPIO36:1; // 4 GPIO36 + Uint16 GPIO37:1; // 5 GPIO37 + Uint16 GPIO38:1; // 6 GPIO38 + Uint16 GPIO39:1; // 7 GPIO39 + Uint16 GPIO40:1; // 8 GPIO40 + Uint16 GPIO41:1; // 9 GPIO41 + Uint16 GPIO42:1; // 10 GPIO42 + Uint16 GPIO43:1; // 11 GPIO43 + Uint16 GPIO44:1; // 12 GPIO44 + Uint16 GPIO45:1; // 13 GPIO45 + Uint16 GPIO46:1; // 14 GPIO46 + Uint16 GPIO47:1; // 15 GPIO47 + Uint16 GPIO48:1; // 16 GPIO48 + Uint16 GPIO49:1; // 17 GPIO49 + Uint16 GPIO50:1; // 18 GPIO50 + Uint16 GPIO51:1; // 19 GPIO51 + Uint16 GPIO52:1; // 20 GPIO52 + Uint16 GPIO53:1; // 21 GPIO53 + Uint16 GPIO54:1; // 22 GPIO54 + Uint16 GPIO55:1; // 23 GPIO55 + Uint16 GPIO56:1; // 24 GPIO56 + Uint16 GPIO57:1; // 25 GPIO57 + Uint16 GPIO58:1; // 26 GPIO58 + Uint16 GPIO59:1; // 27 GPIO59 + Uint16 GPIO60:1; // 28 GPIO60 + Uint16 GPIO61:1; // 29 GPIO61 + Uint16 GPIO62:1; // 30 GPIO62 + Uint16 GPIO63:1; // 31 GPIO63 +}; + +struct GPCDAT_BITS { // bits description + Uint16 GPIO64:1; // 0 GPIO64 + Uint16 GPIO65:1; // 1 GPIO65 + Uint16 GPIO66:1; // 2 GPIO66 + Uint16 GPIO67:1; // 3 GPIO67 + Uint16 GPIO68:1; // 4 GPIO68 + Uint16 GPIO69:1; // 5 GPIO69 + Uint16 GPIO70:1; // 6 GPIO70 + Uint16 GPIO71:1; // 7 GPIO71 + Uint16 GPIO72:1; // 8 GPIO72 + Uint16 GPIO73:1; // 9 GPIO73 + Uint16 GPIO74:1; // 10 GPIO74 + Uint16 GPIO75:1; // 11 GPIO75 + Uint16 GPIO76:1; // 12 GPIO76 + Uint16 GPIO77:1; // 13 GPIO77 + Uint16 GPIO78:1; // 14 GPIO78 + Uint16 GPIO79:1; // 15 GPIO79 + Uint16 GPIO80:1; // 16 GPIO80 + Uint16 GPIO81:1; // 17 GPIO81 + Uint16 GPIO82:1; // 18 GPIO82 + Uint16 GPIO83:1; // 19 GPIO83 + Uint16 GPIO84:1; // 20 GPIO84 + Uint16 GPIO85:1; // 21 GPIO85 + Uint16 GPIO86:1; // 22 GPIO86 + Uint16 GPIO87:1; // 23 GPIO87 + Uint16 rsvd1:8; // 31:24 reserved +}; + + +union GPADAT_REG { + Uint32 all; + struct GPADAT_BITS bit; +}; + +union GPBDAT_REG { + Uint32 all; + struct GPBDAT_BITS bit; +}; + +union GPCDAT_REG { + Uint32 all; + struct GPCDAT_BITS bit; +}; + + + + +//---------------------------------------------------- +// GPIO Xint1/XINT2/XNMI select register bit definitions */ +struct GPIOXINT_BITS { // bits description + Uint16 GPIOSEL:5; // 4:0 Select GPIO interrupt input source + Uint16 rsvd1:11; // 15:5 reserved +}; + +union GPIOXINT_REG { + Uint16 all; + struct GPIOXINT_BITS bit; +}; + + +struct GPIO_CTRL_REGS { + union GPACTRL_REG GPACTRL; // GPIO A Control Register (GPIO0 to 31) + union GPA1_REG GPAQSEL1; // GPIO A Qualifier Select 1 Register (GPIO0 to 15) + union GPA2_REG GPAQSEL2; // GPIO A Qualifier Select 2 Register (GPIO16 to 31) + union GPA1_REG GPAMUX1; // GPIO A Mux 1 Register (GPIO0 to 15) + union GPA2_REG GPAMUX2; // GPIO A Mux 2 Register (GPIO16 to 31) + union GPADAT_REG GPADIR; // GPIO A Direction Register (GPIO0 to 31) + union GPADAT_REG GPAPUD; // GPIO A Pull Up Disable Register (GPIO0 to 31) + Uint32 rsvd1; + union GPBCTRL_REG GPBCTRL; // GPIO B Control Register (GPIO32 to 63) + union GPB1_REG GPBQSEL1; // GPIO B Qualifier Select 1 Register (GPIO32 to 47) + union GPB2_REG GPBQSEL2; // GPIO B Qualifier Select 2 Register (GPIO48 to 63) + union GPB1_REG GPBMUX1; // GPIO B Mux 1 Register (GPIO32 to 47) + union GPB2_REG GPBMUX2; // GPIO B Mux 2 Register (GPIO48 to 63) + union GPBDAT_REG GPBDIR; // GPIO B Direction Register (GPIO32 to 63) + union GPBDAT_REG GPBPUD; // GPIO B Pull Up Disable Register (GPIO32 to 63) + Uint16 rsvd2[8]; + union GPC1_REG GPCMUX1; // GPIO C Mux 1 Register (GPIO64 to 79) + union GPC2_REG GPCMUX2; // GPIO C Mux 2 Register (GPIO80 to 95) + union GPCDAT_REG GPCDIR; // GPIO C Direction Register (GPIO64 to 95) + union GPCDAT_REG GPCPUD; // GPIO C Pull Up Disable Register (GPIO64 to 95) +}; + +struct GPIO_DATA_REGS { + union GPADAT_REG GPADAT; // GPIO Data Register (GPIO0 to 31) + union GPADAT_REG GPASET; // GPIO Data Set Register (GPIO0 to 31) + union GPADAT_REG GPACLEAR; // GPIO Data Clear Register (GPIO0 to 31) + union GPADAT_REG GPATOGGLE; // GPIO Data Toggle Register (GPIO0 to 31) + union GPBDAT_REG GPBDAT; // GPIO Data Register (GPIO32 to 63) + union GPBDAT_REG GPBSET; // GPIO Data Set Register (GPIO32 to 63) + union GPBDAT_REG GPBCLEAR; // GPIO Data Clear Register (GPIO32 to 63) + union GPBDAT_REG GPBTOGGLE; // GPIO Data Toggle Register (GPIO32 to 63) + union GPCDAT_REG GPCDAT; // GPIO Data Register (GPIO64 to 95) + union GPCDAT_REG GPCSET; // GPIO Data Set Register (GPIO64 to 95) + union GPCDAT_REG GPCCLEAR; // GPIO Data Clear Register (GPIO64 to 95) + union GPCDAT_REG GPCTOGGLE; // GPIO Data Toggle Register (GPIO64 to 95) + Uint16 rsvd1[8]; +}; + +struct GPIO_INT_REGS { + union GPIOXINT_REG GPIOXINT1SEL; // XINT1 GPIO Input Selection + union GPIOXINT_REG GPIOXINT2SEL; // XINT2 GPIO Input Selection + union GPIOXINT_REG GPIOXNMISEL; // XNMI_Xint13 GPIO Input Selection + union GPIOXINT_REG GPIOXINT3SEL; // XINT3 GPIO Input Selection + union GPIOXINT_REG GPIOXINT4SEL; // XINT4 GPIO Input Selection + union GPIOXINT_REG GPIOXINT5SEL; // XINT5 GPIO Input Selection + union GPIOXINT_REG GPIOXINT6SEL; // XINT6 GPIO Input Selection + union GPIOXINT_REG GPIOXINT7SEL; // XINT7 GPIO Input Selection + union GPADAT_REG GPIOLPMSEL; // Low power modes GP I/O input select +}; + + +//--------------------------------------------------------------------------- +// GPI/O External References & Function Declarations: +// +extern struct GPIO_CTRL_REGS GpioCtrlRegs; +extern struct GPIO_DATA_REGS GpioDataRegs; +extern struct GPIO_INT_REGS GpioIntRegs; + +#endif // end of DSP2833x_GPIO_H definition + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_I2c.h b/Inu/main_matlab/device_support/include/DSP2833x_I2c.h new file mode 100644 index 0000000..b510f0d --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_I2c.h @@ -0,0 +1,187 @@ +// TI File $Revision: /main/2 $ +// Checkin $Date: March 22, 2007 10:40:22 $ +//########################################################################### +// +// FILE: DSP2833x_I2c.h +// +// TITLE: DSP2833x Enhanced Quadrature Encoder Pulse Module +// Register Bit Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_I2C_H +#define DSP2833x_I2C_H + + + +//---------------------------------------------------- +// I2C interrupt vector register bit definitions */ +struct I2CISRC_BITS { // bits description + Uint16 INTCODE:3; // 2:0 Interrupt code + Uint16 rsvd1:13; // 15:3 reserved +}; + +union I2CISRC_REG { + Uint16 all; + struct I2CISRC_BITS bit; +}; + +//---------------------------------------------------- +// I2C interrupt mask register bit definitions */ +struct I2CIER_BITS { // bits description + Uint16 ARBL:1; // 0 Arbitration lost interrupt + Uint16 NACK:1; // 1 No ack interrupt + Uint16 ARDY:1; // 2 Register access ready interrupt + Uint16 RRDY:1; // 3 Recieve data ready interrupt + Uint16 XRDY:1; // 4 Transmit data ready interrupt + Uint16 SCD:1; // 5 Stop condition detection + Uint16 AAS:1; // 6 Address as slave + Uint16 rsvd:9; // 15:7 reserved +}; + +union I2CIER_REG { + Uint16 all; + struct I2CIER_BITS bit; +}; + +//---------------------------------------------------- +// I2C status register bit definitions */ +struct I2CSTR_BITS { // bits description + Uint16 ARBL:1; // 0 Arbitration lost interrupt + Uint16 NACK:1; // 1 No ack interrupt + Uint16 ARDY:1; // 2 Register access ready interrupt + Uint16 RRDY:1; // 3 Recieve data ready interrupt + Uint16 XRDY:1; // 4 Transmit data ready interrupt + Uint16 SCD:1; // 5 Stop condition detection + Uint16 rsvd1:2; // 7:6 reserved + Uint16 AD0:1; // 8 Address Zero + Uint16 AAS:1; // 9 Address as slave + Uint16 XSMT:1; // 10 XMIT shift empty + Uint16 RSFULL:1; // 11 Recieve shift full + Uint16 BB:1; // 12 Bus busy + Uint16 NACKSNT:1; // 13 A no ack sent + Uint16 SDIR:1; // 14 Slave direction + Uint16 rsvd2:1; // 15 reserved +}; + +union I2CSTR_REG { + Uint16 all; + struct I2CSTR_BITS bit; +}; + + +//---------------------------------------------------- +// I2C mode control register bit definitions */ +struct I2CMDR_BITS { // bits description + Uint16 BC:3; // 2:0 Bit count + Uint16 FDF:1; // 3 Free data format + Uint16 STB:1; // 4 Start byte + Uint16 IRS:1; // 5 I2C Reset not + Uint16 DLB:1; // 6 Digital loopback + Uint16 RM:1; // 7 Repeat mode + Uint16 XA:1; // 8 Expand address + Uint16 TRX:1; // 9 Transmitter/reciever + Uint16 MST:1; // 10 Master/slave + Uint16 STP:1; // 11 Stop condition + Uint16 rsvd1:1; // 12 reserved + Uint16 STT:1; // 13 Start condition + Uint16 FREE:1; // 14 Emulation mode + Uint16 NACKMOD:1; // 15 No Ack mode +}; + +union I2CMDR_REG { + Uint16 all; + struct I2CMDR_BITS bit; +}; + +//---------------------------------------------------- +// I2C pre-scaler register bit definitions */ +struct I2CPSC_BITS { // bits description + Uint16 IPSC:8; // 7:0 pre-scaler + Uint16 rsvd1:8; // 15:8 reserved +}; + + +union I2CPSC_REG { + Uint16 all; + struct I2CPSC_BITS bit; +}; + + +//---------------------------------------------------- +// TX FIFO control register bit definitions */ +struct I2CFFTX_BITS { // bits description + Uint16 TXFFIL:5; // 4:0 FIFO interrupt level + Uint16 TXFFIENA:1; // 5 FIFO interrupt enable/disable + Uint16 TXFFINTCLR:1; // 6 FIFO clear + Uint16 TXFFINT:1; // 7 FIFO interrupt flag + Uint16 TXFFST:5; // 12:8 FIFO level status + Uint16 TXFFRST:1; // 13 FIFO reset + Uint16 I2CFFEN:1; // 14 enable/disable TX & RX FIFOs + Uint16 rsvd1:1; // 15 reserved + +}; + +union I2CFFTX_REG { + Uint16 all; + struct I2CFFTX_BITS bit; +}; + +//---------------------------------------------------- +// RX FIFO control register bit definitions */ +struct I2CFFRX_BITS { // bits description + Uint16 RXFFIL:5; // 4:0 FIFO interrupt level + Uint16 RXFFIENA:1; // 5 FIFO interrupt enable/disable + Uint16 RXFFINTCLR:1; // 6 FIFO clear + Uint16 RXFFINT:1; // 7 FIFO interrupt flag + Uint16 RXFFST:5; // 12:8 FIFO level + Uint16 RXFFRST:1; // 13 FIFO reset + Uint16 rsvd1:2; // 15:14 reserved +}; + +union I2CFFRX_REG { + Uint16 all; + struct I2CFFRX_BITS bit; +}; + + +//---------------------------------------------------- + +struct I2C_REGS { + Uint16 I2COAR; // Own address register + union I2CIER_REG I2CIER; // Interrupt enable + union I2CSTR_REG I2CSTR; // Interrupt status + Uint16 I2CCLKL; // Clock divider low + Uint16 I2CCLKH; // Clock divider high + Uint16 I2CCNT; // Data count + Uint16 I2CDRR; // Data recieve + Uint16 I2CSAR; // Slave address + Uint16 I2CDXR; // Data transmit + union I2CMDR_REG I2CMDR; // Mode + union I2CISRC_REG I2CISRC; // Interrupt source + Uint16 rsvd1; // reserved + union I2CPSC_REG I2CPSC; // Pre-scaler + Uint16 rsvd2[19]; // reserved + union I2CFFTX_REG I2CFFTX; // Transmit FIFO + union I2CFFRX_REG I2CFFRX; // Recieve FIFO +}; + + + + +//--------------------------------------------------------------------------- +// External References & Function Declarations: +// +extern struct I2C_REGS I2caRegs; + + + +#endif // end of DSP2833x_I2C_H definition + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_Mcbsp.h b/Inu/main_matlab/device_support/include/DSP2833x_Mcbsp.h new file mode 100644 index 0000000..a9cf175 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_Mcbsp.h @@ -0,0 +1,709 @@ +// TI File $Revision: /main/5 $ +// Checkin $Date: May 14, 2008 16:30:31 $ +//########################################################################### +// +// FILE: DSP2833x_Mcbsp.h +// +// TITLE: DSP2833x Device McBSP Register Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_MCBSP_H +#define DSP2833x_MCBSP_H + + +//--------------------------------------------------------------------------- +// McBSP Individual Register Bit Definitions: +// +// McBSP DRR2 register bit definitions: +struct DRR2_BITS { // bit description + Uint16 HWLB:8; // 16:23 High word low byte + Uint16 HWHB:8; // 24:31 High word high byte +}; + +union DRR2_REG { + Uint16 all; + struct DRR2_BITS bit; +}; + +// McBSP DRR1 register bit definitions: +struct DRR1_BITS { // bit description + Uint16 LWLB:8; // 16:23 Low word low byte + Uint16 LWHB:8; // 24:31 low word high byte +}; + +union DRR1_REG { + Uint16 all; + struct DRR1_BITS bit; +}; + +// McBSP DXR2 register bit definitions: +struct DXR2_BITS { // bit description + Uint16 HWLB:8; // 16:23 High word low byte + Uint16 HWHB:8; // 24:31 High word high byte +}; + +union DXR2_REG { + Uint16 all; + struct DXR2_BITS bit; +}; + +// McBSP DXR1 register bit definitions: +struct DXR1_BITS { // bit description + Uint16 LWLB:8; // 16:23 Low word low byte + Uint16 LWHB:8; // 24:31 low word high byte +}; + +union DXR1_REG { + Uint16 all; + struct DXR1_BITS bit; +}; + +// SPCR2 control register bit definitions: +struct SPCR2_BITS { // bit description + Uint16 XRST:1; // 0 transmit reset + Uint16 XRDY:1; // 1 transmit ready + Uint16 XEMPTY:1; // 2 Transmit empty + Uint16 XSYNCERR:1; // 3 Transmit syn errorINT flag + Uint16 XINTM:2; // 5:4 Transmit interrupt types + Uint16 GRST:1; // 6 CLKG reset + Uint16 FRST:1; // 7 Frame sync reset + Uint16 SOFT:1; // 8 SOFT bit + Uint16 FREE:1; // 9 FREE bit + Uint16 rsvd:6; // 15:10 reserved +}; + +union SPCR2_REG { + Uint16 all; + struct SPCR2_BITS bit; +}; + +// SPCR1 control register bit definitions: +struct SPCR1_BITS { // bit description + Uint16 RRST:1; // 0 Receive reset + Uint16 RRDY:1; // 1 Receive ready + Uint16 RFULL:1; // 2 Receive full + Uint16 RSYNCERR:1; // 7 Receive syn error + Uint16 RINTM:2; // 5:4 Receive interrupt types + Uint16 ABIS:1; // 6 ABIS mode select + Uint16 DXENA:1; // 7 DX hi-z enable + Uint16 rsvd:3; // 10:8 reserved + Uint16 CLKSTP:2; // 12:11 CLKSTOP mode bit + Uint16 RJUST:2; // 13:14 Right justified + Uint16 DLB:1; // 15 Digital loop back +}; + +union SPCR1_REG { + Uint16 all; + struct SPCR1_BITS bit; +}; + +// RCR2 control register bit definitions: +struct RCR2_BITS { // bit description + Uint16 RDATDLY:2; // 1:0 Receive data delay + Uint16 RFIG:1; // 2 Receive frame sync ignore + Uint16 RCOMPAND:2; // 4:3 Receive Companding Mode selects + Uint16 RWDLEN2:3; // 7:5 Receive word length + Uint16 RFRLEN2:7; // 14:8 Receive Frame sync + Uint16 RPHASE:1; // 15 Receive Phase +}; + +union RCR2_REG { + Uint16 all; + struct RCR2_BITS bit; +}; + +// RCR1 control register bit definitions: +struct RCR1_BITS { // bit description + Uint16 rsvd1:5; // 4:0 reserved + Uint16 RWDLEN1:3; // 7:5 Receive word length + Uint16 RFRLEN1:7; // 14:8 Receive frame length + Uint16 rsvd2:1; // 15 reserved +}; + +union RCR1_REG { + Uint16 all; + struct RCR1_BITS bit; +}; + +// XCR2 control register bit definitions: + +struct XCR2_BITS { // bit description + Uint16 XDATDLY:2; // 1:0 Transmit data delay + Uint16 XFIG:1; // 2 Transmit frame sync ignore + Uint16 XCOMPAND:2; // 4:3 Transmit Companding Mode selects + Uint16 XWDLEN2:3; // 7:5 Transmit word length + Uint16 XFRLEN2:7; // 14:8 Transmit Frame sync + Uint16 XPHASE:1; // 15 Transmit Phase +}; + +union XCR2_REG { + Uint16 all; + struct XCR2_BITS bit; +}; + +// XCR1 control register bit definitions: +struct XCR1_BITS { // bit description + Uint16 rsvd1:5; // 4:0 reserved + Uint16 XWDLEN1:3; // 7:5 Transmit word length + Uint16 XFRLEN1:7; // 14:8 Transmit frame length + Uint16 rsvd2:1; // 15 reserved +}; + +union XCR1_REG { + Uint16 all; + struct XCR1_BITS bit; +}; + +// SRGR2 Sample rate generator control register bit definitions: +struct SRGR2_BITS { // bit description + Uint16 FPER:12; // 11:0 Frame period + Uint16 FSGM:1; // 12 Frame sync generator mode + Uint16 CLKSM:1; // 13 Sample rate generator mode + Uint16 rsvd:1; // 14 reserved + Uint16 GSYNC:1; // 15 CLKG sync +}; + +union SRGR2_REG { + Uint16 all; + struct SRGR2_BITS bit; +}; + +// SRGR1 control register bit definitions: +struct SRGR1_BITS { // bit description + Uint16 CLKGDV:8; // 7:0 CLKG divider + Uint16 FWID:8; // 15:8 Frame width +}; + +union SRGR1_REG { + Uint16 all; + struct SRGR1_BITS bit; +}; + +// MCR2 Multichannel control register bit definitions: +struct MCR2_BITS { // bit description + Uint16 XMCM:2; // 1:0 Transmit multichannel mode + Uint16 XCBLK:3; // 2:4 Transmit current block + Uint16 XPABLK:2; // 5:6 Transmit partition A Block + Uint16 XPBBLK:2; // 7:8 Transmit partition B Block + Uint16 XMCME:1; // 9 Transmit multi-channel enhance mode + Uint16 rsvd:6; // 15:10 reserved +}; + +union MCR2_REG { + Uint16 all; + struct MCR2_BITS bit; +}; + +// MCR1 Multichannel control register bit definitions: +struct MCR1_BITS { // bit description + Uint16 RMCM:1; // 0 Receive multichannel mode + Uint16 rsvd:1; // 1 reserved + Uint16 RCBLK:3; // 4:2 Receive current block + Uint16 RPABLK:2; // 6:5 Receive partition A Block + Uint16 RPBBLK:2; // 7:8 Receive partition B Block + Uint16 RMCME:1; // 9 Receive multi-channel enhance mode + Uint16 rsvd1:6; // 15:10 reserved +}; + +union MCR1_REG { + Uint16 all; + struct MCR1_BITS bit; +}; + +// RCERA control register bit definitions: +struct RCERA_BITS { // bit description + Uint16 RCEA0:1; // 0 Receive Channel enable bit + Uint16 RCEA1:1; // 1 Receive Channel enable bit + Uint16 RCEA2:1; // 2 Receive Channel enable bit + Uint16 RCEA3:1; // 3 Receive Channel enable bit + Uint16 RCEA4:1; // 4 Receive Channel enable bit + Uint16 RCEA5:1; // 5 Receive Channel enable bit + Uint16 RCEA6:1; // 6 Receive Channel enable bit + Uint16 RCEA7:1; // 7 Receive Channel enable bit + Uint16 RCEA8:1; // 8 Receive Channel enable bit + Uint16 RCEA9:1; // 9 Receive Channel enable bit + Uint16 RCEA10:1; // 10 Receive Channel enable bit + Uint16 RCEA11:1; // 11 Receive Channel enable bit + Uint16 RCEA12:1; // 12 Receive Channel enable bit + Uint16 RCEA13:1; // 13 Receive Channel enable bit + Uint16 RCEA14:1; // 14 Receive Channel enable bit + Uint16 RCEA15:1; // 15 Receive Channel enable bit +}; + +union RCERA_REG { + Uint16 all; + struct RCERA_BITS bit; +}; + +// RCERB control register bit definitions: +struct RCERB_BITS { // bit description + Uint16 RCEB0:1; // 0 Receive Channel enable bit + Uint16 RCEB1:1; // 1 Receive Channel enable bit + Uint16 RCEB2:1; // 2 Receive Channel enable bit + Uint16 RCEB3:1; // 3 Receive Channel enable bit + Uint16 RCEB4:1; // 4 Receive Channel enable bit + Uint16 RCEB5:1; // 5 Receive Channel enable bit + Uint16 RCEB6:1; // 6 Receive Channel enable bit + Uint16 RCEB7:1; // 7 Receive Channel enable bit + Uint16 RCEB8:1; // 8 Receive Channel enable bit + Uint16 RCEB9:1; // 9 Receive Channel enable bit + Uint16 RCEB10:1; // 10 Receive Channel enable bit + Uint16 RCEB11:1; // 11 Receive Channel enable bit + Uint16 RCEB12:1; // 12 Receive Channel enable bit + Uint16 RCEB13:1; // 13 Receive Channel enable bit + Uint16 RCEB14:1; // 14 Receive Channel enable bit + Uint16 RCEB15:1; // 15 Receive Channel enable bit +}; + +union RCERB_REG { + Uint16 all; + struct RCERB_BITS bit; +}; + +// XCERA control register bit definitions: +struct XCERA_BITS { // bit description + Uint16 XCERA0:1; // 0 Receive Channel enable bit + Uint16 XCERA1:1; // 1 Receive Channel enable bit + Uint16 XCERA2:1; // 2 Receive Channel enable bit + Uint16 XCERA3:1; // 3 Receive Channel enable bit + Uint16 XCERA4:1; // 4 Receive Channel enable bit + Uint16 XCERA5:1; // 5 Receive Channel enable bit + Uint16 XCERA6:1; // 6 Receive Channel enable bit + Uint16 XCERA7:1; // 7 Receive Channel enable bit + Uint16 XCERA8:1; // 8 Receive Channel enable bit + Uint16 XCERA9:1; // 9 Receive Channel enable bit + Uint16 XCERA10:1; // 10 Receive Channel enable bit + Uint16 XCERA11:1; // 11 Receive Channel enable bit + Uint16 XCERA12:1; // 12 Receive Channel enable bit + Uint16 XCERA13:1; // 13 Receive Channel enable bit + Uint16 XCERA14:1; // 14 Receive Channel enable bit + Uint16 XCERA15:1; // 15 Receive Channel enable bit +}; + +union XCERA_REG { + Uint16 all; + struct XCERA_BITS bit; +}; + +// XCERB control register bit definitions: +struct XCERB_BITS { // bit description + Uint16 XCERB0:1; // 0 Receive Channel enable bit + Uint16 XCERB1:1; // 1 Receive Channel enable bit + Uint16 XCERB2:1; // 2 Receive Channel enable bit + Uint16 XCERB3:1; // 3 Receive Channel enable bit + Uint16 XCERB4:1; // 4 Receive Channel enable bit + Uint16 XCERB5:1; // 5 Receive Channel enable bit + Uint16 XCERB6:1; // 6 Receive Channel enable bit + Uint16 XCERB7:1; // 7 Receive Channel enable bit + Uint16 XCERB8:1; // 8 Receive Channel enable bit + Uint16 XCERB9:1; // 9 Receive Channel enable bit + Uint16 XCERB10:1; // 10 Receive Channel enable bit + Uint16 XCERB11:1; // 11 Receive Channel enable bit + Uint16 XCERB12:1; // 12 Receive Channel enable bit + Uint16 XCERB13:1; // 13 Receive Channel enable bit + Uint16 XCERB14:1; // 14 Receive Channel enable bit + Uint16 XCERB15:1; // 15 Receive Channel enable bit +}; + +union XCERB_REG { + Uint16 all; + struct XCERB_BITS bit; +}; + +// PCR control register bit definitions: +struct PCR_BITS { // bit description + Uint16 CLKRP:1; // 0 Receive Clock polarity + Uint16 CLKXP:1; // 1 Transmit clock polarity + Uint16 FSRP:1; // 2 Receive Frame synchronization polarity + Uint16 FSXP:1; // 3 Transmit Frame synchronization polarity + Uint16 DR_STAT:1; // 4 DR pin status - reserved for this McBSP + Uint16 DX_STAT:1; // 5 DX pin status - reserved for this McBSP + Uint16 CLKS_STAT:1; // 6 CLKS pin status - reserved for 28x -McBSP + Uint16 SCLKME:1; // 7 Enhanced sample clock mode selection bit. + Uint16 CLKRM:1; // 8 Receiver Clock Mode + Uint16 CLKXM:1; // 9 Transmitter Clock Mode. + Uint16 FSRM:1; // 10 Receive Frame Synchronization Mode + Uint16 FSXM:1; // 11 Transmit Frame Synchronization Mode + Uint16 RIOEN:1; // 12 General Purpose I/O Mode - reserved in this 28x-McBSP + Uint16 XIOEN:1; // 13 General Purpose I/O Mode - reserved in this 28x-McBSP + Uint16 IDEL_EN:1; // 14 reserved in this 28x-McBSP + Uint16 rsvd:1 ; // 15 reserved +}; + +union PCR_REG { + Uint16 all; + struct PCR_BITS bit; +}; + +// RCERC control register bit definitions: +struct RCERC_BITS { // bit description + Uint16 RCEC0:1; // 0 Receive Channel enable bit + Uint16 RCEC1:1; // 1 Receive Channel enable bit + Uint16 RCEC2:1; // 2 Receive Channel enable bit + Uint16 RCEC3:1; // 3 Receive Channel enable bit + Uint16 RCEC4:1; // 4 Receive Channel enable bit + Uint16 RCEC5:1; // 5 Receive Channel enable bit + Uint16 RCEC6:1; // 6 Receive Channel enable bit + Uint16 RCEC7:1; // 7 Receive Channel enable bit + Uint16 RCEC8:1; // 8 Receive Channel enable bit + Uint16 RCEC9:1; // 9 Receive Channel enable bit + Uint16 RCEC10:1; // 10 Receive Channel enable bit + Uint16 RCEC11:1; // 11 Receive Channel enable bit + Uint16 RCEC12:1; // 12 Receive Channel enable bit + Uint16 RCEC13:1; // 13 Receive Channel enable bit + Uint16 RCEC14:1; // 14 Receive Channel enable bit + Uint16 RCEC15:1; // 15 Receive Channel enable bit +}; + +union RCERC_REG { + Uint16 all; + struct RCERC_BITS bit; +}; + +// RCERD control register bit definitions: +struct RCERD_BITS { // bit description + Uint16 RCED0:1; // 0 Receive Channel enable bit + Uint16 RCED1:1; // 1 Receive Channel enable bit + Uint16 RCED2:1; // 2 Receive Channel enable bit + Uint16 RCED3:1; // 3 Receive Channel enable bit + Uint16 RCED4:1; // 4 Receive Channel enable bit + Uint16 RCED5:1; // 5 Receive Channel enable bit + Uint16 RCED6:1; // 6 Receive Channel enable bit + Uint16 RCED7:1; // 7 Receive Channel enable bit + Uint16 RCED8:1; // 8 Receive Channel enable bit + Uint16 RCED9:1; // 9 Receive Channel enable bit + Uint16 RCED10:1; // 10 Receive Channel enable bit + Uint16 RCED11:1; // 11 Receive Channel enable bit + Uint16 RCED12:1; // 12 Receive Channel enable bit + Uint16 RCED13:1; // 13 Receive Channel enable bit + Uint16 RCED14:1; // 14 Receive Channel enable bit + Uint16 RCED15:1; // 15 Receive Channel enable bit +}; + +union RCERD_REG { + Uint16 all; + struct RCERD_BITS bit; +}; + +// XCERC control register bit definitions: +struct XCERC_BITS { // bit description + Uint16 XCERC0:1; // 0 Receive Channel enable bit + Uint16 XCERC1:1; // 1 Receive Channel enable bit + Uint16 XCERC2:1; // 2 Receive Channel enable bit + Uint16 XCERC3:1; // 3 Receive Channel enable bit + Uint16 XCERC4:1; // 4 Receive Channel enable bit + Uint16 XCERC5:1; // 5 Receive Channel enable bit + Uint16 XCERC6:1; // 6 Receive Channel enable bit + Uint16 XCERC7:1; // 7 Receive Channel enable bit + Uint16 XCERC8:1; // 8 Receive Channel enable bit + Uint16 XCERC9:1; // 9 Receive Channel enable bit + Uint16 XCERC10:1; // 10 Receive Channel enable bit + Uint16 XCERC11:1; // 11 Receive Channel enable bit + Uint16 XCERC12:1; // 12 Receive Channel enable bit + Uint16 XCERC13:1; // 13 Receive Channel enable bit + Uint16 XCERC14:1; // 14 Receive Channel enable bit + Uint16 XCERC15:1; // 15 Receive Channel enable bit +}; + +union XCERC_REG { + Uint16 all; + struct XCERC_BITS bit; +}; + +// XCERD control register bit definitions: +struct XCERD_BITS { // bit description + Uint16 XCERD0:1; // 0 Receive Channel enable bit + Uint16 XCERD1:1; // 1 Receive Channel enable bit + Uint16 XCERD2:1; // 2 Receive Channel enable bit + Uint16 XCERD3:1; // 3 Receive Channel enable bit + Uint16 XCERD4:1; // 4 Receive Channel enable bit + Uint16 XCERD5:1; // 5 Receive Channel enable bit + Uint16 XCERD6:1; // 6 Receive Channel enable bit + Uint16 XCERD7:1; // 7 Receive Channel enable bit + Uint16 XCERD8:1; // 8 Receive Channel enable bit + Uint16 XCERD9:1; // 9 Receive Channel enable bit + Uint16 XCERD10:1; // 10 Receive Channel enable bit + Uint16 XCERD11:1; // 11 Receive Channel enable bit + Uint16 XCERD12:1; // 12 Receive Channel enable bit + Uint16 XCERD13:1; // 13 Receive Channel enable bit + Uint16 XCERD14:1; // 14 Receive Channel enable bit + Uint16 XCERD15:1; // 15 Receive Channel enable bit +}; + +union XCERD_REG { + Uint16 all; + struct XCERD_BITS bit; +}; + +// RCERE control register bit definitions: +struct RCERE_BITS { // bit description + Uint16 RCEE0:1; // 0 Receive Channel enable bit + Uint16 RCEE1:1; // 1 Receive Channel enable bit + Uint16 RCEE2:1; // 2 Receive Channel enable bit + Uint16 RCEE3:1; // 3 Receive Channel enable bit + Uint16 RCEE4:1; // 4 Receive Channel enable bit + Uint16 RCEE5:1; // 5 Receive Channel enable bit + Uint16 RCEE6:1; // 6 Receive Channel enable bit + Uint16 RCEE7:1; // 7 Receive Channel enable bit + Uint16 RCEE8:1; // 8 Receive Channel enable bit + Uint16 RCEE9:1; // 9 Receive Channel enable bit + Uint16 RCEE10:1; // 10 Receive Channel enable bit + Uint16 RCEE11:1; // 11 Receive Channel enable bit + Uint16 RCEE12:1; // 12 Receive Channel enable bit + Uint16 RCEE13:1; // 13 Receive Channel enable bit + Uint16 RCEE14:1; // 14 Receive Channel enable bit + Uint16 RCEE15:1; // 15 Receive Channel enable bit +}; + +union RCERE_REG { + Uint16 all; + struct RCERE_BITS bit; +}; + +// RCERF control register bit definitions: +struct RCERF_BITS { // bit description + Uint16 RCEF0:1; // 0 Receive Channel enable bit + Uint16 RCEF1:1; // 1 Receive Channel enable bit + Uint16 RCEF2:1; // 2 Receive Channel enable bit + Uint16 RCEF3:1; // 3 Receive Channel enable bit + Uint16 RCEF4:1; // 4 Receive Channel enable bit + Uint16 RCEF5:1; // 5 Receive Channel enable bit + Uint16 RCEF6:1; // 6 Receive Channel enable bit + Uint16 RCEF7:1; // 7 Receive Channel enable bit + Uint16 RCEF8:1; // 8 Receive Channel enable bit + Uint16 RCEF9:1; // 9 Receive Channel enable bit + Uint16 RCEF10:1; // 10 Receive Channel enable bit + Uint16 RCEF11:1; // 11 Receive Channel enable bit + Uint16 RCEF12:1; // 12 Receive Channel enable bit + Uint16 RCEF13:1; // 13 Receive Channel enable bit + Uint16 RCEF14:1; // 14 Receive Channel enable bit + Uint16 RCEF15:1; // 15 Receive Channel enable bit +}; + +union RCERF_REG { + Uint16 all; + struct RCERF_BITS bit; +}; + +// XCERE control register bit definitions: +struct XCERE_BITS { // bit description + Uint16 XCERE0:1; // 0 Receive Channel enable bit + Uint16 XCERE1:1; // 1 Receive Channel enable bit + Uint16 XCERE2:1; // 2 Receive Channel enable bit + Uint16 XCERE3:1; // 3 Receive Channel enable bit + Uint16 XCERE4:1; // 4 Receive Channel enable bit + Uint16 XCERE5:1; // 5 Receive Channel enable bit + Uint16 XCERE6:1; // 6 Receive Channel enable bit + Uint16 XCERE7:1; // 7 Receive Channel enable bit + Uint16 XCERE8:1; // 8 Receive Channel enable bit + Uint16 XCERE9:1; // 9 Receive Channel enable bit + Uint16 XCERE10:1; // 10 Receive Channel enable bit + Uint16 XCERE11:1; // 11 Receive Channel enable bit + Uint16 XCERE12:1; // 12 Receive Channel enable bit + Uint16 XCERE13:1; // 13 Receive Channel enable bit + Uint16 XCERE14:1; // 14 Receive Channel enable bit + Uint16 XCERE15:1; // 15 Receive Channel enable bit +}; + +union XCERE_REG { + Uint16 all; + struct XCERE_BITS bit; +}; + +// XCERF control register bit definitions: +struct XCERF_BITS { // bit description + Uint16 XCERF0:1; // 0 Receive Channel enable bit + Uint16 XCERF1:1; // 1 Receive Channel enable bit + Uint16 XCERF2:1; // 2 Receive Channel enable bit + Uint16 XCERF3:1; // 3 Receive Channel enable bit + Uint16 XCERF4:1; // 4 Receive Channel enable bit + Uint16 XCERF5:1; // 5 Receive Channel enable bit + Uint16 XCERF6:1; // 6 Receive Channel enable bit + Uint16 XCERF7:1; // 7 Receive Channel enable bit + Uint16 XCERF8:1; // 8 Receive Channel enable bit + Uint16 XCERF9:1; // 9 Receive Channel enable bit + Uint16 XCERF10:1; // 10 Receive Channel enable bit + Uint16 XCERF11:1; // 11 Receive Channel enable bit + Uint16 XCERF12:1; // 12 Receive Channel enable bit + Uint16 XCERF13:1; // 13 Receive Channel enable bit + Uint16 XCERF14:1; // 14 Receive Channel enable bit + Uint16 XCERF15:1; // 15 Receive Channel enable bit +}; + +union XCERF_REG { + Uint16 all; + struct XCERF_BITS bit; +}; + +// RCERG control register bit definitions: +struct RCERG_BITS { // bit description + Uint16 RCEG0:1; // 0 Receive Channel enable bit + Uint16 RCEG1:1; // 1 Receive Channel enable bit + Uint16 RCEG2:1; // 2 Receive Channel enable bit + Uint16 RCEG3:1; // 3 Receive Channel enable bit + Uint16 RCEG4:1; // 4 Receive Channel enable bit + Uint16 RCEG5:1; // 5 Receive Channel enable bit + Uint16 RCEG6:1; // 6 Receive Channel enable bit + Uint16 RCEG7:1; // 7 Receive Channel enable bit + Uint16 RCEG8:1; // 8 Receive Channel enable bit + Uint16 RCEG9:1; // 9 Receive Channel enable bit + Uint16 RCEG10:1; // 10 Receive Channel enable bit + Uint16 RCEG11:1; // 11 Receive Channel enable bit + Uint16 RCEG12:1; // 12 Receive Channel enable bit + Uint16 RCEG13:1; // 13 Receive Channel enable bit + Uint16 RCEG14:1; // 14 Receive Channel enable bit + Uint16 RCEG15:1; // 15 Receive Channel enable bit +}; + +union RCERG_REG { + Uint16 all; + struct RCERG_BITS bit; +}; + +// RCERH control register bit definitions: +struct RCERH_BITS { // bit description + Uint16 RCEH0:1; // 0 Receive Channel enable bit + Uint16 RCEH1:1; // 1 Receive Channel enable bit + Uint16 RCEH2:1; // 2 Receive Channel enable bit + Uint16 RCEH3:1; // 3 Receive Channel enable bit + Uint16 RCEH4:1; // 4 Receive Channel enable bit + Uint16 RCEH5:1; // 5 Receive Channel enable bit + Uint16 RCEH6:1; // 6 Receive Channel enable bit + Uint16 RCEH7:1; // 7 Receive Channel enable bit + Uint16 RCEH8:1; // 8 Receive Channel enable bit + Uint16 RCEH9:1; // 9 Receive Channel enable bit + Uint16 RCEH10:1; // 10 Receive Channel enable bit + Uint16 RCEH11:1; // 11 Receive Channel enable bit + Uint16 RCEH12:1; // 12 Receive Channel enable bit + Uint16 RCEH13:1; // 13 Receive Channel enable bit + Uint16 RCEH14:1; // 14 Receive Channel enable bit + Uint16 RCEH15:1; // 15 Receive Channel enable bit +}; + +union RCERH_REG { + Uint16 all; + struct RCERH_BITS bit; +}; + +// XCERG control register bit definitions: +struct XCERG_BITS { // bit description + Uint16 XCERG0:1; // 0 Receive Channel enable bit + Uint16 XCERG1:1; // 1 Receive Channel enable bit + Uint16 XCERG2:1; // 2 Receive Channel enable bit + Uint16 XCERG3:1; // 3 Receive Channel enable bit + Uint16 XCERG4:1; // 4 Receive Channel enable bit + Uint16 XCERG5:1; // 5 Receive Channel enable bit + Uint16 XCERG6:1; // 6 Receive Channel enable bit + Uint16 XCERG7:1; // 7 Receive Channel enable bit + Uint16 XCERG8:1; // 8 Receive Channel enable bit + Uint16 XCERG9:1; // 9 Receive Channel enable bit + Uint16 XCERG10:1; // 10 Receive Channel enable bit + Uint16 XCERG11:1; // 11 Receive Channel enable bit + Uint16 XCERG12:1; // 12 Receive Channel enable bit + Uint16 XCERG13:1; // 13 Receive Channel enable bit + Uint16 XCERG14:1; // 14 Receive Channel enable bit + Uint16 XCERG15:1; // 15 Receive Channel enable bit +}; + +union XCERG_REG { + Uint16 all; + struct XCERG_BITS bit; +}; + +// XCERH control register bit definitions: +struct XCERH_BITS { // bit description + Uint16 XCEH0:1; // 0 Receive Channel enable bit + Uint16 XCEH1:1; // 1 Receive Channel enable bit + Uint16 XCEH2:1; // 2 Receive Channel enable bit + Uint16 XCEH3:1; // 3 Receive Channel enable bit + Uint16 XCEH4:1; // 4 Receive Channel enable bit + Uint16 XCEH5:1; // 5 Receive Channel enable bit + Uint16 XCEH6:1; // 6 Receive Channel enable bit + Uint16 XCEH7:1; // 7 Receive Channel enable bit + Uint16 XCEH8:1; // 8 Receive Channel enable bit + Uint16 XCEH9:1; // 9 Receive Channel enable bit + Uint16 XCEH10:1; // 10 Receive Channel enable bit + Uint16 XCEH11:1; // 11 Receive Channel enable bit + Uint16 XCEH12:1; // 12 Receive Channel enable bit + Uint16 XCEH13:1; // 13 Receive Channel enable bit + Uint16 XCEH14:1; // 14 Receive Channel enable bit + Uint16 XCEH15:1; // 15 Receive Channel enable bit +}; + +union XCERH_REG { + Uint16 all; + struct XCERH_BITS bit; +}; + + +// McBSP Interrupt enable register for RINT/XINT +struct MFFINT_BITS { // bits description + Uint16 XINT:1; // 0 XINT interrupt enable + Uint16 rsvd1:1; // 1 reserved + Uint16 RINT:1; // 2 RINT interrupt enable + Uint16 rsvd2:13; // 15:3 reserved +}; + +union MFFINT_REG { + Uint16 all; + struct MFFINT_BITS bit; +}; + + +//--------------------------------------------------------------------------- +// McBSP Register File: +// +struct MCBSP_REGS { + union DRR2_REG DRR2; // MCBSP Data receive register bits 31-16 + union DRR1_REG DRR1; // MCBSP Data receive register bits 15-0 + union DXR2_REG DXR2; // MCBSP Data transmit register bits 31-16 + union DXR1_REG DXR1; // MCBSP Data transmit register bits 15-0 + union SPCR2_REG SPCR2; // MCBSP control register bits 31-16 + union SPCR1_REG SPCR1; // MCBSP control register bits 15-0 + union RCR2_REG RCR2; // MCBSP receive control register bits 31-16 + union RCR1_REG RCR1; // MCBSP receive control register bits 15-0 + union XCR2_REG XCR2; // MCBSP transmit control register bits 31-16 + union XCR1_REG XCR1; // MCBSP transmit control register bits 15-0 + union SRGR2_REG SRGR2; // MCBSP sample rate gen register bits 31-16 + union SRGR1_REG SRGR1; // MCBSP sample rate gen register bits 15-0 + union MCR2_REG MCR2; // MCBSP multichannel register bits 31-16 + union MCR1_REG MCR1; // MCBSP multichannel register bits 15-0 + union RCERA_REG RCERA; // MCBSP Receive channel enable partition A + union RCERB_REG RCERB; // MCBSP Receive channel enable partition B + union XCERA_REG XCERA; // MCBSP Transmit channel enable partition A + union XCERB_REG XCERB; // MCBSP Transmit channel enable partition B + union PCR_REG PCR; // MCBSP Pin control register bits 15-0 + union RCERC_REG RCERC; // MCBSP Receive channel enable partition C + union RCERD_REG RCERD; // MCBSP Receive channel enable partition D + union XCERC_REG XCERC; // MCBSP Transmit channel enable partition C + union XCERD_REG XCERD; // MCBSP Transmit channel enable partition D + union RCERE_REG RCERE; // MCBSP Receive channel enable partition E + union RCERF_REG RCERF; // MCBSP Receive channel enable partition F + union XCERE_REG XCERE; // MCBSP Transmit channel enable partition E + union XCERF_REG XCERF; // MCBSP Transmit channel enable partition F + union RCERG_REG RCERG; // MCBSP Receive channel enable partition G + union RCERH_REG RCERH; // MCBSP Receive channel enable partition H + union XCERG_REG XCERG; // MCBSP Transmit channel enable partition G + union XCERH_REG XCERH; // MCBSP Transmit channel enable partition H + Uint16 rsvd1[4]; // reserved + union MFFINT_REG MFFINT; // MCBSP Interrupt enable register for RINT/XINT + Uint16 rsvd2; // reserved +}; + +//--------------------------------------------------------------------------- +// McBSP External References & Function Declarations: +// +extern struct MCBSP_REGS McbspaRegs; +extern struct MCBSP_REGS McbspbRegs; + + +#endif // end of DSP2833x_MCBSP_H definition + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_PieCtrl.h b/Inu/main_matlab/device_support/include/DSP2833x_PieCtrl.h new file mode 100644 index 0000000..028bed6 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_PieCtrl.h @@ -0,0 +1,148 @@ +// TI File $Revision: /main/1 $ +// Checkin $Date: August 18, 2006 13:52:24 $ +//########################################################################### +// +// FILE: DSP2833x_PieCtrl.h +// +// TITLE: DSP2833x Device PIE Control Register Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + + +#ifndef DSP2833x_PIE_CTRL_H +#define DSP2833x_PIE_CTRL_H + + +//--------------------------------------------------------------------------- +// PIE Control Register Bit Definitions: +// +// PIECTRL: Register bit definitions: +struct PIECTRL_BITS { // bits description + Uint16 ENPIE:1; // 0 Enable PIE block + Uint16 PIEVECT:15; // 15:1 Fetched vector address +}; + +union PIECTRL_REG { + Uint16 all; + struct PIECTRL_BITS bit; +}; + +// PIEIER: Register bit definitions: +struct PIEIER_BITS { // bits description + Uint16 INTx1:1; // 0 INTx.1 + Uint16 INTx2:1; // 1 INTx.2 + Uint16 INTx3:1; // 2 INTx.3 + Uint16 INTx4:1; // 3 INTx.4 + Uint16 INTx5:1; // 4 INTx.5 + Uint16 INTx6:1; // 5 INTx.6 + Uint16 INTx7:1; // 6 INTx.7 + Uint16 INTx8:1; // 7 INTx.8 + Uint16 rsvd:8; // 15:8 reserved +}; + +union PIEIER_REG { + Uint16 all; + struct PIEIER_BITS bit; +}; + +// PIEIFR: Register bit definitions: +struct PIEIFR_BITS { // bits description + Uint16 INTx1:1; // 0 INTx.1 + Uint16 INTx2:1; // 1 INTx.2 + Uint16 INTx3:1; // 2 INTx.3 + Uint16 INTx4:1; // 3 INTx.4 + Uint16 INTx5:1; // 4 INTx.5 + Uint16 INTx6:1; // 5 INTx.6 + Uint16 INTx7:1; // 6 INTx.7 + Uint16 INTx8:1; // 7 INTx.8 + Uint16 rsvd:8; // 15:8 reserved +}; + +union PIEIFR_REG { + Uint16 all; + struct PIEIFR_BITS bit; +}; + +// PIEACK: Register bit definitions: +struct PIEACK_BITS { // bits description + Uint16 ACK1:1; // 0 Acknowledge PIE interrupt group 1 + Uint16 ACK2:1; // 1 Acknowledge PIE interrupt group 2 + Uint16 ACK3:1; // 2 Acknowledge PIE interrupt group 3 + Uint16 ACK4:1; // 3 Acknowledge PIE interrupt group 4 + Uint16 ACK5:1; // 4 Acknowledge PIE interrupt group 5 + Uint16 ACK6:1; // 5 Acknowledge PIE interrupt group 6 + Uint16 ACK7:1; // 6 Acknowledge PIE interrupt group 7 + Uint16 ACK8:1; // 7 Acknowledge PIE interrupt group 8 + Uint16 ACK9:1; // 8 Acknowledge PIE interrupt group 9 + Uint16 ACK10:1; // 9 Acknowledge PIE interrupt group 10 + Uint16 ACK11:1; // 10 Acknowledge PIE interrupt group 11 + Uint16 ACK12:1; // 11 Acknowledge PIE interrupt group 12 + Uint16 rsvd:4; // 15:12 reserved +}; + +union PIEACK_REG { + Uint16 all; + struct PIEACK_BITS bit; +}; + +//--------------------------------------------------------------------------- +// PIE Control Register File: +// +struct PIE_CTRL_REGS { + union PIECTRL_REG PIECTRL; // PIE control register + union PIEACK_REG PIEACK; // PIE acknowledge + union PIEIER_REG PIEIER1; // PIE int1 IER register + union PIEIFR_REG PIEIFR1; // PIE int1 IFR register + union PIEIER_REG PIEIER2; // PIE INT2 IER register + union PIEIFR_REG PIEIFR2; // PIE INT2 IFR register + union PIEIER_REG PIEIER3; // PIE INT3 IER register + union PIEIFR_REG PIEIFR3; // PIE INT3 IFR register + union PIEIER_REG PIEIER4; // PIE INT4 IER register + union PIEIFR_REG PIEIFR4; // PIE INT4 IFR register + union PIEIER_REG PIEIER5; // PIE INT5 IER register + union PIEIFR_REG PIEIFR5; // PIE INT5 IFR register + union PIEIER_REG PIEIER6; // PIE INT6 IER register + union PIEIFR_REG PIEIFR6; // PIE INT6 IFR register + union PIEIER_REG PIEIER7; // PIE INT7 IER register + union PIEIFR_REG PIEIFR7; // PIE INT7 IFR register + union PIEIER_REG PIEIER8; // PIE INT8 IER register + union PIEIFR_REG PIEIFR8; // PIE INT8 IFR register + union PIEIER_REG PIEIER9; // PIE INT9 IER register + union PIEIFR_REG PIEIFR9; // PIE INT9 IFR register + union PIEIER_REG PIEIER10; // PIE int10 IER register + union PIEIFR_REG PIEIFR10; // PIE int10 IFR register + union PIEIER_REG PIEIER11; // PIE int11 IER register + union PIEIFR_REG PIEIFR11; // PIE int11 IFR register + union PIEIER_REG PIEIER12; // PIE int12 IER register + union PIEIFR_REG PIEIFR12; // PIE int12 IFR register +}; + +#define PIEACK_GROUP1 0x0001 +#define PIEACK_GROUP2 0x0002 +#define PIEACK_GROUP3 0x0004 +#define PIEACK_GROUP4 0x0008 +#define PIEACK_GROUP5 0x0010 +#define PIEACK_GROUP6 0x0020 +#define PIEACK_GROUP7 0x0040 +#define PIEACK_GROUP8 0x0080 +#define PIEACK_GROUP9 0x0100 +#define PIEACK_GROUP10 0x0200 +#define PIEACK_GROUP11 0x0400 +#define PIEACK_GROUP12 0x0800 + +//--------------------------------------------------------------------------- +// PIE Control Registers External References & Function Declarations: +// +extern struct PIE_CTRL_REGS PieCtrlRegs; + + + +#endif // end of DSP2833x_PIE_CTRL_H definition + +//=========================================================================== +// End of file. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/DSP2833x_PieVect.h b/Inu/main_matlab/device_support/include/DSP2833x_PieVect.h new file mode 100644 index 0000000..d625dc3 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_PieVect.h @@ -0,0 +1,202 @@ +// TI File $Revision: /main/2 $ +// Checkin $Date: March 16, 2007 09:00:21 $ +//########################################################################### +// +// FILE: DSP2833x_PieVect.h +// +// TITLE: DSP2833x Devices PIE Vector Table Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_PIE_VECT_H +#define DSP2833x_PIE_VECT_H + + + + +//--------------------------------------------------------------------------- +// PIE Interrupt Vector Table Definition: +// +// Create a user type called PINT (pointer to interrupt): + +typedef void(*PINT)(void); + +// Define Vector Table: +struct PIE_VECT_TABLE { + +// Reset is never fetched from this table. +// It will always be fetched from 0x3FFFC0 in +// boot ROM + + PINT PIE1_RESERVED; + PINT PIE2_RESERVED; + PINT PIE3_RESERVED; + PINT PIE4_RESERVED; + PINT PIE5_RESERVED; + PINT PIE6_RESERVED; + PINT PIE7_RESERVED; + PINT PIE8_RESERVED; + PINT PIE9_RESERVED; + PINT PIE10_RESERVED; + PINT PIE11_RESERVED; + PINT PIE12_RESERVED; + PINT PIE13_RESERVED; + +// Non-Peripheral Interrupts: + PINT XINT13; // XINT13 / CPU-Timer1 + PINT TINT2; // CPU-Timer2 + PINT DATALOG; // Datalogging interrupt + PINT RTOSINT; // RTOS interrupt + PINT EMUINT; // Emulation interrupt + PINT XNMI; // Non-maskable interrupt + PINT ILLEGAL; // Illegal operation TRAP + PINT USER1; // User Defined trap 1 + PINT USER2; // User Defined trap 2 + PINT USER3; // User Defined trap 3 + PINT USER4; // User Defined trap 4 + PINT USER5; // User Defined trap 5 + PINT USER6; // User Defined trap 6 + PINT USER7; // User Defined trap 7 + PINT USER8; // User Defined trap 8 + PINT USER9; // User Defined trap 9 + PINT USER10; // User Defined trap 10 + PINT USER11; // User Defined trap 11 + PINT USER12; // User Defined trap 12 + +// Group 1 PIE Peripheral Vectors: + PINT SEQ1INT; + PINT SEQ2INT; + PINT rsvd1_3; + PINT XINT1; + PINT XINT2; + PINT ADCINT; // ADC + PINT TINT0; // Timer 0 + PINT WAKEINT; // WD + +// Group 2 PIE Peripheral Vectors: + PINT EPWM1_TZINT; // EPWM-1 + PINT EPWM2_TZINT; // EPWM-2 + PINT EPWM3_TZINT; // EPWM-3 + PINT EPWM4_TZINT; // EPWM-4 + PINT EPWM5_TZINT; // EPWM-5 + PINT EPWM6_TZINT; // EPWM-6 + PINT rsvd2_7; + PINT rsvd2_8; + +// Group 3 PIE Peripheral Vectors: + PINT EPWM1_INT; // EPWM-1 + PINT EPWM2_INT; // EPWM-2 + PINT EPWM3_INT; // EPWM-3 + PINT EPWM4_INT; // EPWM-4 + PINT EPWM5_INT; // EPWM-5 + PINT EPWM6_INT; // EPWM-6 + PINT rsvd3_7; + PINT rsvd3_8; + +// Group 4 PIE Peripheral Vectors: + PINT ECAP1_INT; // ECAP-1 + PINT ECAP2_INT; // ECAP-2 + PINT ECAP3_INT; // ECAP-3 + PINT ECAP4_INT; // ECAP-4 + PINT ECAP5_INT; // ECAP-5 + PINT ECAP6_INT; // ECAP-6 + PINT rsvd4_7; + PINT rsvd4_8; + +// Group 5 PIE Peripheral Vectors: + PINT EQEP1_INT; // EQEP-1 + PINT EQEP2_INT; // EQEP-2 + PINT rsvd5_3; + PINT rsvd5_4; + PINT rsvd5_5; + PINT rsvd5_6; + PINT rsvd5_7; + PINT rsvd5_8; + +// Group 6 PIE Peripheral Vectors: + PINT SPIRXINTA; // SPI-A + PINT SPITXINTA; // SPI-A + PINT MRINTB; // McBSP-B + PINT MXINTB; // McBSP-B + PINT MRINTA; // McBSP-A + PINT MXINTA; // McBSP-A + PINT rsvd6_7; + PINT rsvd6_8; + +// Group 7 PIE Peripheral Vectors: + PINT DINTCH1; // DMA + PINT DINTCH2; // DMA + PINT DINTCH3; // DMA + PINT DINTCH4; // DMA + PINT DINTCH5; // DMA + PINT DINTCH6; // DMA + PINT rsvd7_7; + PINT rsvd7_8; + +// Group 8 PIE Peripheral Vectors: + PINT I2CINT1A; // I2C-A + PINT I2CINT2A; // I2C-A + PINT rsvd8_3; + PINT rsvd8_4; + PINT SCIRXINTC; // SCI-C + PINT SCITXINTC; // SCI-C + PINT rsvd8_7; + PINT rsvd8_8; + +// Group 9 PIE Peripheral Vectors: + PINT SCIRXINTA; // SCI-A + PINT SCITXINTA; // SCI-A + PINT SCIRXINTB; // SCI-B + PINT SCITXINTB; // SCI-B + PINT ECAN0INTA; // eCAN-A + PINT ECAN1INTA; // eCAN-A + PINT ECAN0INTB; // eCAN-B + PINT ECAN1INTB; // eCAN-B + +// Group 10 PIE Peripheral Vectors: + PINT rsvd10_1; + PINT rsvd10_2; + PINT rsvd10_3; + PINT rsvd10_4; + PINT rsvd10_5; + PINT rsvd10_6; + PINT rsvd10_7; + PINT rsvd10_8; + +// Group 11 PIE Peripheral Vectors: + PINT rsvd11_1; + PINT rsvd11_2; + PINT rsvd11_3; + PINT rsvd11_4; + PINT rsvd11_5; + PINT rsvd11_6; + PINT rsvd11_7; + PINT rsvd11_8; + +// Group 12 PIE Peripheral Vectors: + PINT XINT3; // External interrupt + PINT XINT4; + PINT XINT5; + PINT XINT6; + PINT XINT7; + PINT rsvd12_6; + PINT LVF; // Latched overflow + PINT LUF; // Latched underflow +}; + +//--------------------------------------------------------------------------- +// PIE Interrupt Vector Table External References & Function Declarations: +// +extern struct PIE_VECT_TABLE PieVectTable; + + +#endif // end of DSP2833x_PIE_VECT_H definition + +//=========================================================================== +// End of file. +//=========================================================================== + diff --git a/Inu/main_matlab/device_support/include/DSP2833x_Sci.h b/Inu/main_matlab/device_support/include/DSP2833x_Sci.h new file mode 100644 index 0000000..15a194f --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_Sci.h @@ -0,0 +1,229 @@ +// TI File $Revision: /main/2 $ +// Checkin $Date: March 1, 2007 15:57:02 $ +//########################################################################### +// +// FILE: DSP2833x_Sci.h +// +// TITLE: DSP2833x Device SCI Register Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_SCI_H +#define DSP2833x_SCI_H + + + +//--------------------------------------------------------------------------- +// SCI Individual Register Bit Definitions + +//---------------------------------------------------------- +// SCICCR communication control register bit definitions: +// + +struct SCICCR_BITS { // bit description + Uint16 SCICHAR:3; // 2:0 Character length control + Uint16 ADDRIDLE_MODE:1; // 3 ADDR/IDLE Mode control + Uint16 LOOPBKENA:1; // 4 Loop Back enable + Uint16 PARITYENA:1; // 5 Parity enable + Uint16 PARITY:1; // 6 Even or Odd Parity + Uint16 STOPBITS:1; // 7 Number of Stop Bits + Uint16 rsvd1:8; // 15:8 reserved +}; + + +union SCICCR_REG { + Uint16 all; + struct SCICCR_BITS bit; +}; + +//------------------------------------------- +// SCICTL1 control register 1 bit definitions: +// + +struct SCICTL1_BITS { // bit description + Uint16 RXENA:1; // 0 SCI receiver enable + Uint16 TXENA:1; // 1 SCI transmitter enable + Uint16 SLEEP:1; // 2 SCI sleep + Uint16 TXWAKE:1; // 3 Transmitter wakeup method + Uint16 rsvd:1; // 4 reserved + Uint16 SWRESET:1; // 5 Software reset + Uint16 RXERRINTENA:1; // 6 Recieve interrupt enable + Uint16 rsvd1:9; // 15:7 reserved + +}; + +union SCICTL1_REG { + Uint16 all; + struct SCICTL1_BITS bit; +}; + +//--------------------------------------------- +// SCICTL2 control register 2 bit definitions: +// + +struct SCICTL2_BITS { // bit description + Uint16 TXINTENA:1; // 0 Transmit interrupt enable + Uint16 RXBKINTENA:1; // 1 Receiver-buffer break enable + Uint16 rsvd:4; // 5:2 reserved + Uint16 TXEMPTY:1; // 6 Transmitter empty flag + Uint16 TXRDY:1; // 7 Transmitter ready flag + Uint16 rsvd1:8; // 15:8 reserved + +}; + +union SCICTL2_REG { + Uint16 all; + struct SCICTL2_BITS bit; +}; + +//--------------------------------------------------- +// SCIRXST Receiver status register bit definitions: +// + +struct SCIRXST_BITS { // bit description + Uint16 rsvd:1; // 0 reserved + Uint16 RXWAKE:1; // 1 Receiver wakeup detect flag + Uint16 PE:1; // 2 Parity error flag + Uint16 OE:1; // 3 Overrun error flag + Uint16 FE:1; // 4 Framing error flag + Uint16 BRKDT:1; // 5 Break-detect flag + Uint16 RXRDY:1; // 6 Receiver ready flag + Uint16 RXERROR:1; // 7 Receiver error flag + +}; + +union SCIRXST_REG { + Uint16 all; + struct SCIRXST_BITS bit; +}; + +//---------------------------------------------------- +// SCIRXBUF Receiver Data Buffer with FIFO bit definitions: +// + +struct SCIRXBUF_BITS { // bits description + Uint16 RXDT:8; // 7:0 Receive word + Uint16 rsvd:6; // 13:8 reserved + Uint16 SCIFFPE:1; // 14 SCI PE error in FIFO mode + Uint16 SCIFFFE:1; // 15 SCI FE error in FIFO mode +}; + +union SCIRXBUF_REG { + Uint16 all; + struct SCIRXBUF_BITS bit; +}; + +//-------------------------------------------------- +// SCIPRI Priority control register bit definitions: +// +// + +struct SCIPRI_BITS { // bit description + Uint16 rsvd:3; // 2:0 reserved + Uint16 FREE:1; // 3 Free emulation suspend mode + Uint16 SOFT:1; // 4 Soft emulation suspend mode + Uint16 rsvd1:3; // 7:5 reserved +}; + +union SCIPRI_REG { + Uint16 all; + struct SCIPRI_BITS bit; +}; + +//------------------------------------------------- +// SCI FIFO Transmit register bit definitions: +// +// + +struct SCIFFTX_BITS { // bit description + Uint16 TXFFIL:5; // 4:0 Interrupt level + Uint16 TXFFIENA:1; // 5 Interrupt enable + Uint16 TXFFINTCLR:1; // 6 Clear INT flag + Uint16 TXFFINT:1; // 7 INT flag + Uint16 TXFFST:5; // 12:8 FIFO status + Uint16 TXFIFOXRESET:1; // 13 FIFO reset + Uint16 SCIFFENA:1; // 14 Enhancement enable + Uint16 SCIRST:1; // 15 SCI reset rx/tx channels + +}; + +union SCIFFTX_REG { + Uint16 all; + struct SCIFFTX_BITS bit; +}; + +//------------------------------------------------ +// SCI FIFO recieve register bit definitions: +// +// + +struct SCIFFRX_BITS { // bits description + Uint16 RXFFIL:5; // 4:0 Interrupt level + Uint16 RXFFIENA:1; // 5 Interrupt enable + Uint16 RXFFINTCLR:1; // 6 Clear INT flag + Uint16 RXFFINT:1; // 7 INT flag + Uint16 RXFFST:5; // 12:8 FIFO status + Uint16 RXFIFORESET:1; // 13 FIFO reset + Uint16 RXFFOVRCLR:1; // 14 Clear overflow + Uint16 RXFFOVF:1; // 15 FIFO overflow + +}; + +union SCIFFRX_REG { + Uint16 all; + struct SCIFFRX_BITS bit; +}; + +// SCI FIFO control register bit definitions: +struct SCIFFCT_BITS { // bits description + Uint16 FFTXDLY:8; // 7:0 FIFO transmit delay + Uint16 rsvd:5; // 12:8 reserved + Uint16 CDC:1; // 13 Auto baud mode enable + Uint16 ABDCLR:1; // 14 Auto baud clear + Uint16 ABD:1; // 15 Auto baud detect +}; + +union SCIFFCT_REG { + Uint16 all; + struct SCIFFCT_BITS bit; +}; + +//--------------------------------------------------------------------------- +// SCI Register File: +// +struct SCI_REGS { + union SCICCR_REG SCICCR; // Communications control register + union SCICTL1_REG SCICTL1; // Control register 1 + Uint16 SCIHBAUD; // Baud rate (high) register + Uint16 SCILBAUD; // Baud rate (low) register + union SCICTL2_REG SCICTL2; // Control register 2 + union SCIRXST_REG SCIRXST; // Recieve status register + Uint16 SCIRXEMU; // Recieve emulation buffer register + union SCIRXBUF_REG SCIRXBUF; // Recieve data buffer + Uint16 rsvd1; // reserved + Uint16 SCITXBUF; // Transmit data buffer + union SCIFFTX_REG SCIFFTX; // FIFO transmit register + union SCIFFRX_REG SCIFFRX; // FIFO recieve register + union SCIFFCT_REG SCIFFCT; // FIFO control register + Uint16 rsvd2; // reserved + Uint16 rsvd3; // reserved + union SCIPRI_REG SCIPRI; // FIFO Priority control +}; + +//--------------------------------------------------------------------------- +// SCI External References & Function Declarations: +// +extern struct SCI_REGS SciaRegs; +extern struct SCI_REGS ScibRegs; +extern struct SCI_REGS ScicRegs; + +#endif // end of DSP2833x_SCI_H definition + +//=========================================================================== +// End of file. +//=========================================================================== + diff --git a/Inu/main_matlab/device_support/include/DSP2833x_Spi.h b/Inu/main_matlab/device_support/include/DSP2833x_Spi.h new file mode 100644 index 0000000..68be21a --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_Spi.h @@ -0,0 +1,177 @@ +// TI File $Revision: /main/3 $ +// Checkin $Date: April 17, 2008 11:08:27 $ +//########################################################################### +// +// FILE: DSP2833x_Spi.h +// +// TITLE: DSP2833x Device SPI Register Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_SPI_H +#define DSP2833x_SPI_H + + + +//--------------------------------------------------------------------------- +// SPI Individual Register Bit Definitions: +// +// SPI FIFO Transmit register bit definitions: +struct SPIFFTX_BITS { // bit description + Uint16 TXFFIL:5; // 4:0 Interrupt level + Uint16 TXFFIENA:1; // 5 Interrupt enable + Uint16 TXFFINTCLR:1; // 6 Clear INT flag + Uint16 TXFFINT:1; // 7 INT flag + Uint16 TXFFST:5; // 12:8 FIFO status + Uint16 TXFIFO:1; // 13 FIFO reset + Uint16 SPIFFENA:1; // 14 Enhancement enable + Uint16 SPIRST:1; // 15 Reset SPI +}; + +union SPIFFTX_REG { + Uint16 all; + struct SPIFFTX_BITS bit; +}; + +//-------------------------------------------- +// SPI FIFO recieve register bit definitions: +// +// +struct SPIFFRX_BITS { // bits description + Uint16 RXFFIL:5; // 4:0 Interrupt level + Uint16 RXFFIENA:1; // 5 Interrupt enable + Uint16 RXFFINTCLR:1; // 6 Clear INT flag + Uint16 RXFFINT:1; // 7 INT flag + Uint16 RXFFST:5; // 12:8 FIFO status + Uint16 RXFIFORESET:1; // 13 FIFO reset + Uint16 RXFFOVFCLR:1; // 14 Clear overflow + Uint16 RXFFOVF:1; // 15 FIFO overflow + +}; + +union SPIFFRX_REG { + Uint16 all; + struct SPIFFRX_BITS bit; +}; + +//-------------------------------------------- +// SPI FIFO control register bit definitions: +// +// +struct SPIFFCT_BITS { // bits description + Uint16 TXDLY:8; // 7:0 FIFO transmit delay + Uint16 rsvd:8; // 15:8 reserved +}; + +union SPIFFCT_REG { + Uint16 all; + struct SPIFFCT_BITS bit; +}; + +//--------------------------------------------- +// SPI configuration register bit definitions: +// +// +struct SPICCR_BITS { // bits description + Uint16 SPICHAR:4; // 3:0 Character length control + Uint16 SPILBK:1; // 4 Loop-back enable/disable + Uint16 rsvd1:1; // 5 reserved + Uint16 CLKPOLARITY:1; // 6 Clock polarity + Uint16 SPISWRESET:1; // 7 SPI SW Reset + Uint16 rsvd2:8; // 15:8 reserved +}; + +union SPICCR_REG { + Uint16 all; + struct SPICCR_BITS bit; +}; + +//------------------------------------------------- +// SPI operation control register bit definitions: +// +// +struct SPICTL_BITS { // bits description + Uint16 SPIINTENA:1; // 0 Interrupt enable + Uint16 TALK:1; // 1 Master/Slave transmit enable + Uint16 MASTER_SLAVE:1; // 2 Network control mode + Uint16 CLK_PHASE:1; // 3 Clock phase select + Uint16 OVERRUNINTENA:1; // 4 Overrun interrupt enable + Uint16 rsvd:11; // 15:5 reserved +}; + +union SPICTL_REG { + Uint16 all; + struct SPICTL_BITS bit; +}; + +//-------------------------------------- +// SPI status register bit definitions: +// +// +struct SPISTS_BITS { // bits description + Uint16 rsvd1:5; // 4:0 reserved + Uint16 BUFFULL_FLAG:1; // 5 SPI transmit buffer full flag + Uint16 INT_FLAG:1; // 6 SPI interrupt flag + Uint16 OVERRUN_FLAG:1; // 7 SPI reciever overrun flag + Uint16 rsvd2:8; // 15:8 reserved +}; + +union SPISTS_REG { + Uint16 all; + struct SPISTS_BITS bit; +}; + +//------------------------------------------------ +// SPI priority control register bit definitions: +// +// +struct SPIPRI_BITS { // bits description + Uint16 rsvd1:4; // 3:0 reserved + Uint16 FREE:1; // 4 Free emulation mode control + Uint16 SOFT:1; // 5 Soft emulation mode control + Uint16 rsvd2:1; // 6 reserved + Uint16 rsvd3:9; // 15:7 reserved +}; + +union SPIPRI_REG { + Uint16 all; + struct SPIPRI_BITS bit; +}; + +//--------------------------------------------------------------------------- +// SPI Register File: +// +struct SPI_REGS { + union SPICCR_REG SPICCR; // Configuration register + union SPICTL_REG SPICTL; // Operation control register + union SPISTS_REG SPISTS; // Status register + Uint16 rsvd1; // reserved + Uint16 SPIBRR; // Baud Rate + Uint16 rsvd2; // reserved + Uint16 SPIRXEMU; // Emulation buffer + Uint16 SPIRXBUF; // Serial input buffer + Uint16 SPITXBUF; // Serial output buffer + Uint16 SPIDAT; // Serial data + union SPIFFTX_REG SPIFFTX; // FIFO transmit register + union SPIFFRX_REG SPIFFRX; // FIFO recieve register + union SPIFFCT_REG SPIFFCT; // FIFO control register + Uint16 rsvd3[2]; // reserved + union SPIPRI_REG SPIPRI; // FIFO Priority control +}; + +//--------------------------------------------------------------------------- +// SPI External References & Function Declarations: +// +extern struct SPI_REGS SpiaRegs; + + +#endif // end of DSP2833x_SPI_H definition + +//=========================================================================== +// End of file. +//=========================================================================== + diff --git a/Inu/main_matlab/device_support/include/DSP2833x_SysCtrl.h b/Inu/main_matlab/device_support/include/DSP2833x_SysCtrl.h new file mode 100644 index 0000000..520a904 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_SysCtrl.h @@ -0,0 +1,376 @@ +// TI File $Revision: /main/5 $ +// Checkin $Date: May 12, 2008 09:34:58 $ +//########################################################################### +// +// FILE: DSP2833x_SysCtrl.h +// +// TITLE: DSP2833x Device System Control Register Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_SYS_CTRL_H +#define DSP2833x_SYS_CTRL_H + + + +//--------------------------------------------------------------------------- +// System Control Individual Register Bit Definitions: +// + + +// PLL Status Register +struct PLLSTS_BITS { // bits description + Uint16 PLLLOCKS:1; // 0 PLL lock status + Uint16 rsvd1:1; // 1 reserved + Uint16 PLLOFF:1; // 2 PLL off bit + Uint16 MCLKSTS:1; // 3 Missing clock status bit + Uint16 MCLKCLR:1; // 4 Missing clock clear bit + Uint16 OSCOFF:1; // 5 Oscillator clock off + Uint16 MCLKOFF:1; // 6 Missing clock detect + Uint16 DIVSEL:2; // 7 Divide Select + Uint16 rsvd2:7; // 15:7 reserved +}; + +union PLLSTS_REG { + Uint16 all; + struct PLLSTS_BITS bit; +}; + +// High speed peripheral clock register bit definitions: +struct HISPCP_BITS { // bits description + Uint16 HSPCLK:3; // 2:0 Rate relative to SYSCLKOUT + Uint16 rsvd1:13; // 15:3 reserved +}; + +union HISPCP_REG { + Uint16 all; + struct HISPCP_BITS bit; +}; + +// Low speed peripheral clock register bit definitions: +struct LOSPCP_BITS { // bits description + Uint16 LSPCLK:3; // 2:0 Rate relative to SYSCLKOUT + Uint16 rsvd1:13; // 15:3 reserved +}; + +union LOSPCP_REG { + Uint16 all; + struct LOSPCP_BITS bit; +}; + +// Peripheral clock control register 0 bit definitions: +struct PCLKCR0_BITS { // bits description + Uint16 rsvd1:2; // 1:0 reserved + Uint16 TBCLKSYNC:1; // 2 EWPM Module TBCLK enable/sync + Uint16 ADCENCLK:1; // 3 Enable high speed clk to ADC + Uint16 I2CAENCLK:1; // 4 Enable SYSCLKOUT to I2C-A + Uint16 SCICENCLK:1; // 5 Enalbe low speed clk to SCI-C + Uint16 rsvd2:2; // 7:6 reserved + Uint16 SPIAENCLK:1; // 8 Enable low speed clk to SPI-A + Uint16 rsvd3:1; // 9 reserved + Uint16 SCIAENCLK:1; // 10 Enable low speed clk to SCI-A + Uint16 SCIBENCLK:1; // 11 Enable low speed clk to SCI-B + Uint16 MCBSPAENCLK:1; // 12 Enable low speed clk to McBSP-A + Uint16 MCBSPBENCLK:1; // 13 Enable low speed clk to McBSP-B + Uint16 ECANAENCLK:1; // 14 Enable system clk to eCAN-A + Uint16 ECANBENCLK:1; // 15 Enable system clk to eCAN-B +}; + +union PCLKCR0_REG { + Uint16 all; + struct PCLKCR0_BITS bit; +}; + +// Peripheral clock control register 1 bit definitions: +struct PCLKCR1_BITS { // bits description + Uint16 EPWM1ENCLK:1; // 0 Enable SYSCLKOUT to EPWM1 + Uint16 EPWM2ENCLK:1; // 1 Enable SYSCLKOUT to EPWM2 + Uint16 EPWM3ENCLK:1; // 2 Enable SYSCLKOUT to EPWM3 + Uint16 EPWM4ENCLK:1; // 3 Enable SYSCLKOUT to EPWM4 + Uint16 EPWM5ENCLK:1; // 4 Enable SYSCLKOUT to EPWM5 + Uint16 EPWM6ENCLK:1; // 5 Enable SYSCLKOUT to EPWM6 + Uint16 rsvd1:2; // 7:6 reserved + Uint16 ECAP1ENCLK:1; // 8 Enable SYSCLKOUT to ECAP1 + Uint16 ECAP2ENCLK:1; // 9 Enable SYSCLKOUT to ECAP2 + Uint16 ECAP3ENCLK:1; // 10 Enable SYSCLKOUT to ECAP3 + Uint16 ECAP4ENCLK:1; // 11 Enable SYSCLKOUT to ECAP4 + Uint16 ECAP5ENCLK:1; // 12 Enable SYSCLKOUT to ECAP5 + Uint16 ECAP6ENCLK:1; // 13 Enable SYSCLKOUT to ECAP6 + Uint16 EQEP1ENCLK:1; // 14 Enable SYSCLKOUT to EQEP1 + Uint16 EQEP2ENCLK:1; // 15 Enable SYSCLKOUT to EQEP2 +}; + +union PCLKCR1_REG { + Uint16 all; + struct PCLKCR1_BITS bit; +}; + + +// Peripheral clock control register 2 bit definitions: +struct PCLKCR3_BITS { // bits description + Uint16 rsvd1:8; // 7:0 reserved + Uint16 CPUTIMER0ENCLK:1; // 8 Enable SYSCLKOUT to CPU-Timer 0 + Uint16 CPUTIMER1ENCLK:1; // 9 Enable SYSCLKOUT to CPU-Timer 1 + Uint16 CPUTIMER2ENCLK:1; // 10 Enable SYSCLKOUT to CPU-Timer 2 + Uint16 DMAENCLK:1; // 11 Enable the DMA clock + Uint16 XINTFENCLK:1; // 12 Enable SYSCLKOUT to XINTF + Uint16 GPIOINENCLK:1; // Enable GPIO input clock + Uint16 rsvd2:2; // 15:14 reserved +}; + +union PCLKCR3_REG { + Uint16 all; + struct PCLKCR3_BITS bit; +}; + + + +// PLL control register bit definitions: +struct PLLCR_BITS { // bits description + Uint16 DIV:4; // 3:0 Set clock ratio for the PLL + Uint16 rsvd1:12; // 15:4 reserved +}; + +union PLLCR_REG { + Uint16 all; + struct PLLCR_BITS bit; +}; + +// Low Power Mode 0 control register bit definitions: +struct LPMCR0_BITS { // bits description + Uint16 LPM:2; // 1:0 Set the low power mode + Uint16 QUALSTDBY:6; // 7:2 Qualification + Uint16 rsvd1:7; // 14:8 reserved + Uint16 WDINTE:1; // 15 Enables WD to wake the device from STANDBY +}; + +union LPMCR0_REG { + Uint16 all; + struct LPMCR0_BITS bit; +}; + +// Dual-mapping configuration register bit definitions: +struct MAPCNF_BITS { // bits description + Uint16 MAPEPWM:1; // 0 EPWM dual-map enable + Uint16 rsvd1:15; // 15:1 reserved +}; + +union MAPCNF_REG { + Uint16 all; + struct MAPCNF_BITS bit; +}; + +//--------------------------------------------------------------------------- +// System Control Register File: +// +struct SYS_CTRL_REGS { + Uint16 rsvd1; // 0 + union PLLSTS_REG PLLSTS; // 1 + Uint16 rsvd2[8]; // 2-9 + union HISPCP_REG HISPCP; // 10: High-speed peripheral clock pre-scaler + union LOSPCP_REG LOSPCP; // 11: Low-speed peripheral clock pre-scaler + union PCLKCR0_REG PCLKCR0; // 12: Peripheral clock control register + union PCLKCR1_REG PCLKCR1; // 13: Peripheral clock control register + union LPMCR0_REG LPMCR0; // 14: Low-power mode control register 0 + Uint16 rsvd3; // 15: reserved + union PCLKCR3_REG PCLKCR3; // 16: Peripheral clock control register + union PLLCR_REG PLLCR; // 17: PLL control register + // No bit definitions are defined for SCSR because + // a read-modify-write instruction can clear the WDOVERRIDE bit + Uint16 SCSR; // 18: System control and status register + Uint16 WDCNTR; // 19: WD counter register + Uint16 rsvd4; // 20 + Uint16 WDKEY; // 21: WD reset key register + Uint16 rsvd5[3]; // 22-24 + // No bit definitions are defined for WDCR because + // the proper value must be written to the WDCHK field + // whenever writing to this register. + Uint16 WDCR; // 25: WD timer control register + Uint16 rsvd6[4]; // 26-29 + union MAPCNF_REG MAPCNF; // 30: Dual-mapping configuration register + Uint16 rsvd7[1]; // 31 +}; + + +/* --------------------------------------------------- */ +/* CSM Registers */ +/* */ +/* ----------------------------------------------------*/ + +/* CSM Status & Control register bit definitions */ +struct CSMSCR_BITS { // bit description + Uint16 SECURE:1; // 0 Secure flag + Uint16 rsvd1:14; // 14-1 reserved + Uint16 FORCESEC:1; // 15 Force Secure control bit + +}; + +/* Allow access to the bit fields or entire register */ +union CSMSCR_REG { + Uint16 all; + struct CSMSCR_BITS bit; +}; + +/* CSM Register File */ +struct CSM_REGS { + Uint16 KEY0; // KEY reg bits 15-0 + Uint16 KEY1; // KEY reg bits 31-16 + Uint16 KEY2; // KEY reg bits 47-32 + Uint16 KEY3; // KEY reg bits 63-48 + Uint16 KEY4; // KEY reg bits 79-64 + Uint16 KEY5; // KEY reg bits 95-80 + Uint16 KEY6; // KEY reg bits 111-96 + Uint16 KEY7; // KEY reg bits 127-112 + Uint16 rsvd1; // reserved + Uint16 rsvd2; // reserved + Uint16 rsvd3; // reserved + Uint16 rsvd4; // reserved + Uint16 rsvd5; // reserved + Uint16 rsvd6; // reserved + Uint16 rsvd7; // reserved + union CSMSCR_REG CSMSCR; // CSM Status & Control register +}; + +/* Password locations */ +struct CSM_PWL { + Uint16 PSWD0; // PSWD bits 15-0 + Uint16 PSWD1; // PSWD bits 31-16 + Uint16 PSWD2; // PSWD bits 47-32 + Uint16 PSWD3; // PSWD bits 63-48 + Uint16 PSWD4; // PSWD bits 79-64 + Uint16 PSWD5; // PSWD bits 95-80 + Uint16 PSWD6; // PSWD bits 111-96 + Uint16 PSWD7; // PSWD bits 127-112 +}; + + + +/* Flash Registers */ + +#define FLASH_SLEEP 0x0000; +#define FLASH_STANDBY 0x0001; +#define FLASH_ACTIVE 0x0003; + + +/* Flash Option Register bit definitions */ +struct FOPT_BITS { // bit description + Uint16 ENPIPE:1; // 0 Enable Pipeline Mode + Uint16 rsvd:15; // 1-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FOPT_REG { + Uint16 all; + struct FOPT_BITS bit; +}; + +/* Flash Power Modes Register bit definitions */ +struct FPWR_BITS { // bit description + Uint16 PWR:2; // 0-1 Power Mode bits + Uint16 rsvd:14; // 2-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FPWR_REG { + Uint16 all; + struct FPWR_BITS bit; +}; + + +/* Flash Status Register bit definitions */ +struct FSTATUS_BITS { // bit description + Uint16 PWRS:2; // 0-1 Power Mode Status bits + Uint16 STDBYWAITS:1; // 2 Bank/Pump Sleep to Standby Wait Counter Status bits + Uint16 ACTIVEWAITS:1; // 3 Bank/Pump Standby to Active Wait Counter Status bits + Uint16 rsvd1:4; // 4-7 reserved + Uint16 V3STAT:1; // 8 VDD3V Status Latch bit + Uint16 rsvd2:7; // 9-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FSTATUS_REG { + Uint16 all; + struct FSTATUS_BITS bit; +}; + +/* Flash Sleep to Standby Wait Counter Register bit definitions */ +struct FSTDBYWAIT_BITS { // bit description + Uint16 STDBYWAIT:9; // 0-8 Bank/Pump Sleep to Standby Wait Count bits + Uint16 rsvd:7; // 9-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FSTDBYWAIT_REG { + Uint16 all; + struct FSTDBYWAIT_BITS bit; +}; + +/* Flash Standby to Active Wait Counter Register bit definitions */ +struct FACTIVEWAIT_BITS { // bit description + Uint16 ACTIVEWAIT:9; // 0-8 Bank/Pump Standby to Active Wait Count bits + Uint16 rsvd:7; // 9-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FACTIVEWAIT_REG { + Uint16 all; + struct FACTIVEWAIT_BITS bit; +}; + +/* Bank Read Access Wait State Register bit definitions */ +struct FBANKWAIT_BITS { // bit description + Uint16 RANDWAIT:4; // 0-3 Flash Random Read Wait State bits + Uint16 rsvd1:4; // 4-7 reserved + Uint16 PAGEWAIT:4; // 8-11 Flash Paged Read Wait State bits + Uint16 rsvd2:4; // 12-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FBANKWAIT_REG { + Uint16 all; + struct FBANKWAIT_BITS bit; +}; + +/* OTP Read Access Wait State Register bit definitions */ +struct FOTPWAIT_BITS { // bit description + Uint16 OTPWAIT:5; // 0-4 OTP Read Wait State bits + Uint16 rsvd:11; // 5-15 reserved +}; + +/* Allow access to the bit fields or entire register */ +union FOTPWAIT_REG { + Uint16 all; + struct FOTPWAIT_BITS bit; +}; + + +struct FLASH_REGS { + union FOPT_REG FOPT; // Option Register + Uint16 rsvd1; // reserved + union FPWR_REG FPWR; // Power Modes Register + union FSTATUS_REG FSTATUS; // Status Register + union FSTDBYWAIT_REG FSTDBYWAIT; // Pump/Bank Sleep to Standby Wait State Register + union FACTIVEWAIT_REG FACTIVEWAIT; // Pump/Bank Standby to Active Wait State Register + union FBANKWAIT_REG FBANKWAIT; // Bank Read Access Wait State Register + union FOTPWAIT_REG FOTPWAIT; // OTP Read Access Wait State Register +}; + +//--------------------------------------------------------------------------- +// System Control External References & Function Declarations: +// +extern struct SYS_CTRL_REGS SysCtrlRegs; +extern struct CSM_REGS CsmRegs; +extern struct CSM_PWL CsmPwl; +extern struct FLASH_REGS FlashRegs; + + +#endif // end of DSP2833x_SYS_CTRL_H definition + +//=========================================================================== +// End of file. +//=========================================================================== + diff --git a/Inu/main_matlab/device_support/include/DSP2833x_XIntrupt.h b/Inu/main_matlab/device_support/include/DSP2833x_XIntrupt.h new file mode 100644 index 0000000..2fe44a0 --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_XIntrupt.h @@ -0,0 +1,76 @@ +// TI File $Revision: /main/1 $ +// Checkin $Date: August 18, 2006 13:52:39 $ +//########################################################################### +// +// FILE: DSP2833x_XIntrupt.h +// +// TITLE: DSP2833x Device External Interrupt Register Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_XINTRUPT_H +#define DSP2833x_XINTRUPT_H + + +//--------------------------------------------------------------------------- + +struct XINTCR_BITS { + Uint16 ENABLE:1; // 0 enable/disable + Uint16 rsvd1:1; // 1 reserved + Uint16 POLARITY:2; // 3:2 pos/neg, both triggered + Uint16 rsvd2:12; //15:4 reserved +}; + +union XINTCR_REG { + Uint16 all; + struct XINTCR_BITS bit; +}; + +struct XNMICR_BITS { + Uint16 ENABLE:1; // 0 enable/disable + Uint16 SELECT:1; // 1 Timer 1 or XNMI connected to int13 + Uint16 POLARITY:2; // 3:2 pos/neg, or both triggered + Uint16 rsvd2:12; // 15:4 reserved +}; + +union XNMICR_REG { + Uint16 all; + struct XNMICR_BITS bit; +}; + + + + +//--------------------------------------------------------------------------- +// External Interrupt Register File: +// +struct XINTRUPT_REGS { + union XINTCR_REG XINT1CR; + union XINTCR_REG XINT2CR; + union XINTCR_REG XINT3CR; + union XINTCR_REG XINT4CR; + union XINTCR_REG XINT5CR; + union XINTCR_REG XINT6CR; + union XINTCR_REG XINT7CR; + union XNMICR_REG XNMICR; + Uint16 XINT1CTR; + Uint16 XINT2CTR; + Uint16 rsvd[5]; + Uint16 XNMICTR; +}; + +//--------------------------------------------------------------------------- +// External Interrupt References & Function Declarations: +// +extern struct XINTRUPT_REGS XIntruptRegs; + +#endif // end of DSP2833x_XINTF_H definition + +//=========================================================================== +// End of file. +//=========================================================================== + diff --git a/Inu/main_matlab/device_support/include/DSP2833x_Xintf.h b/Inu/main_matlab/device_support/include/DSP2833x_Xintf.h new file mode 100644 index 0000000..271f92a --- /dev/null +++ b/Inu/main_matlab/device_support/include/DSP2833x_Xintf.h @@ -0,0 +1,114 @@ +// TI File $Revision: /main/4 $ +// Checkin $Date: July 27, 2009 13:57:25 $ +//########################################################################### +// +// FILE: DSP2833x_Xintf.h +// +// TITLE: DSP2833x Device External Interface Register Definitions. +// +//########################################################################### +// $TI Release: 2833x/2823x Header Files V1.32 $ +// $Release Date: June 28, 2010 $ +//########################################################################### +#include "SimSupport_GlobalPrototypes.h" + +#ifndef DSP2833x_XINTF_H +#define DSP2833x_XINTF_H + + + + +// XINTF timing register bit definitions: +struct XTIMING_BITS { // bits description + Uint16 XWRTRAIL:2; // 1:0 Write access trail timing + Uint16 XWRACTIVE:3; // 4:2 Write access active timing + Uint16 XWRLEAD:2; // 6:5 Write access lead timing + Uint16 XRDTRAIL:2; // 8:7 Read access trail timing + Uint16 XRDACTIVE:3; // 11:9 Read access active timing + Uint16 XRDLEAD:2; // 13:12 Read access lead timing + Uint16 USEREADY:1; // 14 Extend access using HW waitstates + Uint16 READYMODE:1; // 15 Ready mode + Uint16 XSIZE:2; // 17:16 XINTF bus width - must be written as 11b + Uint16 rsvd1:4; // 21:18 reserved + Uint16 X2TIMING:1; // 22 Double lead/active/trail timing + Uint16 rsvd3:9; // 31:23 reserved +}; + +union XTIMING_REG { + Uint32 all; + struct XTIMING_BITS bit; +}; + +// XINTF control register bit definitions: +struct XINTCNF2_BITS { // bits description + Uint16 WRBUFF:2; // 1:0 Write buffer depth + Uint16 CLKMODE:1; // 2 Ratio for XCLKOUT with respect to XTIMCLK + Uint16 CLKOFF:1; // 3 Disable XCLKOUT + Uint16 rsvd1:2; // 5:4 reserved + Uint16 WLEVEL:2; // 7:6 Current level of the write buffer + Uint16 rsvd2:1; // 8 reserved + Uint16 HOLD:1; // 9 Hold enable/disable + Uint16 HOLDS:1; // 10 Current state of HOLDn input + Uint16 HOLDAS:1; // 11 Current state of HOLDAn output + Uint16 rsvd3:4; // 15:12 reserved + Uint16 XTIMCLK:3; // 18:16 Ratio for XTIMCLK + Uint16 rsvd4:13; // 31:19 reserved +}; + +union XINTCNF2_REG { + Uint32 all; + struct XINTCNF2_BITS bit; +}; + +// XINTF bank switching register bit definitions: +struct XBANK_BITS { // bits description + Uint16 BANK:3; // 2:0 Zone for which banking is enabled + Uint16 BCYC:3; // 5:3 XTIMCLK cycles to add + Uint16 rsvd:10; // 15:6 reserved +}; + +union XBANK_REG { + Uint16 all; + struct XBANK_BITS bit; +}; + +struct XRESET_BITS { + Uint16 XHARDRESET:1; + Uint16 rsvd1:15; +}; + +union XRESET_REG { + Uint16 all; + struct XRESET_BITS bit; +}; + + +//--------------------------------------------------------------------------- +// XINTF Register File: +// +struct XINTF_REGS { + union XTIMING_REG XTIMING0; + Uint32 rsvd1[5]; + union XTIMING_REG XTIMING6; + union XTIMING_REG XTIMING7; + Uint32 rsvd2[2]; + union XINTCNF2_REG XINTCNF2; + Uint32 rsvd3; + union XBANK_REG XBANK; + Uint16 rsvd4; + Uint16 XREVISION; + Uint16 rsvd5[2]; + union XRESET_REG XRESET; +}; + +//--------------------------------------------------------------------------- +// XINTF External References & Function Declarations: +// +extern struct XINTF_REGS XintfRegs; + + +#endif // end of DSP2833x_XINTF_H definition + +//=========================================================================== +// No more. +//=========================================================================== diff --git a/Inu/main_matlab/device_support/include/IQmathLib.h b/Inu/main_matlab/device_support/include/IQmathLib.h new file mode 100644 index 0000000..5e27d84 --- /dev/null +++ b/Inu/main_matlab/device_support/include/IQmathLib.h @@ -0,0 +1,687 @@ +//#define __IQMATHLIB_H_INCLUDED__ + + +/** +* IQmath MATLAB +* +*/ +#ifndef IQ_MATH_LIB +#define IQ_MATH_LIB + + +#ifndef GLOBAL_Q +#define GLOBAL_Q 24 +#endif + +typedef long _iq; +typedef long _iq30; +typedef long _iq29; +typedef long _iq28; +typedef long _iq27; +typedef long _iq26; +typedef long _iq25; +typedef long _iq24; +typedef long _iq23; +typedef long _iq22; +typedef long _iq21; +typedef long _iq20; +typedef long _iq19; +typedef long _iq18; +typedef long _iq17; +typedef long _iq16; +typedef long _iq15; +typedef long _iq14; +typedef long _iq13; +typedef long _iq12; +typedef long _iq11; +typedef long _iq10; +typedef long _iq9; +typedef long _iq8; +typedef long _iq7; +typedef long _iq6; +typedef long _iq5; +typedef long _iq4; +typedef long _iq3; +typedef long _iq2; +typedef long _iq1; + +//--------------------------------------------------------------------------- +#define _IQmpy2(A) ((A)<<1) +#define _IQmpy4(A) ((A)<<2) +#define _IQmpy8(A) ((A)<<3) +#define _IQmpy16(A) ((A)<<4) +#define _IQmpy32(A) ((A)<<5) +#define _IQmpy64(A) ((A)<<6) + +#define _IQdiv2(A) ((A)>>1) +#define _IQdiv4(A) ((A)>>2) +#define _IQdiv8(A) ((A)>>3) +#define _IQdiv16(A) ((A)>>4) +#define _IQdiv32(A) ((A)>>5) +#define _IQdiv64(A) ((A)>>6) +//--------------------------------------------------------------------------- +#define _IQ30(A) (long) ((A) * 1073741824.0L) +#define _IQ29(A) (long) ((A) * 536870912.0L) +#define _IQ28(A) (long) ((A) * 268435456.0L) +#define _IQ27(A) (long) ((A) * 134217728.0L) +#define _IQ26(A) (long) ((A) * 67108864.0L) +#define _IQ25(A) (long) ((A) * 33554432.0L) +#define _IQ24(A) (long) ((A) * 16777216.0L) +#define _IQ23(A) (long) ((A) * 8388608.0L) +#define _IQ22(A) (long) ((A) * 4194304.0L) +#define _IQ21(A) (long) ((A) * 2097152.0L) +#define _IQ20(A) (long) ((A) * 1048576.0L) +#define _IQ19(A) (long) ((A) * 524288.0L) +#define _IQ18(A) (long) ((A) * 262144.0L) +#define _IQ17(A) (long) ((A) * 131072.0L) +#define _IQ16(A) (long) ((A) * 65536.0L) +#define _IQ15(A) (long) ((A) * 32768.0L) +#define _IQ14(A) (long) ((A) * 16384.0L) +#define _IQ13(A) (long) ((A) * 8192.0L) +#define _IQ12(A) (long) ((A) * 4096.0L) +#define _IQ11(A) (long) ((A) * 2048.0L) +#define _IQ10(A) (long) ((A) * 1024.0L) +#define _IQ9(A) (long) ((A) * 512.0L) +#define _IQ8(A) (long) ((A) * 256.0L) +#define _IQ7(A) (long) ((A) * 128.0L) +#define _IQ6(A) (long) ((A) * 64.0L) +#define _IQ5(A) (long) ((A) * 32.0L) +#define _IQ4(A) (long) ((A) * 16.0L) +#define _IQ3(A) (long) ((A) * 8.0L) +#define _IQ2(A) (long) ((A) * 4.0L) +#define _IQ1(A) (long) ((A) * 2.0L) + +#if GLOBAL_Q == 30 +#define _IQ(A) _IQ30(A) +#endif +#if GLOBAL_Q == 29 +#define _IQ(A) _IQ29(A) +#endif +#if GLOBAL_Q == 28 +#define _IQ(A) _IQ28(A) +#endif +#if GLOBAL_Q == 27 +#define _IQ(A) _IQ27(A) +#endif +#if GLOBAL_Q == 26 +#define _IQ(A) _IQ26(A) +#endif +#if GLOBAL_Q == 25 +#define _IQ(A) _IQ25(A) +#endif +#if GLOBAL_Q == 24 +#define _IQ(A) _IQ24(A) +#endif +#if GLOBAL_Q == 23 +#define _IQ(A) _IQ23(A) +#endif +#if GLOBAL_Q == 22 +#define _IQ(A) _IQ22(A) +#endif +#if GLOBAL_Q == 21 +#define _IQ(A) _IQ21(A) +#endif +#if GLOBAL_Q == 20 +#define _IQ(A) _IQ20(A) +#endif +#if GLOBAL_Q == 19 +#define _IQ(A) _IQ19(A) +#endif +#if GLOBAL_Q == 18 +#define _IQ(A) _IQ18(A) +#endif +#if GLOBAL_Q == 17 +#define _IQ(A) _IQ17(A) +#endif +#if GLOBAL_Q == 16 +#define _IQ(A) _IQ16(A) +#endif +#if GLOBAL_Q == 15 +#define _IQ(A) _IQ15(A) +#endif +#if GLOBAL_Q == 14 +#define _IQ(A) _IQ14(A) +#endif +#if GLOBAL_Q == 13 +#define _IQ(A) _IQ13(A) +#endif +#if GLOBAL_Q == 12 +#define _IQ(A) _IQ12(A) +#endif +#if GLOBAL_Q == 11 +#define _IQ(A) _IQ11(A) +#endif +#if GLOBAL_Q == 10 +#define _IQ(A) _IQ10(A) +#endif +#if GLOBAL_Q == 9 +#define _IQ(A) _IQ9(A) +#endif +#if GLOBAL_Q == 8 +#define _IQ(A) _IQ8(A) +#endif +#if GLOBAL_Q == 7 +#define _IQ(A) _IQ7(A) +#endif +#if GLOBAL_Q == 6 +#define _IQ(A) _IQ6(A) +#endif +#if GLOBAL_Q == 5 +#define _IQ(A) _IQ5(A) +#endif +#if GLOBAL_Q == 4 +#define _IQ(A) _IQ4(A) +#endif +#if GLOBAL_Q == 3 +#define _IQ(A) _IQ3(A) +#endif +#if GLOBAL_Q == 2 +#define _IQ(A) _IQ2(A) +#endif +#if GLOBAL_Q == 1 +#define _IQ(A) _IQ1(A) +#endif + +//--------------------------------------------------------------------------- + +#define _IQ30toF(A) ((float) ((A) / 1073741824.0L)) +#define _IQ29toF(A) ((float) ((A) / 536870912.0L)) +#define _IQ28toF(A) ((float) ((A) / 268435456.0L)) +#define _IQ27toF(A) ((float) ((A) / 134217728.0L)) +#define _IQ26toF(A) ((float) ((A) / 67108864.0L)) +#define _IQ25toF(A) ((float) ((A) / 33554432.0L)) +#define _IQ24toF(A) ((float) ((A) / 16777216.0L)) +#define _IQ23toF(A) ((float) ((A) / 8388608.0L)) +#define _IQ22toF(A) ((float) ((A) / 4194304.0L)) +#define _IQ21toF(A) ((float) ((A) / 2097152.0L)) +#define _IQ20toF(A) ((float) ((A) / 1048576.0L)) +#define _IQ19toF(A) ((float) ((A) / 524288.0L)) +#define _IQ18toF(A) ((float) ((A) / 262144.0L)) +#define _IQ17toF(A) ((float) ((A) / 131072.0L)) +#define _IQ16toF(A) ((float) ((A) / 65536.0L)) +#define _IQ15toF(A) ((float) ((A) / 32768.0L)) +#define _IQ14toF(A) ((float) ((A) / 16384.0L)) +#define _IQ13toF(A) ((float) ((A) / 8192.0L)) +#define _IQ12toF(A) ((float) ((A) / 4096.0L)) +#define _IQ11toF(A) ((float) ((A) / 2048.0L)) +#define _IQ10toF(A) ((float) ((A) / 1024.0L)) +#define _IQ9toF(A) ((float) ((A) / 512.0L)) +#define _IQ8toF(A) ((float) ((A) / 256.0L)) +#define _IQ7toF(A) ((float) ((A) / 128.0L)) +#define _IQ6toF(A) ((float) ((A) / 64.0L)) +#define _IQ5toF(A) ((float) ((A) / 32.0L)) +#define _IQ4toF(A) ((float) ((A) / 16.0L)) +#define _IQ3toF(A) ((float) ((A) / 8.0L)) +#define _IQ2toF(A) ((float) ((A) / 4.0L)) +#define _IQ1toF(A) ((float) ((A) / 2.0L)) + +#if GLOBAL_Q == 30 +#define _IQtoF(A) _IQ30toF(A) +#endif +#if GLOBAL_Q == 29 +#define _IQtoF(A) _IQ29toF(A) +#endif +#if GLOBAL_Q == 28 +#define _IQtoF(A) _IQ28toF(A) +#endif +#if GLOBAL_Q == 27 +#define _IQtoF(A) _IQ27toF(A) +#endif +#if GLOBAL_Q == 26 +#define _IQtoF(A) _IQ26toF(A) +#endif +#if GLOBAL_Q == 25 +#define _IQtoF(A) _IQ25toF(A) +#endif +#if GLOBAL_Q == 24 +#define _IQtoF(A) _IQ24toF(A) +#endif +#if GLOBAL_Q == 23 +#define _IQtoF(A) _IQ23toF(A) +#endif +#if GLOBAL_Q == 22 +#define _IQtoF(A) _IQ22toF(A) +#endif +#if GLOBAL_Q == 21 +#define _IQtoF(A) _IQ21toF(A) +#endif +#if GLOBAL_Q == 20 +#define _IQtoF(A) _IQ20toF(A) +#endif +#if GLOBAL_Q == 19 +#define _IQtoF(A) _IQ19toF(A) +#endif +#if GLOBAL_Q == 18 +#define _IQtoF(A) _IQ18toF(A) +#endif +#if GLOBAL_Q == 17 +#define _IQtoF(A) _IQ17toF(A) +#endif +#if GLOBAL_Q == 16 +#define _IQtoF(A) _IQ16toF(A) +#endif +#if GLOBAL_Q == 15 +#define _IQtoF(A) _IQ15toF(A) +#endif +#if GLOBAL_Q == 14 +#define _IQtoF(A) _IQ14toF(A) +#endif +#if GLOBAL_Q == 13 +#define _IQtoF(A) _IQ13toF(A) +#endif +#if GLOBAL_Q == 12 +#define _IQtoF(A) _IQ12toF(A) +#endif +#if GLOBAL_Q == 11 +#define _IQtoF(A) _IQ11toF(A) +#endif +#if GLOBAL_Q == 10 +#define _IQtoF(A) _IQ10toF(A) +#endif +#if GLOBAL_Q == 9 +#define _IQtoF(A) _IQ9toF(A) +#endif +#if GLOBAL_Q == 8 +#define _IQtoF(A) _IQ8toF(A) +#endif +#if GLOBAL_Q == 7 +#define _IQtoF(A) _IQ7toF(A) +#endif +#if GLOBAL_Q == 6 +#define _IQtoF(A) _IQ6toF(A) +#endif +#if GLOBAL_Q == 5 +#define _IQtoF(A) _IQ5toF(A) +#endif +#if GLOBAL_Q == 4 +#define _IQtoF(A) _IQ4toF(A) +#endif +#if GLOBAL_Q == 3 +#define _IQtoF(A) _IQ3toF(A) +#endif +#if GLOBAL_Q == 2 +#define _IQtoF(A) _IQ2toF(A) +#endif +#if GLOBAL_Q == 1 +#define _IQtoF(A) _IQ1toF(A) +#endif + +#define _IQsat(A, Pos, Neg) ((A > Pos) ? Pos : (A < Neg) ? Neg : A) +//--------------------------------------------------------------------------- +#define _IQtoIQ30(A) ((long) (A) << (30 - GLOBAL_Q)) +#define _IQ30toIQ(A) ((long) (A) >> (30 - GLOBAL_Q)) + +#if (GLOBAL_Q >= 29) +#define _IQtoIQ29(A) ((long) (A) >> (GLOBAL_Q - 29)) +#define _IQ29toIQ(A) ((long) (A) << (GLOBAL_Q - 29)) +#else +#define _IQtoIQ29(A) ((long) (A) << (29 - GLOBAL_Q)) +#define _IQ29toIQ(A) ((long) (A) >> (29 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 28) +#define _IQtoIQ28(A) ((long) (A) >> (GLOBAL_Q - 28)) +#define _IQ28toIQ(A) ((long) (A) << (GLOBAL_Q - 28)) +#else +#define _IQtoIQ28(A) ((long) (A) << (28 - GLOBAL_Q)) +#define _IQ28toIQ(A) ((long) (A) >> (28 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 27) +#define _IQtoIQ27(A) ((long) (A) >> (GLOBAL_Q - 27)) +#define _IQ27toIQ(A) ((long) (A) << (GLOBAL_Q - 27)) +#else +#define _IQtoIQ27(A) ((long) (A) << (27 - GLOBAL_Q)) +#define _IQ27toIQ(A) ((long) (A) >> (27 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 26) +#define _IQtoIQ26(A) ((long) (A) >> (GLOBAL_Q - 26)) +#define _IQ26toIQ(A) ((long) (A) << (GLOBAL_Q - 26)) +#else +#define _IQtoIQ26(A) ((long) (A) << (26 - GLOBAL_Q)) +#define _IQ26toIQ(A) ((long) (A) >> (26 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 25) +#define _IQtoIQ25(A) ((long) (A) >> (GLOBAL_Q - 25)) +#define _IQ25toIQ(A) ((long) (A) << (GLOBAL_Q - 25)) +#else +#define _IQtoIQ25(A) ((long) (A) << (25 - GLOBAL_Q)) +#define _IQ25toIQ(A) ((long) (A) >> (25 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 24) +#define _IQtoIQ24(A) ((long) (A) >> (GLOBAL_Q - 24)) +#define _IQ24toIQ(A) ((long) (A) << (GLOBAL_Q - 24)) +#else +#define _IQtoIQ24(A) ((long) (A) << (24 - GLOBAL_Q)) +#define _IQ24toIQ(A) ((long) (A) >> (24 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 23) +#define _IQtoIQ23(A) ((long) (A) >> (GLOBAL_Q - 23)) +#define _IQ23toIQ(A) ((long) (A) << (GLOBAL_Q - 23)) +#else +#define _IQtoIQ23(A) ((long) (A) << (23 - GLOBAL_Q)) +#define _IQ23toIQ(A) ((long) (A) >> (23 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 22) +#define _IQtoIQ22(A) ((long) (A) >> (GLOBAL_Q - 22)) +#define _IQ22toIQ(A) ((long) (A) << (GLOBAL_Q - 22)) +#else +#define _IQtoIQ22(A) ((long) (A) << (22 - GLOBAL_Q)) +#define _IQ22toIQ(A) ((long) (A) >> (22 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 21) +#define _IQtoIQ21(A) ((long) (A) >> (GLOBAL_Q - 21)) +#define _IQ21toIQ(A) ((long) (A) << (GLOBAL_Q - 21)) +#else +#define _IQtoIQ21(A) ((long) (A) << (21 - GLOBAL_Q)) +#define _IQ21toIQ(A) ((long) (A) >> (21 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 20) +#define _IQtoIQ20(A) ((long) (A) >> (GLOBAL_Q - 20)) +#define _IQ20toIQ(A) ((long) (A) << (GLOBAL_Q - 20)) +#else +#define _IQtoIQ20(A) ((long) (A) << (20 - GLOBAL_Q)) +#define _IQ20toIQ(A) ((long) (A) >> (20 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 19) +#define _IQtoIQ19(A) ((long) (A) >> (GLOBAL_Q - 19)) +#define _IQ19toIQ(A) ((long) (A) << (GLOBAL_Q - 19)) +#else +#define _IQtoIQ19(A) ((long) (A) << (19 - GLOBAL_Q)) +#define _IQ19toIQ(A) ((long) (A) >> (19 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 18) +#define _IQtoIQ18(A) ((long) (A) >> (GLOBAL_Q - 18)) +#define _IQ18toIQ(A) ((long) (A) << (GLOBAL_Q - 18)) +#else +#define _IQtoIQ18(A) ((long) (A) << (18 - GLOBAL_Q)) +#define _IQ18toIQ(A) ((long) (A) >> (18 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 17) +#define _IQtoIQ17(A) ((long) (A) >> (GLOBAL_Q - 17)) +#define _IQ17toIQ(A) ((long) (A) << (GLOBAL_Q - 17)) +#else +#define _IQtoIQ17(A) ((long) (A) << (17 - GLOBAL_Q)) +#define _IQ17toIQ(A) ((long) (A) >> (17 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 16) +#define _IQtoIQ16(A) ((long) (A) >> (GLOBAL_Q - 16)) +#define _IQ16toIQ(A) ((long) (A) << (GLOBAL_Q - 16)) +#else +#define _IQtoIQ16(A) ((long) (A) << (16 - GLOBAL_Q)) +#define _IQ16toIQ(A) ((long) (A) >> (16 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 15) +#define _IQtoIQ15(A) ((long) (A) >> (GLOBAL_Q - 15)) +#define _IQ15toIQ(A) ((long) (A) << (GLOBAL_Q - 15)) +#define _IQtoQ15(A) ((long) (A) >> (GLOBAL_Q - 15)) +#define _Q15toIQ(A) ((long) (A) << (GLOBAL_Q - 15)) +#else +#define _IQtoIQ15(A) ((long) (A) << (15 - GLOBAL_Q)) +#define _IQ15toIQ(A) ((long) (A) >> (15 - GLOBAL_Q)) +#define _IQtoQ15(A) ((long) (A) << (15 - GLOBAL_Q)) +#define _Q15toIQ(A) ((long) (A) >> (15 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 14) +#define _IQtoIQ14(A) ((long) (A) >> (GLOBAL_Q - 14)) +#define _IQ14toIQ(A) ((long) (A) << (GLOBAL_Q - 14)) +#define _IQtoQ14(A) ((long) (A) >> (GLOBAL_Q - 14)) +#define _Q14toIQ(A) ((long) (A) << (GLOBAL_Q - 14)) +#else +#define _IQtoIQ14(A) ((long) (A) << (14 - GLOBAL_Q)) +#define _IQ14toIQ(A) ((long) (A) >> (14 - GLOBAL_Q)) +#define _IQtoQ14(A) ((long) (A) << (14 - GLOBAL_Q)) +#define _Q14toIQ(A) ((long) (A) >> (14 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 13) +#define _IQtoIQ13(A) ((long) (A) >> (GLOBAL_Q - 13)) +#define _IQ13toIQ(A) ((long) (A) << (GLOBAL_Q - 13)) +#define _IQtoQ13(A) ((long) (A) >> (GLOBAL_Q - 13)) +#define _Q13toIQ(A) ((long) (A) << (GLOBAL_Q - 13)) +#else +#define _IQtoIQ13(A) ((long) (A) << (13 - GLOBAL_Q)) +#define _IQ13toIQ(A) ((long) (A) >> (13 - GLOBAL_Q)) +#define _IQtoQ13(A) ((long) (A) << (13 - GLOBAL_Q)) +#define _Q13toIQ(A) ((long) (A) >> (13 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 12) +#define _IQtoIQ12(A) ((long) (A) >> (GLOBAL_Q - 12)) +#define _IQ12toIQ(A) ((long) (A) << (GLOBAL_Q - 12)) +#define _IQtoQ12(A) ((long) (A) >> (GLOBAL_Q - 12)) +#define _Q12toIQ(A) ((long) (A) << (GLOBAL_Q - 12)) +#else +#define _IQtoIQ12(A) ((long) (A) << (12 - GLOBAL_Q)) +#define _IQ12toIQ(A) ((long) (A) >> (12 - GLOBAL_Q)) +#define _IQtoQ12(A) ((long) (A) << (12 - GLOBAL_Q)) +#define _Q12toIQ(A) ((long) (A) >> (12 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 11) +#define _IQtoIQ11(A) ((long) (A) >> (GLOBAL_Q - 11)) +#define _IQ11toIQ(A) ((long) (A) << (GLOBAL_Q - 11)) +#define _IQtoQ11(A) ((long) (A) >> (GLOBAL_Q - 11)) +#define _Q11toIQ(A) ((long) (A) << (GLOBAL_Q - 11)) +#else +#define _IQtoIQ11(A) ((long) (A) << (11 - GLOBAL_Q)) +#define _IQ11toIQ(A) ((long) (A) >> (11 - GLOBAL_Q)) +#define _IQtoQ11(A) ((long) (A) << (11 - GLOBAL_Q)) +#define _Q11toIQ(A) ((long) (A) >> (11 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 10) +#define _IQtoIQ10(A) ((long) (A) >> (GLOBAL_Q - 10)) +#define _IQ10toIQ(A) ((long) (A) << (GLOBAL_Q - 10)) +#define _IQtoQ10(A) ((long) (A) >> (GLOBAL_Q - 10)) +#define _Q10toIQ(A) ((long) (A) << (GLOBAL_Q - 10)) +#else +#define _IQtoIQ10(A) ((long) (A) << (10 - GLOBAL_Q)) +#define _IQ10toIQ(A) ((long) (A) >> (10 - GLOBAL_Q)) +#define _IQtoQ10(A) ((long) (A) << (10 - GLOBAL_Q)) +#define _Q10toIQ(A) ((long) (A) >> (10 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 9) +#define _IQtoIQ9(A) ((long) (A) >> (GLOBAL_Q - 9)) +#define _IQ9toIQ(A) ((long) (A) << (GLOBAL_Q - 9)) +#define _IQtoQ9(A) ((long) (A) >> (GLOBAL_Q - 9)) +#define _Q9toIQ(A) ((long) (A) << (GLOBAL_Q - 9)) +#else +#define _IQtoIQ9(A) ((long) (A) << (9 - GLOBAL_Q)) +#define _IQ9toIQ(A) ((long) (A) >> (9 - GLOBAL_Q)) +#define _IQtoQ9(A) ((long) (A) << (9 - GLOBAL_Q)) +#define _Q9toIQ(A) ((long) (A) >> (9 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 8) +#define _IQtoIQ8(A) ((long) (A) >> (GLOBAL_Q - 8)) +#define _IQ8toIQ(A) ((long) (A) << (GLOBAL_Q - 8)) +#define _IQtoQ8(A) ((long) (A) >> (GLOBAL_Q - 8)) +#define _Q8toIQ(A) ((long) (A) << (GLOBAL_Q - 8)) +#else +#define _IQtoIQ8(A) ((long) (A) << (8 - GLOBAL_Q)) +#define _IQ8toIQ(A) ((long) (A) >> (8 - GLOBAL_Q)) +#define _IQtoQ8(A) ((long) (A) << (8 - GLOBAL_Q)) +#define _Q8toIQ(A) ((long) (A) >> (8 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 7) +#define _IQtoIQ7(A) ((long) (A) >> (GLOBAL_Q - 7)) +#define _IQ7toIQ(A) ((long) (A) << (GLOBAL_Q - 7)) +#define _IQtoQ7(A) ((long) (A) >> (GLOBAL_Q - 7)) +#define _Q7toIQ(A) ((long) (A) << (GLOBAL_Q - 7)) +#else +#define _IQtoIQ7(A) ((long) (A) << (7 - GLOBAL_Q)) +#define _IQ7toIQ(A) ((long) (A) >> (7 - GLOBAL_Q)) +#define _IQtoQ7(A) ((long) (A) << (7 - GLOBAL_Q)) +#define _Q7toIQ(A) ((long) (A) >> (7 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 6) +#define _IQtoIQ6(A) ((long) (A) >> (GLOBAL_Q - 6)) +#define _IQ6toIQ(A) ((long) (A) << (GLOBAL_Q - 6)) +#define _IQtoQ6(A) ((long) (A) >> (GLOBAL_Q - 6)) +#define _Q6toIQ(A) ((long) (A) << (GLOBAL_Q - 6)) +#else +#define _IQtoIQ6(A) ((long) (A) << (6 - GLOBAL_Q)) +#define _IQ6toIQ(A) ((long) (A) >> (6 - GLOBAL_Q)) +#define _IQtoQ6(A) ((long) (A) << (6 - GLOBAL_Q)) +#define _Q6toIQ(A) ((long) (A) >> (6 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 5) +#define _IQtoIQ5(A) ((long) (A) >> (GLOBAL_Q - 5)) +#define _IQ5toIQ(A) ((long) (A) << (GLOBAL_Q - 5)) +#define _IQtoQ5(A) ((long) (A) >> (GLOBAL_Q - 5)) +#define _Q5toIQ(A) ((long) (A) << (GLOBAL_Q - 5)) +#else +#define _IQtoIQ5(A) ((long) (A) << (5 - GLOBAL_Q)) +#define _IQ5toIQ(A) ((long) (A) >> (5 - GLOBAL_Q)) +#define _IQtoQ5(A) ((long) (A) << (5 - GLOBAL_Q)) +#define _Q5toIQ(A) ((long) (A) >> (5 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 4) +#define _IQtoIQ4(A) ((long) (A) >> (GLOBAL_Q - 4)) +#define _IQ4toIQ(A) ((long) (A) << (GLOBAL_Q - 4)) +#define _IQtoQ4(A) ((long) (A) >> (GLOBAL_Q - 4)) +#define _Q4toIQ(A) ((long) (A) << (GLOBAL_Q - 4)) +#else +#define _IQtoIQ4(A) ((long) (A) << (4 - GLOBAL_Q)) +#define _IQ4toIQ(A) ((long) (A) >> (4 - GLOBAL_Q)) +#define _IQtoQ4(A) ((long) (A) << (4 - GLOBAL_Q)) +#define _Q4toIQ(A) ((long) (A) >> (4 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 3) +#define _IQtoIQ3(A) ((long) (A) >> (GLOBAL_Q - 3)) +#define _IQ3toIQ(A) ((long) (A) << (GLOBAL_Q - 3)) +#define _IQtoQ3(A) ((long) (A) >> (GLOBAL_Q - 3)) +#define _Q3toIQ(A) ((long) (A) << (GLOBAL_Q - 3)) +#else +#define _IQtoIQ3(A) ((long) (A) << (3 - GLOBAL_Q)) +#define _IQ3toIQ(A) ((long) (A) >> (3 - GLOBAL_Q)) +#define _IQtoQ3(A) ((long) (A) << (3 - GLOBAL_Q)) +#define _Q3toIQ(A) ((long) (A) >> (3 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 2) +#define _IQtoIQ2(A) ((long) (A) >> (GLOBAL_Q - 2)) +#define _IQ2toIQ(A) ((long) (A) << (GLOBAL_Q - 2)) +#define _IQtoQ2(A) ((long) (A) >> (GLOBAL_Q - 2)) +#define _Q2toIQ(A) ((long) (A) << (GLOBAL_Q - 2)) +#else +#define _IQtoIQ2(A) ((long) (A) << (2 - GLOBAL_Q)) +#define _IQ2toIQ(A) ((long) (A) >> (2 - GLOBAL_Q)) +#define _IQtoQ2(A) ((long) (A) << (2 - GLOBAL_Q)) +#define _Q2toIQ(A) ((long) (A) >> (2 - GLOBAL_Q)) +#endif + +#if (GLOBAL_Q >= 1) +#define _IQtoQ1(A) ((long) (A) >> (GLOBAL_Q - 1)) +#define _Q1toIQ(A) ((long) (A) << (GLOBAL_Q - 1)) +#else +#define _IQtoQ1(A) ((long) (A) << (1 - GLOBAL_Q)) +#define _Q1toIQ(A) ((long) (A) >> (1 - GLOBAL_Q)) +#endif + +#define _IQtoIQ1(A) ((long) (A) >> (GLOBAL_Q - 1)) +#define _IQ1toIQ(A) ((long) (A) << (GLOBAL_Q - 1)) + +///////////////////////////////////////////////////////////// +long multiply(long x, long y); +long long multiply_fixed_base_select(long long x, long long y, int base); +long divide(long num, long den); +long divide19(long num, long den); +long divideN(long num, long den, unsigned int d); +long sin_fixed(long x); +long cos_fixed(long x); +long sqrt_fixed(long x); +long exp_fixed(long x); +long exp_fixedN(long x, unsigned int n); + +#define _IQabs(A) ((A) > 0 ? (A): -(A)) +#define _IQmpy(A,B) multiply(A,B) +#define _IQ19mpy(A,B) multiply_fixed_base_select(A,B,19) +#define _IQ18mpy(A,B) multiply_fixed_base_select(A,B,18) + +#define _IQdiv(A,B) divide(A,B) +#define _IQ19div(A,B) divide19(A,B) +#define _IQ18div(A,B) divideN(A,B,18) +#define _IQ22div(A,B) divideN(A,B,22) +#define _IQsin(A) sin_fixed(A) +#define _IQcos(A) cos_fixed(A) +#define _IQsinPU(A) sin_fixed(A) +#define _IQcosPU(A) cos_fixed(A) +#define _IQsqrt(A) sqrt_fixed(A) +#define _IQexp(A) exp_fixed(A) +#define _IQ18exp(A) exp_fixedN(A,18) + + +#define _IQmpyI32(A,B) ((A)*(B)) + + +#define PI 3.1415926535897932384626433832795 +#define PI_2 1.5707963267948966192313216916398 +#define TWO_PI 6.283185307179586476925286766559 + +#ifndef ONE_24 +#define ONE_24 16777216 +#endif +#ifndef ONE_27 +#define ONE_27 134217728 +#endif +#ifndef ONE_28 +#define ONE_28 268435456 +#endif + +// #ifndef FIXED_PI +// #define FIXED_PI 52707179 +// #endif + +// #ifndef FIXED_2PI +// #define FIXED_2PI 105414357 +// #endif + +#ifndef FIXED_PI_30 +#define FIXED_PI_30 3373259426 +#endif + +#ifndef FIXED_2PI_30 +#define FIXED_2PI_30 6746518852 +#endif + +#ifndef FIXED_3PIna2 +#define FIXED_3PIna2 79060768 +#endif + +#ifndef FIXED_PIna3 +#define FIXED_PIna3 17569059 +#endif + +#ifndef FIXED_PIna6 +#define FIXED_PIna6 8784529 +#endif + +//########################################################################### +// If FLOAT_MATH is used, the IQmath library function are replaced by +// equivalent floating point operations: +//=========================================================================== + +#define _IQ15sqrt(A) sqrt(A) + +#endif //IQ_MATH_LIB diff --git a/Inu/main_matlab/device_support/include/SimSupport_GlobalPrototypes.h b/Inu/main_matlab/device_support/include/SimSupport_GlobalPrototypes.h new file mode 100644 index 0000000..ce32fdd --- /dev/null +++ b/Inu/main_matlab/device_support/include/SimSupport_GlobalPrototypes.h @@ -0,0 +1,5 @@ +#define cregister + +#define interrupt + +#define asm(...) \ No newline at end of file diff --git a/Inu/main_matlab/device_support/include/dmctype.h b/Inu/main_matlab/device_support/include/dmctype.h new file mode 100644 index 0000000..31b11d8 --- /dev/null +++ b/Inu/main_matlab/device_support/include/dmctype.h @@ -0,0 +1,32 @@ +/* ================================================================================= +File name: DMCTYPE.H + +Originator: Digital Control Systems Group + Texas Instruments + +Description: DMC data type definition file. +===================================================================================== + History: +------------------------------------------------------------------------------------- + 04-15-2005 Version 3.20 +------------------------------------------------------------------------------*/ + +#ifndef DMCTYPE +#define DMCTYPE + +//--------------------------------------------------------------------------- +// 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 unsigned int Uint16; +typedef unsigned long Uint32; +typedef float float32; +typedef long double float64; +#endif + +#endif // DMCTYPE + diff --git a/Inu/main_matlab/device_support/source/C28x_FPU_FastRTS.c b/Inu/main_matlab/device_support/source/C28x_FPU_FastRTS.c new file mode 100644 index 0000000..38895d0 --- /dev/null +++ b/Inu/main_matlab/device_support/source/C28x_FPU_FastRTS.c @@ -0,0 +1,52 @@ +#include "math.h" +/* +// Reciprocal (32-bit Precision) +signed long int qinv1(signed short int x) +{ + return (signed long int)(2147483647.999/(double)x); //2147483648 2 31- +} + + +// Reciprocal (16-bit Precision) +signed short int qinv2(signed short int x) +{ + return (signed short int)(32767.999/(double)x); //32768 2 15- +} + + +// SIN (Table look-up and Linear Interpolation) +signed short int qsinlt(signed short int x) +{ + return (signed short int)(32767.999*sin((double)x*3.1415926535897932384626433832795/32768.)); +} + + +// COS (Table look-up and Linear Interpolation) +signed short int qcoslt(signed short int x) +{ + return (signed short int)(32767.999*cos((double)x*3.1415926535897932384626433832795/32768.)); +} + + +// Fixed point Square-root (Taylor series implementation) +unsigned short int qsqrt(unsigned long int x) +{ + return (unsigned short int)sqrt((double)x); +} +*/ + +// Single-Precision Floating-Point 1.0/Square Root +float isqrt(float x) +{ + return 1.0/sqrt(x); +} + + +// Single-Precision Floating-Point SIN and COS (radians) +void sincos(float radian, float *ptrSin, float *ptrCos) +{ + *ptrSin = sin(radian); + *ptrCos = cos(radian); +} + + diff --git a/Inu/main_matlab/device_support/source/C28x_FPU_FastRTS.obj b/Inu/main_matlab/device_support/source/C28x_FPU_FastRTS.obj new file mode 100644 index 0000000000000000000000000000000000000000..51a7a69ad6f54480acee828e3926be67b8f762f5 GIT binary patch literal 1685 zcma)6PiPZq6o1nhV~x6#>OsWA4%sjxryTLZ^e@}ecUXWQz!pi-)r>i&I!joK#wDh*ap^%i>J8EoLk6v2_P#tREffvt4 z5Y}$l+S4@{O+RtOj4B)DQmLq$az2;R3YlD4QB&Qm8^`6IfkC+^ZJ4n{Tq+Ll zgAV9yfnk9AupE4FS%a$X(=vL|C}vF|5L+$mD4AMbJE#>#gzjR#q~%nd_7FMzIxx=< z-FQWdIo`L_*1M;({LsIV!#4v{ixBw^KMrWq-&1MW~7FNZX>wl@?|*W;c($ z|LfDv$g^9``jz7?9WVbpwd>5e{pV+r7u$ZHcoDw0Y0c4**}(kSccRnw*v44!0Q!baSq zO_RzpG~D _uD_u?!7%y|_n}I+kVV)QJ7)Eq4fja=STnf-FPlL!4)SOkK4(nz3Iu z5g}ngK(B!T%E7PSl!5{pw;Yaya6Lw!L~oLlz~SFJ@|PhxTE zYSG?mwXVNqSJa{;D+a*gfaH3BXr^laYvS(A1^W&tpwo#WP7}!4oLM$h#Q_m0#3(Z3EdhCNUHYl>JIO?QVA6-L%z< z1w}kq@KETrpgnofvsApzkR)Cgb>Eng9FEdv88>*SMcR$9wat zA46ysF-sbrsRx^8=%O(Y4?9k$?H@o%!_?ZVqty;N0P&*ZgsqGQW|R8bhCewG^_&BB z1IFX5A0bJS#`1-^?DbNuRGgh2QL6P^r8dIDrBZ$|s}!muQXk}hhi4C-I*JXFa=Gb- zlC71pvn!QMDw9?lTaLHUFw9M?n=5|XbsaBQv8@Jf=~mk?8~JKEGc`WGy)th(nrhWm z538DG=FO&`bhLFejb;XshR|Dd77d_7jG|V-y65;#GmtJ;E=fynfNgvmw^pT`W4qWg zJ+%4r>F@f&r`JRCACJ-c(F~a%F1P?Jr7D261zeAS0onedtWQU8nDUdq?*#*K^-X}HK zuwnC9$a*G_mjZbMgs=QwAYTOXRUkhE@`odNTcxM-iktH(xD@vwju`7063BUhTo6b~ zAkzZL3uI9s%L35^VhdzjAa{X$V9N^EwJVT)AQl(%1W1`9&w-G;NDS_LMyH$jfPt{` z5yX&h2QjvX#{zi=gg@oaKsuK`j;b!Em1R-{42b?8qLCw%X+#)9U%4(JUEiSc4iR8+ zl=E$R?lSd5Qr?1vOA#UB7i94y4vUdV7Z_XD8E6(50Mh$8Ca-fMMn1^A4MPTe7ZmJy zj)(H*X2EXL>6BG3C>m7e+;$DyrkCQpH0NcgSIDU?c8jS}G-uoN5!I!v(hX6TYD=6~ zjXb)8G)3!4*Lu@6E}eK$y31w-Bf8Oy-0@CvcOp`kBQ?oXdCLxSL4~=X!dy^cE~qdU zR5$lZRAnksS0j~XTUUUTba#|=ILtM(Gi^|e&AZsi1)fDK5GSt&Y-5R2Yz4GK(KX*? sm`b*HWo$;NpzH99uaSQps^0RWjyX&9*JzPtsOGg@R&g1(f+od(0kM-|MF0Q* literal 0 HcmV?d00001 diff --git a/Inu/main_matlab/device_support/source/IQmathLib_matlab.c b/Inu/main_matlab/device_support/source/IQmathLib_matlab.c new file mode 100644 index 0000000..aac0c57 --- /dev/null +++ b/Inu/main_matlab/device_support/source/IQmathLib_matlab.c @@ -0,0 +1,237 @@ +#include "IQmathLib.h" +#include + + +// Преобразование числа с плавающей точкой в число с фиксированной точкой +#define float_to_fixed(A) (long)((A)*(1 << (GLOBAL_Q)) + (A > 0 ? 0.5: -0.5)) +// Преобразование числа с плавающей точкой в число с фиксированной точкой с выбором числа бит, отдаваемых под дробную часть +#define float_to_fixed_base_select(A, F_BITS) (long)((A)*(1 << (F_BITS)) + (A > 0 ? 0.5: -0.5)) +// Преобразование целого числа в число с фиксированной точкой +#define int_to_fixed(A) (long)((A) << (GLOBAL_Q)) +// Преобразование целого числа в число с фиксированной точкой с выбором числа бит, отдаваемых под дробную часть +#define int_to_fixed_base_select(A, F_BITS) (long)((A) << (F_BITS)) +//Преобразование числа с фиксированной точкой в число с плавающей точкой +#define fixed_to_float(A) ((double)A / (1 << GLOBAL_Q)) +//Перобразование числа с фиксированной точкой в целое число +#define fixed_to_int(A) ((int)(A >> GLOBAL_Q) ) + +long _IQmag(long a, long b) +{ + return _IQsqrt(_IQmpy(a, a) + _IQmpy(b, b)); +} + +long multiply(long x, long y) +{ + long long z = (long long)x * (long long)y; + return (long)(z >> GLOBAL_Q); +} +//служебная функция. Умножает числа с 27 битами, отданными под дробную часть +static inline long multiply_27(long x, long y) +{ + long long z = (long long)x * (long long)y; + return z & 0x4000000 ? (long)(z >> 27) + 1 : (long)(z >> 27); +} + +long long multiply_fixed_base_select(long long x, long long y, int base) +{ + long long z = (long long)x * (long long)y; + return z & (1 << base) ? (z >> base) + 1 : (z >> base); +} + +long divide(long num, long den) +{ + if (den == 0) + return 0; + long long numLong = (long long)num; + long long quotient = (numLong << GLOBAL_Q) / den; + return (long)quotient; +} + +long divide19(long num, long den) +{ + if (den == 0) + return 0; + long long numLong = (long long)num; + long long quotient = (numLong << 19) / den; + return (long)quotient; +} + +long divideN(long num, long den, unsigned int d) +{ + if (den == 0) + return 0; + long long numLong = (long long)num; + long long quotient = (numLong << d) / den; + return (long)quotient; +} +// +static inline long long divide_fixed_base_select(long long num, long long den, int base) +{ + if (den == 0) + return 0; + long long quotient = ((long long)num << base) / den; + return quotient; +} + +#define div_def(A,B) (long)(((long long)(A) << 24)/(B)) +#define div_mod(A,B) (A)%(B) +#define mult_def(A,B) (long)((((long long)(A))*((long long)(B))) >> 24) +#define abs_def(A) ((A) > 0 ? (A): -(A)) + +long sin_fixed(long x) +{ + //Константы сделал ститическими, что бы они вычислялись во время запуска программы, а не исполнения + static long FIXED_2PI = float_to_fixed(TWO_PI); + static long FIXED_PI = float_to_fixed(PI); + static long FIXED_PIna2 = float_to_fixed(PI_2); + //Здесть так же что бы не производить операции деления посчитал констаны ряда Тейлора + static long one_110 = float_to_fixed_base_select(1./110, 27); + static long one_72 = float_to_fixed_base_select(1./72, 27); + static long one_42 = float_to_fixed_base_select(1./42, 27); + static long one_20= float_to_fixed_base_select(1./20, 27); + static long one_6 = float_to_fixed_base_select(1./6, 27); + + long long xx, tmp ; + while(x >= FIXED_2PI) { x -= FIXED_2PI;} //Помещаю аргумент в диапазон 2 ПИ + while(x <= -FIXED_2PI) { x += FIXED_2PI;} + //Так как ряды быстрее сходнятся при малых значениях, помещаю значение аргумента + //в ближайшие к нулю области + if(x > FIXED_PI) + { + x -= FIXED_2PI; + } + else if(x < -FIXED_PI) + { + x += FIXED_2PI; + } + if(x < -FIXED_PIna2) + { + x = -FIXED_PI - x; + } + else if(x > FIXED_PIna2) + { + x = FIXED_PI - x; + } + //проверяю угол на значения, при которых синус раве 0 или 1 + if(x == 0) return 0; + if(x == FIXED_PIna2) return int_to_fixed(1); + if(x == -FIXED_PIna2) return int_to_fixed(-1); + //Перевожу в формат с максимальной точностью для возможного дипазано значений + x <<= (27 - GLOBAL_Q); + //Считаю ряд фурье + xx = multiply_27(x, x); + tmp = ONE_27 - multiply_27(one_110, xx); + tmp = multiply_27(xx, tmp); + tmp = ONE_27 - multiply_27(tmp, one_72); + tmp = multiply_27(xx, tmp); + tmp = ONE_27 - multiply_27(tmp, one_42); + tmp = multiply_27(xx, tmp); + tmp = ONE_27 - multiply_27(tmp, one_20); + tmp = multiply_27(xx, tmp); + tmp = ONE_27 - multiply_27(tmp, one_6); + tmp = multiply_27(x, tmp); + return tmp >> (27 - GLOBAL_Q); //Перед возвращением из функции преобразую в первоначальный формат +} + +long cos_fixed(long x) +{ + //Константы сделал ститическими, что бы они вычислялись во время запуска программы, а не исполнения + static long FIXED_2PI = float_to_fixed(TWO_PI); + static long FIXED_PI = float_to_fixed(PI); + static long FIXED_PIna2 = float_to_fixed(PI_2); + //Здесть так же что бы не производить операции деления посчитал констаны ряда Тейлора + static long one_132 = float_to_fixed_base_select(1./132, 27); + static long one_90 = float_to_fixed_base_select(1./90, 27); + static long one_56 = float_to_fixed_base_select(1./56, 27); + static long one_30 = float_to_fixed_base_select(1./30, 27); + static long one_12 = float_to_fixed_base_select(1./12, 27); + + long xx, tmp, counter = 0; + while(x >= FIXED_2PI) { x -= FIXED_2PI;} //Помещаю аргумент в диапазон 2 ПИ + while(x < 0) { x += FIXED_2PI;} + x = _IQabs(x); //Так как косинус симметричен относительно нуля, нахожу его модуль + //проверяю угол на значения, при которых синус раве 0 или 1 + if(x == 0) return 1 << GLOBAL_Q; + if(x == FIXED_PI) return -(1 << GLOBAL_Q); + if(x == (FIXED_PIna2) || (x == FIXED_3PIna2))return 0; + //Так как ряды быстрее сходнятся при малых значениях, помещаю значение аргумента + //в ближайшие к нулю области + while(x > FIXED_PIna2) + { + x -= FIXED_PIna2; + counter++; + } + + if(counter == 1 || counter == 3) { x = FIXED_PIna2 - x;} + //Перевожу в формат с максимальной точностью для возможного дипазона значений + x <<= (27 - GLOBAL_Q); + //Считаю ряд фурье + xx = multiply_27(x, x); + tmp = ONE_27 - multiply_27(xx, one_132); + tmp= multiply_27(xx, tmp); + tmp = ONE_27 - multiply_27(xx, one_90); + tmp= multiply_27(xx, tmp); + tmp = ONE_27 - multiply_27(tmp, one_56); + tmp = multiply_27(xx, tmp); + tmp = ONE_27 - multiply_27(tmp, one_30); + tmp = multiply_27(xx, tmp); + tmp = ONE_27 - multiply_27(tmp, one_12); + tmp = multiply_27(xx, tmp); + tmp = ONE_27 - (tmp >> 1); + tmp >>= (27 - GLOBAL_Q); + return (counter == 0) || (counter == 3) ? tmp : -tmp; +} + +long sqrt_fixed(long x) +{ + int variable_size_bits = sizeof(x) << 3; + long average_val, prev_avg_val; + if(x <= 0) return 0; + while(!(x & (1 << --variable_size_bits))); //Нахожу старший значащий бит + //Нахожу приближение корня сдвгом на половину числа бит между старшим значащим битом + //и положением точки + if(variable_size_bits > GLOBAL_Q) + { + average_val = x >> ((variable_size_bits - GLOBAL_Q) >> 1); + } + else + { + average_val = x << ((GLOBAL_Q - variable_size_bits) >> 1); + } + prev_avg_val = divide(x, average_val); //Нахожу 1/А + //В цикле нахожу среднее арифметическое между А и 1/А, пока число не перестанет меняться + while(_IQabs(prev_avg_val - average_val) > 1) + { + prev_avg_val = average_val; + average_val = (average_val + divide(x, average_val)) >> 1; + } + return average_val; +} + + +long exp_fixed(long x) +{ + // static long FIXED_2PI = float_to_fixed(TWO_PI); + float f = _IQtoF(x); + float r1 = exp(f); + if (r1>127) r1=127; + if (r1<-127) r1=-127; + long r2 = _IQ(r1); + + return r2; +} + + +long exp_fixedN(long x, unsigned int n) +{ + if (n==18) + { + float f = _IQ18toF(x); + float r1 = exp(f); + if (r1>8100) r1=8100; + if (r1<-8100) r1=-8100; + long r2 = _IQ(r1); + + return r2; + } +} \ No newline at end of file diff --git a/Inu/main_matlab/init28335.c b/Inu/main_matlab/init28335.c index 233007e..307a141 100644 --- a/Inu/main_matlab/init28335.c +++ b/Inu/main_matlab/init28335.c @@ -28,6 +28,31 @@ void init28335(void) { edrk.zadanie.iq_Izad = _IQ(1); edrk.disable_alg_u_disbalance = 1; edrk.zadanie.iq_limit_power_zad = _IQ(1); + + edrk.flag_enable_update_hmi = 1; + + + edrk.temper_limit_koeffs.sum_limit = _IQ(1); + simple_scalar1.fzad_add_max = _IQ(FZAD_ADD_MAX); + //edrk.Mode_ScalarVectorUFConst = ALG_MODE_SCALAR_POWER; + edrk.Mode_ScalarVectorUFConst = ALG_MODE_FOC_OBOROTS; + + edrk.zadanie.iq_power_zad = _IQ(1); + edrk.zadanie.iq_oborots_zad_hz = _IQ(1); + + edrk.MasterSlave = MODE_MASTER; + edrk.master_theta; + edrk.master_Iq; + edrk.iq_power_kw_another_bs = edrk.P_to_master; + edrk.tetta_to_slave; + edrk.Iq_to_slave; + edrk.P_to_master; + + uf_alg.winding_displacement_bs1; + + //edrk.zadanie.iq_set_break_level = _IQ(2500 / NORMA_ACP); + + control_station.setup_time_detect_active[CONTROL_STATION_TERMINAL_RS232] = 50; //analog_zero.iqU_1 = 2048; //analog_zero.iqU_2 = 2048; } //void init28335(void) diff --git a/Inu/main_matlab/param.c b/Inu/main_matlab/param.c index c594733..a8261b1 100644 --- a/Inu/main_matlab/param.c +++ b/Inu/main_matlab/param.c @@ -13,45 +13,61 @@ int CAN_timeout[UNIT_QUA]; RS_DATA_STRUCT rs_a = RS_DATA_STRUCT_DEFAULT, rs_b = RS_DATA_STRUCT_DEFAULT; // -void readInputParameters(const real_T *u) { +void readInputParameters(const real_T* u) { int nn = 0; - iq_norm_ADC[0][0] = _IQ(u[nn++]/NORMA_ACP); - iq_norm_ADC[0][1] = _IQ(u[nn++]/NORMA_ACP); - iq_norm_ADC[0][2] = _IQ(u[nn++]/NORMA_ACP); - iq_norm_ADC[0][3] = _IQ(u[nn++]/NORMA_ACP); - iq_norm_ADC[0][4] = _IQ(u[nn++]/NORMA_ACP); - iq_norm_ADC[0][5] = _IQ(u[nn++]/NORMA_ACP); - iq_norm_ADC[0][6] = _IQ(u[nn++]/NORMA_ACP); - iq_norm_ADC[0][7] = _IQ(u[nn++]/NORMA_ACP); + iq_norm_ADC[0][0] = _IQ(u[nn++] / NORMA_ACP); + iq_norm_ADC[0][1] = _IQ(u[nn++] / NORMA_ACP); + iq_norm_ADC[0][2] = _IQ(u[nn++] / NORMA_ACP); + iq_norm_ADC[0][3] = _IQ(u[nn++] / NORMA_ACP); + iq_norm_ADC[0][4] = _IQ(u[nn++] / NORMA_ACP); + iq_norm_ADC[0][5] = _IQ(u[nn++] / NORMA_ACP); + iq_norm_ADC[0][6] = _IQ(u[nn++] / NORMA_ACP); + iq_norm_ADC[0][7] = _IQ(u[nn++] / NORMA_ACP); - WRotor.iqWRotorSumFilter = _IQ(u[nn++] / PI2 / NORMA_FROTOR); + WRotor.iqWRotorCalcBeforeRegul1 = _IQ(u[nn++] / PI2 / NORMA_FROTOR); u[nn++]; edrk.Go = u[nn++]; u[nn++]; - edrk.Mode_ScalarVectorUFConst = ALG_MODE_SCALAR_OBOROTS; - - edrk.zadanie.iq_power_zad = _IQ(1); - edrk.zadanie.iq_oborots_zad_hz = _IQ(1); - - edrk.MasterSlave = MODE_MASTER; - edrk.master_theta; - edrk.master_Iq; - edrk.iq_power_kw_another_bs = edrk.P_to_master; - edrk.tetta_to_slave; - edrk.Iq_to_slave; - edrk.P_to_master; - - uf_alg.winding_displacement_bs1; } //void input_param(unsigned short num, unsigned short val) void writeOutputParameters(real_T* xD) { int nn = 0; + //xD[nn++] = t2sim.ciA; + //xD[nn++] = t1sim.ciA; + //xD[nn++] = t2sim.ciB; + //xD[nn++] = t1sim.ciB; + // + //xD[nn++] = t4sim.ciA; + //xD[nn++] = t3sim.ciA; + //xD[nn++] = t4sim.ciB; + //xD[nn++] = t3sim.ciB; + // + //xD[nn++] = t6sim.ciA; + //xD[nn++] = t5sim.ciA; + //xD[nn++] = t6sim.ciB; + //xD[nn++] = t5sim.ciB; + + //xD[nn++] = t1sim.ciB; + //xD[nn++] = t2sim.ciB; + //xD[nn++] = t1sim.ciA; + //xD[nn++] = t2sim.ciA; + + //xD[nn++] = t3sim.ciB; + //xD[nn++] = t4sim.ciB; + //xD[nn++] = t3sim.ciA; + //xD[nn++] = t4sim.ciA; + // + //xD[nn++] = t5sim.ciB; + //xD[nn++] = t6sim.ciB; + //xD[nn++] = t5sim.ciA; + //xD[nn++] = t6sim.ciA; + xD[nn++] = t1sim.ciA; xD[nn++] = t2sim.ciA; xD[nn++] = t1sim.ciB; @@ -66,7 +82,7 @@ void writeOutputParameters(real_T* xD) { xD[nn++] = t6sim.ciA; xD[nn++] = t5sim.ciB; xD[nn++] = t6sim.ciB; - + xD[nn++] = t7sim.ciA; xD[nn++] = t8sim.ciA; @@ -84,24 +100,19 @@ void writeOutputParameters(real_T* xD) { xD[nn++] = t12sim.ciB; // - //xD[nn++] = t1sim.ciA; - //xD[nn++] = t1sim.dtsim.ciA_DT; - //xD[nn++] = t1sim.cmpA; - //xD[nn++] = t1sim.tcnt; - //xD[nn++] = 0; - //xD[nn++] = 0; xD[nn++] = xpwm_time.Ta0_0; xD[nn++] = xpwm_time.Ta0_1; + xD[nn++] = xpwm_time.Ta1_0; + xD[nn++] = xpwm_time.Ta1_1; + xD[nn++] = xpwm_time.Tb0_0; xD[nn++] = xpwm_time.Tb0_1; + xD[nn++] = xpwm_time.Tb1_0; + xD[nn++] = xpwm_time.Tb1_1; + xD[nn++] = xpwm_time.Tc0_0; xD[nn++] = xpwm_time.Tc0_1; - - xD[nn++] = _IQtoF(edrk.Iq_to_slave); - xD[nn++] = _IQtoF(WRotor.iqWRotorSumFilter); - xD[nn++] = 0; - xD[nn++] = 0; - - xD[nn++] = _IQtoF(WRotor.iqWRotorSumFilter); + xD[nn++] = xpwm_time.Tc1_0; + xD[nn++] = xpwm_time.Tc1_1; } \ No newline at end of file diff --git a/Inu/main_matlab/pwm_sim.c b/Inu/main_matlab/pwm_sim.c index d836a55..d6ba1f1 100644 --- a/Inu/main_matlab/pwm_sim.c +++ b/Inu/main_matlab/pwm_sim.c @@ -15,18 +15,18 @@ TimerSimHandle t12sim; void Simulate_Timers(void) { - SimulateMainPWM(&t1sim, xpwm_time.Ta0_0); - SimulatePWM(&t2sim, xpwm_time.Ta0_1); - SimulatePWM(&t3sim, xpwm_time.Tb0_0); - SimulatePWM(&t4sim, xpwm_time.Tb0_1); - SimulatePWM(&t5sim, xpwm_time.Tc0_0); - SimulatePWM(&t6sim, xpwm_time.Tc0_1); - SimulatePWM(&t7sim, xpwm_time.Ta1_0); - SimulatePWM(&t8sim, xpwm_time.Ta1_1); - SimulatePWM(&t9sim, xpwm_time.Tb1_0); - SimulatePWM(&t10sim, xpwm_time.Tb1_1); - SimulatePWM(&t11sim, xpwm_time.Tc1_0); - SimulatePWM(&t12sim, xpwm_time.Tc1_1); + SimulateMainPWM(&t1sim, xpwm_time.Ta0_1); + SimulateSimplePWM(&t2sim, xpwm_time.Ta0_0); + SimulateSimplePWM(&t3sim, xpwm_time.Tb0_1); + SimulateSimplePWM(&t4sim, xpwm_time.Tb0_0); + SimulateSimplePWM(&t5sim, xpwm_time.Tc0_1); + SimulateSimplePWM(&t6sim, xpwm_time.Tc0_0); + SimulateSimplePWM(&t7sim, xpwm_time.Ta1_1); + SimulateSimplePWM(&t8sim, xpwm_time.Ta1_0); + SimulateSimplePWM(&t9sim, xpwm_time.Tb1_1); + SimulateSimplePWM(&t10sim, xpwm_time.Tb1_0); + SimulateSimplePWM(&t11sim, xpwm_time.Tc1_1); + SimulateSimplePWM(&t12sim, xpwm_time.Tc1_0); } void Init_Timers(void) @@ -52,37 +52,45 @@ void initSimulateTim(TimerSimHandle* tsim, int period, double step) { tsim->dtsim.stateDt = 1; tsim->TPr = period; - tsim->TxCntPlus = step; + tsim->TxCntPlus = step * 2; tsim->dtsim.DtCntPeriod = (int)(DT / hmcu.SimSampleTime); } -double tickprev; + void SimulateMainPWM(TimerSimHandle* tsim, int compare) { - if (simulateTimAndGetCompare(tsim, compare)) - { - mcu_simulate_step(); - tickprev = hmcu.SimTime; - } - - simulateActionActionQualifierSubmodule(tsim); - simulateDeadBendSubmodule(tsim); - simulateTripZoneSubmodule(tsim); -} - -void SimulatePWM(TimerSimHandle* tsim, int compare) -{ - simulateTimAndGetCompare(tsim, compare); - simulateActionActionQualifierSubmodule(tsim); - simulateDeadBendSubmodule(tsim); - simulateTripZoneSubmodule(tsim); -} - - -int simulateTimAndGetCompare(TimerSimHandle *tsim, int compare) -{ - int interruptflag = 0; +#ifdef UNITED_COUNTER tsim->tcntAuxPrev = tsim->tcntAux; tsim->tcntAux += tsim->TxCntPlus; +#endif + if (simulateTimAndGetCompare(tsim, compare)) + mcu_simulate_step(); + simulateActionActionQualifierSubmodule(tsim); + simulateDeadBendSubmodule(tsim); + simulateTripZoneSubmodule(tsim); +} + +void SimulateSimplePWM(TimerSimHandle* tsim, int compare) +{ + simulateTimAndGetCompare(tsim, compare, 0); + simulateActionActionQualifierSubmodule(tsim); + //tsim->ciA = tsim->dtsim.ciA_DT; + //tsim->ciB = tsim->dtsim.ciB_DT; + simulateDeadBendSubmodule(tsim); + simulateTripZoneSubmodule(tsim); +} + + +int simulateTimAndGetCompare(TimerSimHandle* tsim, int compare) +{ + int interruptflag = 0; + +#ifdef UNITED_COUNTER + tsim->tcntAuxPrev = t1sim.tcntAuxPrev; + tsim->tcntAux = t1sim.tcntAux; +#else + tsim->tcntAuxPrev = tsim->tcntAux; + tsim->tcntAux += tsim->TxCntPlus; +#endif if (tsim->tcntAux > tsim->TPr) { tsim->tcntAux -= tsim->TPr * 2.; @@ -101,7 +109,7 @@ int simulateTimAndGetCompare(TimerSimHandle *tsim, int compare) void simulateActionActionQualifierSubmodule(TimerSimHandle* tsim) { - // Action-Qualifier Submodule + // <20><> Action-Qualifier Submodule if (tsim->cmpA > tsim->tcnt) { tsim->dtsim.ciA_DT = 0; tsim->dtsim.ciB_DT = 1; @@ -114,11 +122,7 @@ void simulateActionActionQualifierSubmodule(TimerSimHandle* tsim) void simulateDeadBendSubmodule(TimerSimHandle* tsim) { - tsim->ciA = tsim->dtsim.ciA_DT; - tsim->ciB = tsim->dtsim.ciB_DT; - return; - - // Dead-Band Submodule + // <20><> Dead-Band Submodule if (tsim->dtsim.stateDt == 1) { tsim->ciA = tsim->dtsim.ciA_DT; tsim->ciB = 0; @@ -143,7 +147,7 @@ void simulateDeadBendSubmodule(TimerSimHandle* tsim) void simulateTripZoneSubmodule(TimerSimHandle* tsim) { - //// Trip-Zone Submodule + //// <20><> Trip-Zone Submodule // // ... clear flag for one-shot trip latch //if (EPwm1Regs.TZCLR.all == 0x0004) { // EPwm1Regs.TZCLR.all = 0x0000; diff --git a/Inu/main_matlab/pwm_sim.h b/Inu/main_matlab/pwm_sim.h index 7a611b1..7e3d406 100644 --- a/Inu/main_matlab/pwm_sim.h +++ b/Inu/main_matlab/pwm_sim.h @@ -1,10 +1,12 @@ -#include "mcu_wrapper_conf.h" +#include "mcu_wrapper_conf.h" #ifndef PWM_SIM #define PWM_SIM -// Event Manager +#define UNITED_COUNTER + +// Для моделирования Event Manager // ... Dead-Band Submodule typedef struct { @@ -14,7 +16,7 @@ typedef struct int ciA_DT; int ciB_DT; }DeadBandSimHandle; -// ... Time-Base Submodule, Counter-Compare Submodule Event-Trigger Submodule +// ... Time-Base Submodule, Counter-Compare Submodule и Event-Trigger Submodule typedef struct { @@ -44,14 +46,13 @@ extern TimerSimHandle t11sim; extern TimerSimHandle t12sim; - void Simulate_Timers(void); void Init_Timers(void); void initSimulateTim(TimerSimHandle* tsim, int period, double step); void SimulateMainPWM(TimerSimHandle* tsim, int compare); -void SimulatePWM(TimerSimHandle* tsim, int compare); +void SimulateSimplePWM(TimerSimHandle* tsim, int compare); int simulateTimAndGetCompare(TimerSimHandle* tsim, int compare); void simulateActionActionQualifierSubmodule(TimerSimHandle* tsim); void simulateDeadBendSubmodule(TimerSimHandle* tsim); diff --git a/Inu/mcu_app_includes.h b/Inu/mcu_app_includes.h index 9885e4b..0834ec4 100644 --- a/Inu/mcu_app_includes.h +++ b/Inu/mcu_app_includes.h @@ -32,6 +32,9 @@ #include "RS_Functions.h" #include "master_slave.h" #include "xp_write_xpwm_time.h" +#include "global_time.h" +#include "PWMTools.h" +#include "alg_simple_scalar.h" #include #include diff --git a/Inu/mcu_wrapper_conf.h b/Inu/mcu_wrapper_conf.h index e3334c0..bfbce76 100644 --- a/Inu/mcu_wrapper_conf.h +++ b/Inu/mcu_wrapper_conf.h @@ -54,7 +54,7 @@ #define NPARAMS 1 ///< number of input parametrs (only Ts) #define IN_PORT_WIDTH 20 ///< width of input ports #define IN_PORT_NUMB 1 ///< number of input ports -#define OUT_PORT_WIDTH 49 ///< width of output ports +#define OUT_PORT_WIDTH 51 ///< width of output ports #define OUT_PORT_NUMB 1 ///< number of output ports #define DISC_STATES_WIDTH OUT_PORT_WIDTH*OUT_PORT_NUMB ///< width of discrete states array diff --git a/inu_23550.slx b/inu_23550.slx new file mode 100644 index 0000000000000000000000000000000000000000..17a642446cbd711b64c6f4dd5682a1fb45e36601 GIT binary patch literal 86468 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 R&$Kr%^%i&&uva+-{slph1ULWy literal 0 HcmV?d00001 diff --git a/inu_im_2wnd_3lvl.slx b/inu_im_2wnd_3lvl.slx deleted file mode 100644 index b7f8fa53d964be36760aa147922f8aabbc81b203..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 86890 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 diff --git a/run_mex.bat b/run_mex.bat index cfc449b..f60a657 100644 --- a/run_mex.bat +++ b/run_mex.bat @@ -4,7 +4,7 @@ set defines=-D"ML" -D"__IQMATHLIB_H_INCLUDED__" -D"_MATLAB_SIMULATOR"^ -D"_MATLAB_FAST_SIMULATOR" -D"PROJECT_SHIP=1" :: -------------------------USERS PATHS AND CODE--------------------------- -set includes_USER=-I"..\device_support_ml\include"^ +set includes_USER=-I".\Inu\main_matlab\device_support\include"^ -I".\"^ -I".\Inu"^ -I".\Inu\tms_matlab\"^ @@ -15,7 +15,8 @@ set includes_USER=-I"..\device_support_ml\include"^ -I".\Inu\Src\N12_Xilinx" :: исходный код -set params_main_c=.\Inu\Src\main\adc_tools.c^ +set params_main_c=^ + .\Inu\Src\main\adc_tools.c^ .\Inu\Src\main\v_pwm24_v2.c^ .\Inu\Src\main\limit_power.c^ .\Inu\Src\main\limit_lib.c^ @@ -48,9 +49,9 @@ set params_libs_c=.\Inu\Src\N12_Libs\mathlib.c^ .\Inu\Src\N12_Xilinx\xp_write_xpwm_time.c -set params_device_support=..\device_support_ml\source\C28x_FPU_FastRTS.obj^ - ..\device_support_ml\source\DSP2833x_GlobalVariableDefs.obj^ - ..\device_support_ml\source\IQmathLib_matlab.c +set params_device_support=.\Inu\main_matlab\device_support\source\C28x_FPU_FastRTS.obj^ + .\Inu\main_matlab\device_support\source\DSP281x_GlobalVariableDefs.c^ + .\Inu\main_matlab\device_support\source\IQmathLib_matlab.c set code_USER=%params_main_c% %params_vectorcontorl_c% %params_libs_c% %params_device_support%