Aula 88

Download as pdf or txt
Download as pdf or txt
You are on page 1of 52

Project Documentation

File: Aula88.project

Date: 5/9/2018

Profile: MasterTool IEC XE


Índice

Índice
1 Dispositivo: Device 3
1.1 Plc Logic: Plc Logic 3
1.1.1 Aplicação: Application 3
2 Informações do Projeto: Project Information 51
3 : Project Settings 51

Aula88.project
Page 2 of 52
5/9/2018 12:07 AM
1 Dispositivo: Device

1 Dispositivo: Device
Usuários e Grupos

Usuários:

Grupos:

Direitos de Acesso

Visualizar
Modificar
Executar
Acrescentar/remover secundários.

Informação

Nome: NX3010
Fornecedor: Altus S.A.
Grupos: CPs
Tipo: 4096
ID: 1026 A010
Versão: 1.2.1.160
Código de produto: NX3010
Descrição: CPU, 1 Eth., 2 Serial, Memory Card and Rack Expansion

1.1 Plc Logic: Plc Logic

1.1.1 Aplicação: Application

1.1.1.1 Bill of Materials: Bill of Materials


Dispositivo Descrição do Produto Quantidade
NX1001 24 Vdc 16 DI Module 1
NX2001 24 Vdc 16 DO Transistor Module 1
NX3010 CPU, 1 Eth., 2 Serial, Memory Card and Rack Expansion 1
NX6000 8 AI Voltage/Current Module 16 Bits 1
NX6100 4 AO Voltage/Current Module 16 Bits 1
NX8000 30 W 24 Vdc Power Supply Module 1
NX9001 12-Slot Backplane Rack 1
NX9100 Par de Fechamentos Laterais para Bastidor 1

Aula88.project
Page 3 of 52
5/9/2018 12:07 AM
1.1.1.1 Bill of Materials: Bill of Materials

Dispositivo Descrição do Produto Quantidade


NX9102 Backplane Connector Cover 4

1.1.1.2 Configuration and Consumption: Configuration and Consumption


Rack 0
Slot Dispositivo Nome Descrição do Produto Consumo
NX9001 NX9001 12-Slot Backplane Rack -85 mA
00 NX8000 NX8000 30 W 24 Vdc Power Supply Module +6000 mA
02 NX3010 NX3010 CPU, 1 Eth., 2 Serial, Memory Card and Rack Expansion -800 mA
04 NX1001 NX1001 24 Vdc 16 DI Module -160 mA
05 NX2001 NX2001 24 Vdc 16 DO Transistor Module -140 mA
06 NX6000 NX6000 8 AI Voltage/Current Module 16 Bits -270 mA
07 NX6100 NX6100 4 AO Voltage/Current Module 16 Bits -130 mA
Corrente total +4415 mA

1.1.1.3 Diagnostic Explorer: Diagnostic Explorer

1.1.1.4 Pasta: SystemGVLs

1.1.1.4.1 Lista de Variáveis Globais: IOQualities


1 VAR_GLOBAL
2 QUALITY_NX1001 : ARRAY [ 0 .. 15 ] OF LibDataTypes . QUALITY ;
3 QUALITY_NX2001 : ARRAY [ 0 .. 15 ] OF LibDataTypes . QUALITY ;
4 QUALITY_NX6000 : ARRAY [ 0 .. 7] OF LibDataTypes . QUALITY ;
5 QUALITY_NX6100 : ARRAY [ 0 .. 3] OF LibDataTypes . QUALITY ;
6 END_VAR
7

1.1.1.4.2 Lista de Variáveis Globais: Module_Diagnostics


1 VAR_GLOBAL
2 //DG_NX1001 diagnostics variable
3 DG_NX1001 AT %QB21596 : T_DIAG_NX1001_1 ;
4 //DG_NX2001 diagnostics variable
5 DG_NX2001 AT %QB21598 : T_DIAG_NX2001_1 ;
6 //DG_NX6000 diagnostics variable
7 DG_NX6000 AT %QB21602 : T_DIAG_NX6000_1 ;
8 //DG_NX6100 diagnostics variable
9 DG_NX6100 AT %QB21620 : T_DIAG_NX6100_1 ;
10 END_VAR
11

