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

📄 epower_28x_init.h

📁 在TI的TMSF2812平台上
💻 H
字号:
//###########################################################################
//
// FILE:   Epower_28x_Init.h
//
// TITLE:  Function Init Definitions.
//
//###########################################################################
//
//  Ver | dd mmm yyyy | Who  | Description of changes
// =====|=============|======|===============================================
//  1.00| 20 Sep 2005 | X.KP | Define the function initialization and some 
//      |             |      | function the main.c used.
//###########################################################################

#ifndef _Epower_28x_Init
#define _Epower_28x_Init

// Define the level of the FIFO 1-16
#define FIFO_LEVEL 6
#define SEND_WORD 8
// Choose a word size.  Uncomment one of the following lines
#define WORD_SIZE 16

/* define the SE pin Up/Dowm */
#define SE_1 (GpioDataRegs.GPADAT.bit.GPIOA1 = 1)
#define SE_0 (GpioDataRegs.GPADAT.bit.GPIOA1 = 0)

/* define the RESET pin Up/Dowm */
#define RESET_1 (GpioDataRegs.GPADAT.bit.GPIOA0 = 1)
#define RESET_0 (GpioDataRegs.GPADAT.bit.GPIOA0 = 0)

void InitCompute(void);
void delay_loop(void);
void InitMcbspNodlb(void);
void InitMcbsp16bit(void);
void InitMcbspFifo(void);
void InitCpuTimers(void);
void InitEvb(void);
void InitAdc73360(void);
void McbspXmit(Uint16 a, Uint16 b);
void ConfigSE(void);
void ConfigMCLK(void);
void ConfigReset(void);
void ConfigCAPB(void);
void InitCAPB(void);

interrupt void McbspRxFifoIsr(void);
interrupt void CpuTimer0Isr(void);

#endif      /* #ifndef _Epower_28x_Init */


⌨️ 快捷键说明

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