CANNY 5.3 MD1A. UART Driver

General Description

CANNY 5.3 MD1A controllers have two independent hardware UART interfaces that support operation in asynchronous half-duplex data reception/transmission mode, which can be used to communicate controllers with each other or with external equipment that supports this type of communication. UART interfaces use the controller’s input-output channels, which are defined by the user in the functional diagram. The channels may be activated independently of each other and have individual data speed setting, protocol type and configuration, pull up line. The user must control the state of the data transmission channel from the functional diagram. If the channel is free, the device can start transmitting data, otherwise the device must wait until the line is free. The presence of two UART interfaces capable of operating in half-duplex mode allows, if necessary, to organize an interface based on them that operates in full-duplex mode.

Size of receive and transmit buffers for each of the interfaces of the CANNY 5.3 MD1A UART driver is 64 bytes.

The implementation of an inverted UART (invUART) in CANNY 5.3 MD1A controllers, using two separate UART channels, allows for data exchange with another device in duplex mode, i.e. sending data via one channel and simultaneously receiving data via the other.

Modbus protocol in CANNY 5.3 MD1A controllers is implemented both over UART or over inverted UART. A compact binary variant called Modbus RTU is used as the ADU (Application Data Unit). Checking the data integrity is done via the automatically calculated checksum (CRC). Package size is limited to 64 bytes including the CRC.

Note: For the correct operation of all protocols based on the UART, all GND terminals of all devices within the same UART network, need to be given to a single potential (“common ground”).

UART / Modbus driver operates using the controller’s channel resources, but has a higher priority than the discrete input-output driver. This means that for all channels, for which the UART/Modbus driver is activated, all value changes in registers associated with discrete input-output driver will be ignored.

ATTENTION! The Dallas 1-Wire driver uses the resources of the UART1 driver for its work. It is not possible to use Dallas 1-Wire and UART1 drivers at the same time.

Drivers registers

The following table describes the expected values for driver configuration registers.

UART / Modbus Driver Configuration Registers.
Register Expected Values
UARTx Mode Setup Register 1…N = set controller channel configuration, which determines the current operation mode and applicable parameters (defined by a named constant from the named constants list);
0 = disconnect the channel from UARTx driver, return channel control to the discrete IO driver and allow the channel’s status to be changed from the function diagram.
UARTx Receive Timeout Setup Register, bits 1…255 = stop data reception, if, during the time for which the specified number of data bits could be received, line did not detect any potential changes and was in a passive state;
0 = use the default value defined in channel (13) configuration.
UARTx IO Channel Select Register 8…10 = transfer the specified input-output channel under the control of the UARTx driver; use the specified input-output channel to work with the corresponding UARTx interface.

UART driver configuration is determined by constants that represent a combination of parameters that determine the speed, mode, additional data transmission parameters and line potential in passive mode.

UART configuration parameter values.
Parameter Permitted Values
The data rate, bps 110; 150; 300; 600; 1200; 1800; 2400; 4800; 9600; 19200; 38400; 57600
Mode UART; inverted UART
Pull-up in UART mode Weak Pull-up; Float (open collector)
The transfer direction in RS-232 mode receive; transmit
Data bits 8; 9
parity N (no) ; O (odd) ; E (even)
Number of stop bits 1; 2

Named constants that represent a combination of UART configuration paremeters are available in the “UART modes” folder of the CannyLab named constants list.

UART / Modbus Diagnostic Registers.
Register Return Values
UARTx Overflow Register 1 = UART buffer is full;
0 = no overflow detected.
UARTx Receive Error Register 1 = an error occurred during UART data reception;
0 = the driver is operating normally.
UARTx Ready To Send Register 1 = UART driver data transmit buffer is free;
0 = UART driver data transmit buffer is busy, data transmission is not possible.
UART / Modbus receive registers.
Register Expected Values
UARTx Data Set Ready Register 1 = a message was received and placed into the respective UART channel’s receive buffer;
0 = no actual data is present in the respective UART channel’s receive buffer.
UARTx RTU Received Register 1 = the received message on the respective UART channel is a valid Modbus RTU message, its checksum is correct;
0 = the received message on the respective UART channel is not a valid Modbus RTU message.
UARTx Received Data Length Register 0…64 = value equal to the number of data bytes in the packet received via the respective UART channel
UARTx Received Data Register D1:D0

UARTx Received Data Register D63:D62
0…0xFFFF = data byte values corresponding to UART reception buffers of the respective channel, two bytes per register
UART / Modbus Transmit Registers.
Register Expected Values
UARTx Request To Send Register ≥ 1 = load data from the transmit registers into the respective channel’s UART transmit buffer;
0 = do not load data into the respective channel UART transmit buffer.
UARTx RTU Transmit Register ≥ 1 = command the driver to add the checksum in Modbus RTU format to the message in the respective channel’s UART driver transmit buffer. This forms a data packet compliant to the Modbus RTU protocol;
0 = transmit data from the respective channel’s UART driver transmit buffer “as is”.
UARTx Transmit Data Length Register 0…64 = the number of data bytes that will be transmitted over the line, when receiving a command to send on the respective channel’s UART driver
UARTx Transmit Data Register D1:D0