Aula88.project
Page 4 of 52
5/9/2018 12:07 AM
1.1.1.4.3 Lista de Variáveis Globais: System_Diagnostics

1.1.1.4.3 Lista de Variáveis Globais: System_Diagnostics


1 VAR_GLOBAL
2 //DG_NX3010 diagnostics variable
3 DG_NX3010 AT %QB21038 : T_DIAG_NX3010_1 ;
4 END_VAR
5

1.1.1.5 Pasta: SystemPOUs

1.1.1.5.1 POU: MainPrg


1 (*Main POU associated with MainTask that calls StartPrg, UserPrg/ActivePrg
and NonSkippedPrg. This POU is blocked to edit.*)
2 PROGRAM MainPrg
3 VAR
4 isFirstCycle : BOOL := TRUE ;
5 END_VAR
6

1 IF isFirstCycle THEN
2 StartPrg ( ) ;
3 isFirstCycle := FALSE ;
4 ELSE
5 UserPrg ( ) ;
6 END_IF ;
7

1.1.1.6 Pasta: UserGVLs

1.1.1.6.1 Lista de Variáveis Globais: Disables


1 VAR_GLOBAL
2 END_VAR
3

1.1.1.6.2 Lista de Variáveis Globais: Qualities


1 VAR_GLOBAL
2 END_VAR
3

Aula88.project
Page 5 of 52
5/9/2018 12:07 AM
1.1.1.6.3 Lista de Variáveis Globais: ReqDiagnostics

1.1.1.6.3 Lista de Variáveis Globais: ReqDiagnostics


1 VAR_GLOBAL
2 END_VAR
3

1.1.1.7 Pasta: UserPOUs

1.1.1.7.1 POU: SOMA


1 FUNCTION_BLOCK SOMA
2 VAR_INPUT
3 // SINAL P/ HABILITAR INCREMENTO DO CONTADOR
4 CONTA : BOOL ;
5 END_VAR
6 VAR_OUTPUT
7 // SINALIZAÇÃO QUANDO CONTADOR FOR 5 OU MAIOR
8 SAIDA : BOOL ;
9 END_VAR
10 VAR
11 END_VAR
12

1 IF CONTA > 0 THEN


2 OUTAN0 := OUTAN0 + 300 ;
3 END_IF
4
5 IF OUTAN0 >= 1800 THEN
6 SAIDA := 1 ;
7 END_IF
8
9 IF RESET > 0 THEN
10 OUTAN0 := 300 ;
11 SAIDA := 0 ;
12 END_IF
13

1.1.1.7.2 POU: StartPrg


1 (*The code inserted by the user into this POU is executed once after
startup. Before this fist cycle it is not executed again. In case of
redundant system, this one is executed in both CPUs during the startup.*)
2 PROGRAM StartPrg
3 VAR
4 END_VAR
5

Aula88.project
Page 6 of 52
5/9/2018 12:07 AM
1.1.1.7.3 POU: UserPrg

1.1.1.7.3 POU: UserPrg


1 (*The main code inserted by the user and executed associated with the
MainTask must be inserted into this POU.*)
2 PROGRAM UserPrg
3 VAR
4 TRIGUP : R_TRIG ;
5 // PULSO P/ INCREMENTAR CONTADOR
6 PULSO2 : BOOL ;
7 SOMAFB : SOMA ;
8 END_VAR
9

1 SOMAFB
LIGA SOMA
EN ENO
PULSO2 CONTA SAIDA LED0

2 TRIGUP
LIGA PULSO R_TRIG PULSO2
CLK Q

Aula88.project
Page 7 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

1.1.1.8 Library Manager: Library Manager


IoStandard, 3.5.8.0 (System)
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#NextoStandard
#SysTypes
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#IoDrvNextoBus
#CmpLog
SysTypes2 Interfaces, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#CmpSchedule
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc

