37 lines
1.2 KiB
C
37 lines
1.2 KiB
C
/*
|
||
* emergerncy.c
|
||
*
|
||
* Created on: 2020-9-4
|
||
* Author: 11950
|
||
*/
|
||
|
||
#include "..\..\h\predefine.h"
|
||
#include "type.h"
|
||
#include "code.h"
|
||
#ifdef _emergency_c_
|
||
#include ".\inc\emergency.h"
|
||
|
||
DateType SetModiDate; //定值修改时间,8字节
|
||
unsigned int CanShuCheckSum;
|
||
unsigned int SetCheckSum; //校验码,4字节
|
||
|
||
unsigned int SetNumber; //定值区号,4字节
|
||
unsigned int SetValueMode; //整定方式,4字节
|
||
unsigned int DisplayMode; //模拟量显示方式,4字节
|
||
|
||
//YaoXinObjectType YaoXinSet[MAX_YXSET_NUM]; //遥信对象设置表,60*12=720字节
|
||
breaker_err_type GE_Breaker_err_param; //断路器失灵参数
|
||
unsigned int BlockFunctionsDelay; //功能组保护闭锁(写定值后闭锁功能组保护200ms)
|
||
unsigned int Power_IP;
|
||
float U50VSet; //50V电压定值
|
||
unsigned int functionalGroupsBS[10]; //功能组保护闭锁(0,保护退出,1保护投入,保护投入时功能组遥信变位才有效)
|
||
DataType GE_PRTC_U1AB; //U1AB
|
||
DataType GE_PRTC_U1BC; //U1AB
|
||
DataType GE_PRTC_U1CA; //U1AB
|
||
DataType GE_PRTC_U2AB; //U1AB
|
||
DataType GE_PRTC_U2BC; //U1AB
|
||
DataType GE_PRTC_U2CA; //U1AB
|
||
// float angle_adjust_val_curr; //电流角度修正值
|
||
float GE_curr_U; //当前电压值
|
||
#endif
|