UARTx Transmit Data Register D64:D62
0…0xFFFF = values of data bytes for transmission via respective UART driver channel, corresponding to data bytes that will be written to the transmit buffer. Two bytes per register.

While working in Modbus mode, the UARTx Received Data Length Register contains the value that accounts for the received CRC checksum bytes, i.e. the value stored within the register is 2 bytes longer than the actual message length without the checksum. When sending a Modbus packet, the Transmit Data Length Register also needs to be set to a value 2 bytes longer than the message length, enabling you to add and transmit the CRC checksum. This means that the maximum packet length for Modbus messages is 64 bytes including CRC.

Controller operation in UART mode

Operating in UART mode, the controller can perform half-duplex data transmission/reception on a single wire. Below is an example illustrating how UART mode could be used in your function diagrams.

Function diagram for UART communication.

The controller receives a message via the UART1 interface. If the message is 2 bytes in length, it saves it into the corresponding named network for further processing, and on the next cycle of the diagram execution sends 2 prepared bytes of data back.

Note: Particular attention must be paid to the fact that in order to avoid collisions while sending data, you need to constantly monitor the send buffer by checking the UARTx Ready to Send Register: if the buffer is not ready, then the driver is currently receiving data and transmitting data should be postponed until the buffer is ready.

Controller operation in inverted UART mode

Operating on the inverted UART mode the controller can use each of its data transfer channels only in simplex (unidirectional) mode. When using both UART channels, which operate independently of each other, it is possible to organize a full-duplex mode of data transmission via two wires: one channel being used only for reception, the other only for transmission.

Below is an example of a function diagram implementing the inverted UART mode. Data is received through UART2 and the value of bytes D1:D0 is compared to 0xAAAA. If the values are equal to 0xAAAA, the controller sends 2 bytes of data containing the value 0xBBBB over UART1.

Function diagram of operating in inverted UART mode.

Modbus RTU implementation

UART/Modbus driver includes functionality that lets it automatically create and verify the checksum using the Modbus RTU standard, which simplifies inclusion of the controller into a network operating under the Modbus RTU protocol. You can manage checksum formation for messages to be transmitted and checksum verification at reception by accessing the appropriate driver registers.

Note: While working in Modbus mode, the UARTx Received Data Length Register contains the value that accounts for the received CRC checksum bytes, i.e. the value stored within the register is 2 bytes longer than the actual message length without the checksum. When sending a Modbus packet, the Transmit Data Length Register also needs to be set to a value 2 bytes longer than the message length, enabling you to add and transmit the CRC checksum. This means that the maximum packet length for Modbus messages is 64 bytes including CRC.

Example of the controller operating in Modbus MASTER-node mode via the inverted UART mode

Function diagram for MASTER-node mode.

The controller periodically requests a SLAVE-node with address 0x20 to send the value of the Modbus-data register with address 0x0001. The controller flashes the green LED once when it receives an acknowledgment of this request.

The query string during data exchange between these devices will look like this:

-> 20 03 00 01 00 01 D3 7B

Explanation:

  • Polled device address: 0x20 (D0 byte of UART2 receive data register D1:D0);

  • Function: 0x03 - reading values from multiple holding registers (D1 byte of UART2 receive data register D1:D0);

  • Number of the first requested register: 0x0001 (D2 and D3 bytes of UART2 receive data register D3:D2);

  • Number of requested registers: 0x0001 (D4 and D5 bytes of UART2 receive data register D5:D4);

  • Checksum: 0xD37B (D6 and D7 bytes of UART2 receive data register D7:D6 — the driver adds this automatically).

Example of the controller operating in Modbus SLAVE-node mode via the inverted UART mode

Function diagram for SLAVE-node mode.

The controller receives a request for data transmission from a MASTER-node and sends back the state of the requested register. It transmits 2 bytes of data (Modbus registers are 16 bits) and 2 CRC bytes.

Receiving a request for data transmission from MASTER, the controller sends back the requested register state. Controller transmits 2 byte of data (+2 CRC bytes), as Modbus registers are 16 bits.

A response string during data exchange between the devices will look like:

<- 20 03 02 00 10 C6 A0

Explanation:

  • Responding device address: 0x20 (D0 byte of UART1 transmit data register D1:D0);

  • Function: 0x03 - the result of reading the values from several holding registers (D1 byte of UART1 transmit data register D1:D0);

  • The number of returned bytes: 0x02 (D2 byte of UART1 transmit data register D3:D2);

  • The value of the upper byte of the requested register: 0x00 (D3 byte of UART1 transmit data register D3:D2);

  • The value of the least significant bit of the requested register: 0x10 (D4 byte of UART1 transmit data register D5:D4);

  • Checksum: 0xC6A0 (D5 byte of UART1 transmit data register D5:D4 and D6 byte of UART1 transmit data register D7:D6 respectively — driver adds this automatically).

SEE ALSO