Aula88.project
Page 8 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

SysTypes2 Interfaces, * (System)


SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysPort
SysTypes2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpBinTagUtilIec
SysTypes2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
#Rts Service Handler
#CAA Types
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSettings
SysTypes2 Interfaces, * (System)
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)

Aula88.project
Page 9 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#SysTarget
#CmpSysEthernet
#Component Manager
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysSem
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#Standard
#NextoStandard
(recursive reference)
IBase, * (System)
IIoDrvParameter, * (System)
IIoDrv, * (System)
SysTypes, * (System)
#LibDataTypes
#LibRtuStandard
#IoDrvNextoBus
(recursive reference)
SysTypes, * (System)
IBase, * (System)
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibDataTypes
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)

Aula88.project
Page 10 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

CmpErrors2 Interfaces, * (System)


#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#RedundancyBase
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#CmpErrors
#SysTypes
IBase, * (System)
#IoDrvNX5001
IIoDrvParameter, * (System)
IBase, * (System)
IIoDrv, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
#NextoStandard
(recursive reference)
SysTypes, * (System)
CmpErrors, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore

Aula88.project
Page 11 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTarget
#CmpLog
SysTypes2 Interfaces, * (System)
#Standard
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#NextoProfibusDecodSlvDiagALTUS
#NextoProfibusDecodSlvDiagNexto
SysMem, * (System)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibLogs
SysTypes, * (System)
CmpLog, * (System)
Standard, * (System)
#IoDrvNextoBus
(recursive reference)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
CmpLog, * (System)
#LibDataTypes
CmpApp, 3.5.6.0 (System)
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
CmpEventMgr, 3.5.5.0 (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
CmpErrors, 3.3.1.40 (System)

Aula88.project
Page 12 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

IBase, 3.1.3.0 (System)


#IoDrvNextoBus
#CmpLog
SysTypes2 Interfaces, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#CmpSchedule
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysPort
SysTypes2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpBinTagUtilIec
SysTypes2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
#Rts Service Handler

Aula88.project
Page 13 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSettings
SysTypes2 Interfaces, * (System)
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTarget
#CmpSysEthernet
#Component Manager
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysSem
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#Standard
#NextoStandard
#SysTypes
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr

Aula88.project
Page 14 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

CmpErrors2 Interfaces, * (System)


SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
CmpLog, * (System)
IBase, * (System)
IIoDrvParameter, * (System)
IIoDrv, * (System)
SysTypes, * (System)
#LibDataTypes
#LibRtuStandard
#IoDrvNextoBus
(recursive reference)
SysTypes, * (System)
IBase, * (System)
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibDataTypes
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)

Aula88.project
Page 15 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#RedundancyBase
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#CmpErrors
#SysTypes
IBase, * (System)
#IoDrvNX5001
IIoDrvParameter, * (System)
IBase, * (System)
IIoDrv, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
#NextoStandard
#SysTypes
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)

Aula88.project
Page 16 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#IoDrvNextoBus
(recursive reference)
CmpLog, * (System)
SysTypes, * (System)
CmpErrors, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTarget
#CmpLog
SysTypes2 Interfaces, * (System)
#Standard
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#NextoProfibusDecodSlvDiagALTUS
#NextoProfibusDecodSlvDiagNexto
SysMem, * (System)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibLogs
SysTypes, * (System)
CmpLog, * (System)

Aula88.project
Page 17 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#IoDrvNextoBus
(recursive reference)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
NX3010 Diagnostic Structs, * (WAA)
#NextoStandard
#SysTypes
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#IoDrvNextoBus
#CmpLog
SysTypes2 Interfaces, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#CmpSchedule
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)

Aula88.project
Page 18 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysPort
SysTypes2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpBinTagUtilIec
SysTypes2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
#Rts Service Handler
#CAA Types
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSettings
SysTypes2 Interfaces, * (System)
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)

Aula88.project
Page 19 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

