MSG instructions Flashcards

1
Q

Processors may _____ or _____ to another processor

A

Read/Write

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

Reading data and writing data are both easy to troubleshoot (true/false)

A

False. Writing data is much harder to troubleshoot than reading.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the main purpose of the MSG instruction?

A

To allow plcs to read/write to each other.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What type of datatype is the MSG instruction?

A

Message type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Don’t use message tags for more than one MSG instruction (t/f)

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

When is the MSG instruction executed?

A

When the rung-in condition is true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

If communicating with a logix processor, what type of communication method should be used?

A

CIP data table read/CIP data table write

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the source element of the MSG instruction for CIP data table read?

A

The first tag in the target PLC you want to read

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

The source element is usually an ______

A

Array

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

The number of elements in the MSG instruction is referring to what?

A

How many elements of the array you want to read.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the destination element in the MSG instruction for CIP data table read?

A

The first tag in the local PLC you want to move the data into

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

The path contains all of the necessary information required for the PLC to connect to the target PLC. The structure varies depending on the type of processor you are connecting to. For example, LocalENB, 2, 192.168.5.243, 1, 0. (ControlLogix to ControlLogix)

What is the meaning of all elements in this path?

A

LocalENB - The local ethernet card
2 - Ethernet/IP port
192.168.5.243 - The IP address of the target PLC
1 - communications across the backplane
0 - indicates the slot of the processor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The path contains all of the necessary information required for the PLC to connect to the target PLC. The structure varies depending on the type of processor you are connecting to. For example, LocalENB, 2, 192.168.5.243. (ControlLogix to CompactLogix)

What is the meaning of all elements in this path?

A

LocalENB - The name of the ethernet card in the I/O configuration
2 - Ethernet/IP
192.168.5.243 - The IP address of target PLC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

The path contains all of the necessary information required for the PLC to connect to the target PLC. The structure varies depending on the type of processor you are connecting to. For example, 2, 192.168.5.243. (CompactLogix to CompactLogix)

What is the meaning of all elements in this path?

A

2 - ethernet/ip
192.168.5.243 - IP address of the other PLC

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

How many times will the MSG instruction execute?

A

Only 1 time everytime the rung-in condition becomes true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How can the program be modified to have the MSG execute repeatedly?

A

Use a free running timer with a .DN bit

16
Q

When will the .EN bit activate?

A

When the instruction is executing

17
Q

When will the .DN bit activate?

A

When the instruction is successful

18
Q

When will the .ER bit activate?

A

If there is an error/if the instruction fails

19
Q

MSG instructions can enter a message queue until they are complete. How many messages can be held?

A

48