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

📄 events.h

📁 基于56F8346的异步电机VVVF控制程序。
💻 H
字号:
/** ###################################################################
**     Filename  : Events.H
**     Project   : vvvf_56F8346
**     Processor : 56F8346
**     Beantype  : Events
**     Version   : Driver 01.01
**     Compiler  : Metrowerks DSP C Compiler
**     Date/Time : 2008-2-3, 下午 02:57
**     Abstract  :
**         This is user's event module.
**         Put your event handler code here.
**     Settings  :
**     Contents  :
**         No public methods
**
**     (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 __Events_H
#define __Events_H
/* MODULE Events */

#include "PE_Types.h"
#include "PE_Error.h"
#include "PE_Const.h"
#include "IO_Map.h"
#include "Bit_Relay.h"
#include "Bits_Drivemosfet.h"
#include "PWMC1.h"
#include "TI1.h"
#include "MC1.h"
#include "MC2.h"
#include "TFR1.h"
#include "MFR1.h"
#include "MEM1.h"

void TI1_OnInterrupt(void);
/*
** ===================================================================
**     Event       :  TI1_OnInterrupt (module Events)
**
**     From bean   :  TI1 [TimerInt]
**     Description :
**         When a timer interrupt occurs this event is called (only
**         when the bean is enabled - "Enable" and the events are
**         enabled - "EnableEvent").
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/


void PWMC1_OnReload(void);
/*
** ===================================================================
**     Event       :  PWMC1_OnReload (module Events)
**
**     From bean   :  PWMC1 [PWMMC]
**     Description :
**         This event is called before PWM cycle according to reload
**         frequency. (only when the bean is enabled - <Enable> and
**         the events are enabled - <EnableEvent>) (event is
**         available only if interrupt service/event is enabled).
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/

void PWMC1_OnFault0(void);
/*
** ===================================================================
**     Event       :  PWMC1_OnFault0 (module Events)
**
**     From bean   :  PWMC1 [PWMMC]
**     Description :
**         This event is called when fault 0 occurs. (only when the
**         bean is enabled - <Enable> and the events are enabled -
**         <EnableEvent>). (event is available only if interrupt
**         service/event is enabled). The event clears Fault flag
**         only when the Fault is set to manual clearing mode. When
**         the Fault is set to the automatic clearing mode, the
**         Fault flag must be cleared by the user using
**         ClearFaultFlag() method.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/

void PWMC1_OnFault1(void);
/*
** ===================================================================
**     Event       :  PWMC1_OnFault1 (module Events)
**
**     From bean   :  PWMC1 [PWMMC]
**     Description :
**         This event is called when fault 1 occurs. (only when the
**         bean is enabled - <Enable> and the events are enabled -
**         <EnableEvent>). (event is available only if interrupt
**         service/event is enabled). The event clears Fault flag
**         only when the Fault is set to manual clearing mode. When
**         the Fault is set to the automatic clearing mode, the
**         Fault flag must be cleared by the user using
**         ClearFaultFlag() method.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/

void PWMC1_OnFault2(void);
/*
** ===================================================================
**     Event       :  PWMC1_OnFault2 (module Events)
**
**     From bean   :  PWMC1 [PWMMC]
**     Description :
**         This event is called when fault 2 occurs. (only when the
**         bean is enabled - <Enable> and the events are enabled -
**         <EnableEvent>). (event is available only if interrupt
**         service/event is enabled). The event clears Fault flag
**         only when the Fault is set to manual clearing mode. When
**         the Fault is set to the automatic clearing mode, the
**         Fault flag must be cleared by the user using
**         ClearFaultFlag() method.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/

void PWMC1_OnFault3(void);
/*
** ===================================================================
**     Event       :  PWMC1_OnFault3 (module Events)
**
**     From bean   :  PWMC1 [PWMMC]
**     Description :
**         This event is called when fault 3 occurs. (only when the
**         bean is enabled - <Enable> and the events are enabled -
**         <EnableEvent>). (event is available only if interrupt
**         service/event is enabled). The event clears Fault flag
**         only when the Fault is set to manual clearing mode. When
**         the Fault is set to the automatic clearing mode, the
**         Fault flag must be cleared by the user using
**         ClearFaultFlag() method.
**     Parameters  : None
**     Returns     : Nothing
** ===================================================================
*/

/* END Events */
#endif /* __Events_H*/

/*
** ###################################################################
**
**     This file was created by UNIS Processor Expert 03.47 for 
**     the Motorola 56800 series of microcontrollers.
**
** ###################################################################
*/

⌨️ 快捷键说明

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