SysTypes2 Interfaces, * (System)


#SysTarget
#CmpSysEthernet
#Component Manager
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysSem
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#Standard
#NextoStandard
(recursive reference)
IBase, * (System)
IIoDrvParameter, * (System)
IIoDrv, * (System)
SysTypes, * (System)
#LibDataTypes
#LibRtuStandard
#IoDrvNextoBus
(recursive reference)
SysTypes, * (System)
IBase, * (System)
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibDataTypes
#LibDatabaseManager
#IoStandard

Aula88.project
Page 20 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

SysTypes2 Interfaces, * (System)


CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#RedundancyBase
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#CmpErrors
#SysTypes
IBase, * (System)
#IoDrvNX5001
IIoDrvParameter, * (System)
IBase, * (System)
IIoDrv, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
#NextoStandard
(recursive reference)
SysTypes, * (System)
CmpErrors, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime

Aula88.project
Page 21 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

SysTypes2 Interfaces, * (System)


#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTarget
#CmpLog
SysTypes2 Interfaces, * (System)
#Standard
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#NextoProfibusDecodSlvDiagALTUS
#NextoProfibusDecodSlvDiagNexto
SysMem, * (System)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibLogs
SysTypes, * (System)
CmpLog, * (System)
Standard, * (System)
#IoDrvNextoBus
(recursive reference)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
CmpLog, * (System)
NX5001 Diagnostic Structs, * (WAA)
NX1001 Diagnostic Structs, * (WAA)
NX1005 Diagnostic Structs, * (WAA)
NX2001 Diagnostic Structs, * (WAA)
NX2020 Diagnostic Structs, * (WAA)
NX4000 Diagnostic Structs, * (WAA)
NX5000 Diagnostic Structs, * (WAA)
NX6000 Diagnostic Structs, * (WAA)
NX6100 Diagnostic Structs, * (WAA)

Aula88.project
Page 22 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

NX6020 Diagnostic Structs, * (Manufacturer)


NJ1001 Diagnostic Structs, * (Manufacturer)
NJ1005 Diagnostic Structs, * (Manufacturer)
NJ2001 Diagnostic Structs, * (Manufacturer)
NJ6000 Diagnostic Structs, * (Manufacturer)
NJ6001 Diagnostic Structs, * (Manufacturer)
NJ6005 Diagnostic Structs, * (Manufacturer)
NJ6010 Diagnostic Structs, * (Manufacturer)
NJ6011 Diagnostic Structs, * (Manufacturer)
NJ6020 Diagnostic Structs, * (Manufacturer)
NJ6100 Diagnostic Structs, * (Manufacturer)
NJ6101 Diagnostic Structs, * (Manufacturer)
#LibNextoNet
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
IBase, * (System)
#SysSem
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpLog
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#SysSocket
SysTypes2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysTypes, * (System)
Standard, * (System)
#NextoStandard
#SysTypes
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)

Aula88.project
Page 23 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

SysTypes2 Interfaces, * (System)


#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#IoDrvNextoBus
#CmpLog
SysTypes2 Interfaces, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#CmpSchedule
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysPort
SysTypes2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore

Aula88.project
Page 24 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpBinTagUtilIec
SysTypes2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
#Rts Service Handler
#CAA Types
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSettings
SysTypes2 Interfaces, * (System)
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTarget
#CmpSysEthernet
#Component Manager
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)

Aula88.project
Page 25 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysSem
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#Standard
#NextoStandard
(recursive reference)
IBase, * (System)
IIoDrvParameter, * (System)
IIoDrv, * (System)
SysTypes, * (System)
#LibDataTypes
#LibRtuStandard
#IoDrvNextoBus
(recursive reference)
SysTypes, * (System)
IBase, * (System)
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibDataTypes
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#RedundancyBase
SysTypes, * (System)
#SysMem

Aula88.project
Page 26 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#CmpErrors
#SysTypes
IBase, * (System)
#IoDrvNX5001
IIoDrvParameter, * (System)
IBase, * (System)
IIoDrv, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
#NextoStandard
(recursive reference)
SysTypes, * (System)
CmpErrors, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)

