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

📄 adc_a.h

📁 菲斯卡尔无传感器无刷控制方案。具体说明文档和程序都在压缩包内。
💻 H
字号:
/** ###################################################################
**     THIS BEAN MODULE IS GENERATED BY THE TOOL. DO NOT MODIFY IT.
**     Filename  : ADC_A.H
**     Project   : bldc_zc_8013
**     Processor : 56F8013VFAE
**     Beantype  : Init_ADC
**     Version   : Bean 01.196, Driver 01.13, CPU db: 2.87.068
**     Compiler  : Metrowerks DSP C Compiler
**     Date/Time : 23.5.2005, 11:21
**     Abstract  :
**         This "Init_ADC" Peripheral Inspector implements the
**         Analog-to-Digital converter module (ADC), basic 
**         initialization and settings.
**     Settings  :
**         A/D converter device        : ADC
**
**         A/D setting
**             Mode                    : Triggered Parallel
**             Trigger                 : SYNC input or START bit
**
**         Clock setting
**             Divisor                 : 8
**             A/D frequency           : 2 MHz
**
**         Interrupts
**             End of scan 0 interrupt : Enabled
**             ISR name                : IsrADCEndOfScan
**             Interrupt name          : INT_ADCA_Complete
**             Priority                : 2
**
**             End of scan 1 interrupt : Disabled
**
**             Zero crossing interrupt : Enabled
**             High limit interrupt    : Enabled
**             Low limit interrupt     : Enabled
**             ISR name                : IsrADCLimit
**             Interrupt name          : INT_ADC_ZC_LE
**             Priority                : 1
**
**     Contents  :
**         Init - void ADC_A_Init(void);
**
**     (c) Copyright UNIS, spol. s r.o. 1997-2004
**     UNIS, spol. s r.o.
**     Jundrovska 33
**     624 00 Brno
**     Czech Republic
**     http      : www.processorexpert.com
**     mail      : info@processorexpert.com
** ###################################################################*/

#ifndef __ADC_A
#define __ADC_A

/* MODULE ADC_A. */

#include "Cpu.ch"
/*Include shared modules, which are used for whole project*/
#include "PE_Types.h"
#include "PE_Error.h"
#include "PE_Const.h"
#include "IO_Map.h"
/* Include inherited beans */
#include "Cpu.h"

extern void IsrADCEndOfScan(void);
extern void IsrADCLimit(void);

void ADC_A_Init(void);
/*
** ===================================================================
**     Method      :  ADC_A_Init (bean Init_ADC)
**
**     Description :
**         This method initializes registers of the ADC module
**         according to this Peripheral Initialization Bean settings.
**         Call this method in the user code to initialize the
**         module. By default, the method is called by PE
**         automatically; see "Call Init method" property of the
**         bean for more details.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/

/* END ADC_A. */

#endif /* ifndef __ADC_A */
/*
** ###################################################################
**
**     This file was created by UNIS Processor Expert 2.96 [03.65]
**     for the Freescale 56800 series of microcontrollers.
**
** ###################################################################
*/

⌨️ 快捷键说明

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