Aula88.project
Page 27 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#CmpLog
SysTypes2 Interfaces, * (System)
#Standard
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#NextoProfibusDecodSlvDiagALTUS
#NextoProfibusDecodSlvDiagNexto
SysMem, * (System)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibLogs
SysTypes, * (System)
CmpLog, * (System)
Standard, * (System)
#IoDrvNextoBus
(recursive reference)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
CmpLog, * (System)
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
IoDrvNX5001, 1.1.0.58 (WAA)
IIoDrvParameter, * (System)
IBase, * (System)
IIoDrv, * (System)

Aula88.project
Page 28 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#IoDrvNextoBus
#CmpLog
SysTypes2 Interfaces, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#CmpSchedule
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysPort
SysTypes2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)

Aula88.project
Page 29 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

SysTypes2 Interfaces, * (System)


#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpBinTagUtilIec
SysTypes2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
#Rts Service Handler
#CAA Types
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSettings
SysTypes2 Interfaces, * (System)
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTarget
#CmpSysEthernet
#Component Manager
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr

Aula88.project
Page 30 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

CmpErrors2 Interfaces, * (System)


#SysSem
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#Standard
#NextoStandard
#SysTypes
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
CmpLog, * (System)
IBase, * (System)
IIoDrvParameter, * (System)
IIoDrv, * (System)
SysTypes, * (System)
#LibDataTypes
#LibRtuStandard
#IoDrvNextoBus
(recursive reference)
SysTypes, * (System)
IBase, * (System)
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)

Aula88.project
Page 31 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

SysSem, * (System)
#LibDataTypes
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#RedundancyBase
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#CmpErrors
#SysTypes
IBase, * (System)
#IoDrvNX5001
IIoDrvParameter, * (System)
IBase, * (System)
IIoDrv, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
#NextoStandard
#SysTypes
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)

Aula88.project
Page 32 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
CmpLog, * (System)
SysTypes, * (System)
CmpErrors, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTarget
#CmpLog
SysTypes2 Interfaces, * (System)
#Standard
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)

Aula88.project
Page 33 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#NextoProfibusDecodSlvDiagNexto
SysMem, * (System)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibLogs
SysTypes, * (System)
CmpLog, * (System)
Standard, * (System)
#IoDrvNextoBus
(recursive reference)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#NextoStandard
#SysTypes
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#IoDrvNextoBus
#CmpLog
SysTypes2 Interfaces, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)

Aula88.project
Page 34 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

SysTypes2 Interfaces, * (System)


#CmpSchedule
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysPort
SysTypes2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpBinTagUtilIec
SysTypes2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
#Rts Service Handler
#CAA Types
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors

Aula88.project
Page 35 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSettings
SysTypes2 Interfaces, * (System)
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTarget
#CmpSysEthernet
#Component Manager
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysSem
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#Standard
#NextoStandard
(recursive reference)
IBase, * (System)
IIoDrvParameter, * (System)
IIoDrv, * (System)
SysTypes, * (System)
#LibDataTypes
#LibRtuStandard
#IoDrvNextoBus
(recursive reference)
SysTypes, * (System)
IBase, * (System)
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)

Aula88.project
Page 36 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibDataTypes
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#RedundancyBase
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#CmpErrors
#SysTypes
IBase, * (System)
#IoDrvNX5001
IIoDrvParameter, * (System)
IBase, * (System)
IIoDrv, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
#NextoStandard
(recursive reference)
SysTypes, * (System)
CmpErrors, * (System)
#IoStandard
Base Interfaces, * (System)

Aula88.project
Page 37 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

CmpErrors2 Interfaces, * (System)


#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTarget
#CmpLog
SysTypes2 Interfaces, * (System)
#Standard
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#NextoProfibusDecodSlvDiagALTUS
#NextoProfibusDecodSlvDiagNexto
SysMem, * (System)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibLogs
SysTypes, * (System)
CmpLog, * (System)
Standard, * (System)
#IoDrvNextoBus
(recursive reference)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)

Aula88.project
Page 38 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

CmpLog, * (System)
SysTypes, * (System)
CmpErrors, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTarget
#CmpLog
SysTypes2 Interfaces, * (System)
#Standard
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#NextoProfibusDecodSlvDiagALTUS
#NextoProfibusDecodSlvDiagNexto
SysMem, * (System)
Standard, 3.5.7.0 (System)
#LibNXDigital
#IoDrvNextoBus
#CmpLog
SysTypes2 Interfaces, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)

Aula88.project
Page 39 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

SysTypes2 Interfaces, * (System)


CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#CmpSchedule
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysPort
SysTypes2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpBinTagUtilIec
SysTypes2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
#Rts Service Handler
#CAA Types
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)

Aula88.project
Page 40 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

CmpErrors2 Interfaces, * (System)


#CmpErrors
#SysTypes
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSettings
SysTypes2 Interfaces, * (System)
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTarget
#CmpSysEthernet
#Component Manager
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysSem
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#Standard
#NextoStandard
#SysTypes
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc

Aula88.project
Page 41 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

SysTypes2 Interfaces, * (System)


SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
CmpLog, * (System)
IBase, * (System)
IIoDrvParameter, * (System)
IIoDrv, * (System)
SysTypes, * (System)
#LibDataTypes
#LibRtuStandard
#IoDrvNextoBus
(recursive reference)
SysTypes, * (System)
IBase, * (System)
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibDataTypes
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#RedundancyBase
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)

Aula88.project
Page 42 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#SysTypes
IBase, * (System)
#IoDrvNX5001
IIoDrvParameter, * (System)
IBase, * (System)
IIoDrv, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
#NextoStandard
#SysTypes
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
CmpLog, * (System)
SysTypes, * (System)
CmpErrors, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime

Aula88.project
Page 43 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

SysTypes2 Interfaces, * (System)


#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTarget
#CmpLog
SysTypes2 Interfaces, * (System)
#Standard
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#NextoProfibusDecodSlvDiagALTUS
#NextoProfibusDecodSlvDiagNexto
SysMem, * (System)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibLogs
SysTypes, * (System)
CmpLog, * (System)
Standard, * (System)
#IoDrvNextoBus
(recursive reference)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#SysMem
SysTypes2 Interfaces, * (System)

Aula88.project
Page 44 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

NX2001 Diagnostic Structs, * (WAA)


NX2020 Diagnostic Structs, * (WAA)
#LibDataTypes
NX1001 Diagnostic Structs, * (WAA)
#LibNXAnalog
#IoDrvNextoBus
#CmpLog
SysTypes2 Interfaces, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#CmpSchedule
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysPort
SysTypes2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpBinTagUtilIec

Aula88.project
Page 45 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#CmpSrv
SysTypes2 Interfaces, * (System)
#Rts Service Handler
#CAA Types
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSrv
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpSettings
SysTypes2 Interfaces, * (System)
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTarget
#CmpSysEthernet
#Component Manager
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysSem
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#Standard
#NextoStandard
#SysTypes

Aula88.project
Page 46 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
CmpLog, * (System)
IBase, * (System)
IIoDrvParameter, * (System)
IIoDrv, * (System)
SysTypes, * (System)
#LibDataTypes
#LibRtuStandard
#IoDrvNextoBus
(recursive reference)
SysTypes, * (System)
IBase, * (System)
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpErrors
#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#LibDataTypes
#LibDatabaseManager
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)

Aula88.project
Page 47 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#SysTypes
SysTypes, * (System)
IBase, * (System)
#LibDataTypes
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#RedundancyBase
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#CmpErrors
#SysTypes
IBase, * (System)
#IoDrvNX5001
IIoDrvParameter, * (System)
IBase, * (System)
IIoDrv, * (System)
#IoDrvBase
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
Base Interfaces, * (System)
IoDriver Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
#NextoStandard
#SysTypes
#CmpIecTask
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)

Aula88.project
Page 48 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

SysTypes2 Interfaces, * (System)


#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#IoDrvNextoBus
(recursive reference)
CmpLog, * (System)
SysTypes, * (System)
CmpErrors, * (System)
#IoStandard
Base Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#SysTask
#SysTime
#SysTimeCore
SysTypes2 Interfaces, * (System)
#SysTimeRtc
#SysTimeCore
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
#CmpApp
SysTypes2 Interfaces, * (System)
#CmpEventMgr
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysCpuHandling
#SysMem
SysTypes2 Interfaces, * (System)
SysTypes2 Interfaces, * (System)
CmpErrors2 Interfaces, * (System)
#SysTarget
#CmpLog
SysTypes2 Interfaces, * (System)
#Standard
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#NextoProfibusDecodSlvDiagALTUS
#NextoProfibusDecodSlvDiagNexto
SysMem, * (System)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)

Aula88.project
Page 49 of 52
5/9/2018 12:07 AM
1.1.1.8 Library Manager: Library Manager

#LibLogs
SysTypes, * (System)
CmpLog, * (System)
Standard, * (System)
#IoDrvNextoBus
(recursive reference)
#LibInternal
SysTypes, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
CmpErrors, * (System)
SysSem, * (System)
#SysMem
SysTypes2 Interfaces, * (System)
#LibDataTypes
#NX6000 Diagnostic Structs
#NX6100 Diagnostic Structs
#NX6020 Diagnostic Structs
#NX6010 Diagnostic Structs
#NJ6005 Diagnostic Structs
#NJ6001 Diagnostic Structs
#NJ6101 Diagnostic Structs

1.1.1.9 Task Configuration: Task Configuration


Número máximo de tarefas: 16
Número máximo de tarefas cíclicas: 16
Número máximo de tarefas contínuas: 16
Número máximo de tarefas de evento: 16
Número máximo de tarefas de evento externas: 16
Número máximo de tarefas de status: 16

Eventos do Sistema:

1.1.1.9.1 Tarefa: MainTask


Prioridade: 13
Tipo: Cíclico
Interval: 20 Unit: ms
Cão-de-Guarda: Ativo
Tempo de Cão-de-Guarda: 1000 Unidade: ms
Sensividade do Cão-de-Guarda: 1
POUs: MainPrg

Aula88.project
Page 50 of 52
5/9/2018 12:07 AM
1.1.1.9.1.1 Chamada de programa: MainPrg

1.1.1.9.1.1 Chamada de programa: MainPrg

2 Informações do Projeto: Project Information

Arquivo
Nome Aula88.project
Local C:\Users\Manutencao\Desktop\PERSCH\AULAS\Aulas\Aula88
Tamanho 256.12 KB (262,265 bytes)
MS-DOS nome C:\Users\MANUTE~1\Desktop\PERSCH\AULAS\Aulas\Aula88\AULA88~1.PRO
Criado Tuesday, May 8, 2018 11:40:54 PM
Alterado Wednesday, May 9, 2018 12:06:53 AM
Último Acesso Tuesday, May 8, 2018 11:40:55 PM
Atributos Arquivo
Salvo Com MasterTool IEC XE

Sumário
Empresa
Título
Versão
Categoria de Biblioteca
Contexto Padrão
Autor
Descrição

Propriedades
Project [Text] Aula88
Project Profile [Text] Single

Estatísticas
Plc Logic 1
Chamada de programa 2
Connector 3
Configuration and Consumption 1
Informações do Projeto 1
Diagnostic Explorer 1
Bill of Materials 1
Aplicação 1
Dispositivo 8
Tarefa 2
Task Configuration 1
POU 4
Pasta 4
Library Manager 1
Lista de Variáveis Globais 6

Aula88.project
Page 51 of 52
5/9/2018 12:07 AM
3 : Project Settings

3 : Project Settings

Aula88.project
Page 52 of 52
5/9/2018 12:07 AM

You might also like