UART Library

The UART hardware module is available with a number of ARM MCUs. The mikroPascal PRO for ARM UART Library provides comfortable work with the Asynchronous (full duplex) mode.

  Important :

Library Routines

Generic Routines

UARTx_Init

Prototype

procedure UARTx_Init(baud_rate : dword);

Description

Configures and initializes the UART module.

The internal UART module module is set to :

  • default Tx and Rx pins.
  • 8-bit data, no parity.
  • 1 STOP bit.
Parameters
  • baud_rate: requested baud rate.
Returns

Nothing.

Requires

Routine requires the UART module.

Example
// Initialize hardware UART1 module and establish communication at 2400 bps
UART1_Init(2400);
Notes
  • Refer to the device data sheet for baud rates allowed for specific peripheral clock values.
  • UART library routines require you to specify the module you want to use. To select the desired UART module, simply change the letter x in the routine prototype for a number from 0 to 7.
  • Switching between the UART modules in the UART library is done by the UART_Set_Active function (UART modules have to be previously initialized).
  • Number of UART modules per MCU differs from chip to chip. Please, read the appropriate datasheet before utilizing this library.
  • UART modules are set on the following pins :

    Stellaris

    • UART0 :
      • PA0/PA1 (all Cortex M3 and M4 MCUs).
    • UART1 :
      • PB0/PB1 - all Cortex M4 MCUs and following Cortex M3 MCUs : LM3S1607, LM3S1627, LM3S3634, LM3S3739, LM3S3749, LM3S5632, LM3S5732 and LM3S5739.
      • PB4/PB5 - LM3S1626.
      • PC6/PC7 - LM3S3748.
      • PD2/PD3 - all other Cortex M3 MCUs not listed before.
    • UART2 :
      • PB4/E4 - LM3S1607 Cortex M3.
      • PD0/PD1 - LM3S3739, LM3S3749 and LM3S5739 Cortex M3.
      • PG0/PG1 - all other Cortex M3 MCUs not listed before.
      • PD4/PD5 - TM4C129x Cortex M4 family.
      • PD6/PD7 - TM4C123x Cortex M4 family.
    • UART3 :
      • PJ0/PJ1 - TM4C129x Cortex M4 family.
      • PC6/PC7 - TM4C123x Cortex M4 family.
    • UART4 :
      • PA2/PA3 - TM4C129x Cortex M4 family.
      • PC4/PC5 - TM4C123x Cortex M4 family.
    • UART5 :
      • PH6/PH7 - TM4C129x Cortex M4 family.
      • PE4/PE5 - TM4C123x Cortex M4 family.
    • UART6 :
      • PP0/PP1 - TM4C129x Cortex M4 family.
      • PD4/PD5 - TM4C123x Cortex M4 family.
    • UART7 :
      • PC4/PC5 - TM4C129x Cortex M4 family.
      • PE0/PE1 - TM4C123x Cortex M4 family.
    • The compiler will choose for which speed the calculation is to be performed (high or low). This does not mean that it is the best choice for desired baud rate.
      If the baud rate error generated in this way is too big then UARTx_Init_Advanced routine, which allows speed select, should be used.

    MSP432

    • UART0 :
      • PA2/PA3.
    • UART1 :
      • PA10/PA11.
    • UART2 :
      • PB2/PB3.
    • UART3 :
      • PE6/PE7.

    STM32

    • UART1 :
      • PA9/PA10 - all Cortex M0, M3 and M4 MCUs.
    • UART2 :
      • PA2/PA3 - all Cortex M0, M3 and M4 MCUs.
    • UART3 :
      • PB8/PB9 - STM32F373x/STM32F378x/STM32F383x Cortex M4 MCUs.
      • PC6/PC7 - STM32F401/411 Cortex M4 MCUs.
      • PB10/PB11 all Cortex M0, M3 and other Cortex M4 MCUs not listed before.
    • UART4 :
      • PA0/PA1 - all Cortex M0 MCUs.
      • PC10/PC11 - all Cortex M3 and Cortex M4 MCUs.
    • UART5 :
      • PC12/PD2 - all Cortex M3 and Cortex M4 MCUs.
    • UART6 :
      • PC6/PC7 - all Cortex M3 and Cortex M4 MCUs.
    • UART7 :
      • PE7/PE8 - all Cortex M4 MCUs.
    • UART8 :
      • PE0/PE1 - all Cortex M4 MCUs.

    CEC1302

    • UART1 :
      • GPIO162/GPIO165

    CEC1702

    • UART0 :
      • GPIO104/GPIO105
    • UART1 :
      • GPIO171/GPIO170

    Kinetis

    • UART0 :
      • PB16/PB17
    • UART1 :
      • PC4/PC3
    • UART2 :
      • PD3/PD2
    • UART3 :
      • PC16/PC17
    • UART4 :
      • PE24/PE25
    • UART5 :
      • PD9/PD8

UARTx_Init_Advanced

Prototype // for Stellaris MCUs :

procedure UARTx_Init_Advanced(baud_rate : dword; freq_Khz : dword; data_bits : word; parity : word; stop_bits : word; high_low : word);

// for Stellaris MCUs with alternative PORT functions on GPIO pins :

procedure UARTx_Init_Advanced(baud_rate : dword; freq_Khz : dword; data_bits : word; parity : word; stop_bits : word; high_low : word; module : ^const Module_Struct);

// for MSP432 MCUs :

procedure UARTx_Init_Advanced(uartBase : ^word; baudRate : dword; clockSource : word; dataBits : word; parity : word; stopBits : word; sbf : word; module : ^const Module_Struct);

// for ST and Kinetis MCUs :

procedure UARTx_Init_Advanced(baud_rate : dword; data_bits : word; parity : word; stop_bits : word; high_low : word; module : ^const Module_Struct);

// for CEC1x02 MCU :

procedure UART_Init_Advanced(baud_rate : dword; data_bits : word; parity : word; stop_bits : word);

Description

Configures and initializes the UART module with user defined settings.

Parameters

Stellaris

  • baud_rate: Requested baud rate.
  • freq_Khz: Peripheral Bus Clock frequency in kHz.
  • data_bits: Data bits selection parameter. Valid values :

    Data Bits
    Description Predefined library const
    5 data bits _UART_5_BIT_DATA
    6 data bits _UART_6_BIT_DATA
    7 data bits _UART_7_BIT_DATA
    8 data bits _UART_8_BIT_DATA
  • parity: Parity selection parameter. Valid values :

    Parity Mode
    Description Predefined library const
    No parity _UART_NOPARITY
    Even parity _UART_EVENPARITY
    Odd parity _UART_ODDPARITY
    Parity bit is one _UART_PARITY_ONE
    Parity bit is zero _UART_PARITY_ZERO
  • stop_bits: Stop bit selection parameter. Valid values :

    Stop bits
    Description Predefined library const
    One stop bit _UART_ONE_STOPBIT
    Two stop bit _UART_TWO_STOPBITS
  • high_low: High/low speed selection parameter. Valid values :

    High/Low Speed
    Description Predefined library const
    Low Speed UART _UART_LOW_SPEED
    Hi Speed UART _UART_HIGH_SPEED
  • module: appropriate module pinout. Use Code Assistant to list available module pinouts by typing _GPIO_MODULE_U and pressing Ctrl + Space.

MSP432

  • uartBase: pointer to desired uart module.
  • baudRate: Requested baud rate.
  • clockSource: clock source. Valid values :
    Clock source
    Description Predefined library const
    Externally provided clock _UART_CLOCK_SOURCE_UCLK
    Auxiliary clock _UART_CLOCK_SOURCE_ACLK
    Low-speed subsystem master clock _UART_CLOCK_SOURCE_SMCLK
  • dataBits: Data bits selection parameter. Valid values :

    Data Bits
    Description Predefined library const
    7 data bits _UART_7_BIT_DATA
    8 data bits _UART_8_BIT_DATA
  • parity: Parity selection parameter. Valid values :

    Parity Mode
    Description Predefined library const
    No parity _UART_NOPARITY
    Even parity _UART_EVENPARITY
    Odd parity _UART_ODDPARITY
    Enable parity _UART_ENABLEPARITY
  • stopBits: Stop bit selection parameter. Valid values :

    Stop bits
    Description Predefined library const
    One stop bit _UART_ONE_STOPBIT
    Two stop bit _UART_TWO_STOPBITS
  • sbf: most/least significant bit first. Valid values :

    Most/least significant bit first
    Description Predefined library const
    Most significant bit first _UART_MSB_FIRST
    Least significant bit first _UART_LSB_FIRST
  • module: appropriate module pinout. Use Code Assistant to list available module pinouts by typing _GPIO_MODULE_U and pressing Ctrl + Space.

STM32

  • baud_rate: Requested baud rate.
  • data_bits: Data bits selection parameter. Valid values :

    Data Bits
    Description Predefined library const
    8 data bits _UART_8_BIT_DATA
    9 data bits _UART_9_BIT_DATA
  • parity: Parity selection parameter. Valid values :

    Parity Mode
    Description Predefined library const
    No parity _UART_NOPARITY
    Even parity _UART_EVENPARITY
    Odd parity _UART_ODDPARITY
    Parity bit is one _UART_PARITY_ONE
    Parity bit is zero _UART_PARITY_ZERO
  • stop_bits: Stop bit selection parameter. Valid values :

    Stop bits
    Description Predefined library const
    Half stop bit _UART_HALF_STOPBIT
    One stop bit _UART_ONE_STOPBIT
    One and a half stop bits _UART_ONE_AND_A_HALF_STOPBITS
    Two stop bit _UART_TWO_STOPBITS
  • module: appropriate module pinout. Use Code Assistant to list available module pinouts by typing _GPIO_MODULE_U and pressing Ctrl + Space.

CEC1x02

  • baud_rate: Requested baud rate.
  • data_bits: Data bits selection parameter. Valid values :

    Data Bits
    Description Predefined library const
    5 data bits _UART_5_BIT_DATA
    6 data bits _UART_6_BIT_DATA
    7 data bits _UART_7_BIT_DATA
    8 data bits _UART_8_BIT_DATA
  • parity: Parity selection parameter. Valid values :

    Parity Mode
    Description Predefined library const
    No parity _UART_NOPARITY
    Even parity _UART_EVENPARITY
    Odd parity _UART_ODDPARITY
  • stop_bits: Stop bit selection parameter. Valid values :

    Stop bits
    Description Predefined library const
    One stop bit _UART_ONE_STOPBIT
    Two stop bit _UART_TWO_STOPBIT

Kinetis

  • baud_rate: Requested baud rate.
  • data_bits: Data bits selection parameter. Valid values :

    Data Bits
    Description Predefined library const
    8 data bits _UART_8_BIT_DATA
    9 data bits _UART_9_BIT_DATA
  • parity: Parity selection parameter. Valid values :

    Parity Mode
    Description Predefined library const
    No parity _UART_NOPARITY
    Even parity _UART_EVENPARITY
    Odd parity _UART_ODDPARITY
  • stop_bits: Stop bit selection parameter. Valid values :

    Stop bits
    Description Predefined library const
    One stop bit _UART_ONE_STOPBIT
    Two stop bit _UART_TWO_STOPBITS
  • module: appropriate module pinout. Use Code Assistant to list available module pinouts by typing _GPIO_MODULE_U and pressing Ctrl + Space.
Returns

Nothing.

Requires

Routine requires the UART module.

Example

Stellaris

// Initialize hardware UART1 module at 115200 bps with 10 MHz peripheral clock, 8 data, no parity and 1 stop bit in high speed mode :
UART1_Init_Advanced(115200, 10000, _UART_8_BIT_DATA, _UART_NOPARITY, _UART_ONE_STOPBIT, _UART_HIGH_SPEED);

// Initialize hardware UART1 module on GPIO_PORTA at 115200 bps with 10 MHz peripheral clock, 8 data, no parity and 1 stop bit in high speed mode :
UART1_Init_Advanced(115200, 10000, _UART_8_BIT_DATA, _UART_NOPARITY, _UART_ONE_STOPBIT, _UART_HIGH_SPEED, @_GPIO_MODULE_UART1_A01);

MSP432

// Initialize hardware UART1 module at 115200 bps, 8 data, no parity and 1 stop bit :
UART1_Init_Advanced(@EUSCI_A0_UCA0CTLW0, 115200, _UART_CLOCK_SOURCE_SMCLK, _UART_8_BIT_DATA, _UART_8_BIT_DATA, _UART_ONE_STOPBIT, _UART_LSB_FIRST, @_GPIO_MODULE_UARTA1_A1011);

STM32

// Initialize hardware UART1 module on PORTA at 115200 bps, 8 data, no parity and 1 stop bit :
UART1_Init_Advanced(115200, _UART_8_BIT_DATA, _UART_NOPARITY, _UART_ONE_STOPBIT, @_GPIO_MODULE_USART1_PA9_10);

CEC1x02

// Initialize hardware UART module at 115200 bps, 8 data, no parity and 1 stop bit :
UART_Init_Advanced(115200, _UART_8_BIT_DATA, _UART_NOPARITY, _UART_ONE_STOPBIT);

Kinetis

// Initialize hardware UART1 module on PORTA at 115200 bps, 8 data, no parity and 1 stop bit :
UART1_Init_Advanced(115200, _UART_8_BIT_DATA, _UART_NOPARITY, _UART_ONE_STOPBIT, &_GPIO_Module_UART1_PC4_3);
Notes
  • Refer to the device data sheet for baud rates allowed for specific peripheral clock values.
  • В подпрограммах библиотеки UART вам необходимо указать модуль, который вы хотите использовать. Чтобы выбрать нужный модуль UART, просто измените букву x в прототипе подпрограммы на число от 0 до 7.
  • Switching between the UART modules in the UART library is done by the UART_Set_Active function (UART modules have to be previously initialized).
  • Количество модулей UART на каждый MCU отличается от чипа и чипа. Перед использованием этой библиотеки ознакомьтесь с соответствующей таблицей данных.
  • For available working modes for a specific MCU please read the appropriate datasheet.

UARTx_Data_Ready

Prototype

function UARTx_Data_Ready() : word;

Description

The function tests if data in receive buffer is ready for reading.

Parameters

None.

Returns
  • 1 if data is ready for reading.
  • 0 if there is no data in the receive register.
Requires

Для выполнения процедуры требуется, по крайней мере, один модуль UART.

Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_Advanced routines.

Example
var receive : word;
...
// read data if ready
if (UART1_Data_Ready() = 1) then
  receive := UART1_Read();
Notes
  • В подпрограммах библиотеки UART вам необходимо указать модуль, который вы хотите использовать. Чтобы выбрать нужный модуль UART, просто измените букву x в прототипе подпрограммы на число от 0 до 7.
  • Количество модулей UART на каждый MCU отличается от чипа и чипа. Перед использованием этой библиотеки ознакомьтесь с соответствующей таблицей данных.

UARTx_Tx_Idle

Prototype

function UARTx_Tx_Idle() : word;

Description

Use the function to test if the transmit shift register is empty or not.

Parameters

None.

Returns
  • 1 if the data has been transmitted.
  • 0 otherwise.
Requires

Для выполнения процедуры требуется, по крайней мере, один модуль UART.

Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_Advanced routines.

Example
// If the previous data has been shifted out, send next data:
if (UART1_Tx_Idle() = 1) then
  UART1_Write(_data);
Notes
  • В подпрограммах библиотеки UART вам необходимо указать модуль, который вы хотите использовать. Чтобы выбрать нужный модуль UART, просто измените букву x в прототипе подпрограммы на число от 0 до 7.
  • Количество модулей UART на каждый MCU отличается от чипа и чипа. Перед использованием этой библиотеки ознакомьтесь с соответствующей таблицей данных.

UARTx_Read

Prototype

function UARTx_Read() : word;

Description

The function receives a byte via UART. Use the UARTx_Data_Ready function to test if data is ready first.

Parameters

None.

Returns

Received byte.

Requires

Для выполнения процедуры требуется, по крайней мере, один модуль UART.

Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_Advanced routines.

Example
var receive : word;
...
// read data if ready
if (UART1_Data_Ready() = 1) then 
  receive := UART1_Read();
Notes
  • В подпрограммах библиотеки UART вам необходимо указать модуль, который вы хотите использовать. Чтобы выбрать нужный модуль UART, просто измените букву x в прототипе подпрограммы на число от 0 до 7.
  • Количество модулей UART на каждый MCU отличается от чипа и чипа. Перед использованием этой библиотеки ознакомьтесь с соответствующей таблицей данных.

UARTx_Read_Text

Prototype

procedure UARTx_Read_Text(var output, delimiter : string; Attempts : byte);

Description

Reads characters received via UART until the delimiter sequence is detected. The read sequence is stored in the parameter output; delimiter sequence is stored in the parameter delimiter.

This is a blocking call: the delimiter sequence is expected, otherwise the procedure exits (if the delimiter is not found).

Parameters
  • Output: принимаемый текст.
  • Delimiter: последовательность символов, которая идентифицирует конец принятой строки.
  • Attempts: определяет количество принятых символов, в которых ожидается последовательность разделителей. Если для попыток установлено значение 255, эта процедура будет постоянно пытаться обнаружить последовательность разделителей.
Returns

Nothing.

Requires

Для выполнения процедуры требуется, по крайней мере, один модуль UART.

Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_Advanced routines.

Example

Read text until the sequence “OK” is received, and send back what’s been received:

// Read text until the sequence “OK” is received, and then send it back:
UART1_Init(9600);
delim := 'OK';
while TRUE do
begin
  if UART1_Data_Ready() = 1 then
  begin
    UART1_Read_Text(txt, delim, 10);
    UART1_Write_Text(txt);
  end;
end;
Notes
  • В подпрограммах библиотеки UART вам необходимо указать модуль, который вы хотите использовать. Чтобы выбрать нужный модуль UART, просто измените букву x в прототипе подпрограммы на число от 0 до 7.
  • Количество модулей UART на каждый MCU отличается от чипа и чипа. Перед использованием этой библиотеки ознакомьтесь с соответствующей таблицей данных.

UARTx_Write

Prototype

procedure UARTx_Write(data_ : word);

Description

Функция передает байты через модуль UART.

Parameters
  • _data: data to be sent.
Returns

Nothing.

Requires

Для выполнения процедуры требуется, по крайней мере, один модуль UART.

Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_Advanced routines.

Example
var data_ : byte;
...
data_ := 0x1E;
UART1_Write(data_);
Notes
  • В подпрограммах библиотеки UART вам необходимо указать модуль, который вы хотите использовать. Чтобы выбрать нужный модуль UART, просто измените букву x в прототипе подпрограммы на число от 0 до 7.
  • Количество модулей UART на каждый MCU отличается от чипа и чипа. Перед использованием этой библиотеки ознакомьтесь с соответствующей таблицей данных.

UARTx_Write_Text

Prototype

procedure UARTx_Write_Text(var uart_text : string);

Description

Отправляет текст через UART. Текст должен быть нулевым и ограничен 255 символами.

Parameters
  • UART_text: text to be sent.
Returns

Nothing.

Requires

Для выполнения процедуры требуется, по крайней мере, один модуль UART.

Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_Advanced routines.

Example

Read text until the sequence “OK” is received, and send back what’s been received:

// Read text until the sequence “OK” is received, and then send it back:
UART1_Init(9600);
delim := 'OK';
while TRUE do
begin
  if UART1_Data_Ready() = 1 then
  begin
    UART1_Read_Text(txt, delim, 10);
    UART1_Write_Text(txt);
  end;
end;
Notes
  • В подпрограммах библиотеки UART вам необходимо указать модуль, который вы хотите использовать. Чтобы выбрать нужный модуль UART, просто измените букву x в прототипе подпрограммы на число от 0 до 7.
  • Количество модулей UART на каждый MCU отличается от чипа и чипа. Перед использованием этой библиотеки ознакомьтесь с соответствующей таблицей данных.

UART_Set_Active

Prototype

procedure UART_Set_Active (read_ptr : ^TUART_Rd_Ptr; write_ptr : ^TUART_Wr_Ptr; ready_ptr : ^TUART_Rdy_Ptr; tx_idle_ptr : ^TUART_TX_Idle_Ptr);

Description

Sets active UART module which will be used by UARTx_Data_Ready, UARTx_Read and UARTx_Write routines.

Parameters

Parameters :

Returns

Nothing.

Requires

Процедура доступна только для MCU с несколькими модулями UART.

Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_Advanced routines.

Example
UART1_Init(9600);                    // initialize UART1 module
UART2_Init(9600);                    // initialize UART2 module

RS485Master_Init();                  // initialize MCU as Master

UART_Set_Active(@UART1_Read, @UART1_Write, @UART1_Data_Ready, @UART1_Tx_Idle); // set UART1 active
RS485Master_Send(dat,1,160);        // send message through UART1

UART_Set_Active(@UART2_Read, @UART2_Write, @UART2_Data_Ready, @UART2_Tx_Idle); // set UART2 active
RS485Master_Send(dat,1,160);        // send through UART2
Notes

None.

UARTx_Enable

Prototype

procedure UARTx_Enable(UART_Base : ^dword);

Description

Эта функция позволяет использовать желаемый модуль UART.

Parameters
  • UART_Base: desired UART module base address.
Returns

Nothing.

Requires

В подпрограммах библиотеки UART вам необходимо указать модуль, который вы хотите использовать. Чтобы выбрать нужный модуль UART, просто измените букву x в прототипе подпрограммы на число от 0 до 7.

Example
// Enable UART1 module
UART1_Enable(@USART1_SR);
Notes

Рутина доступна только для ST MCU.

UARTx_Disable

Prototype

procedure UARTx_Disable(UART_Base : ^dword);

Description

Эта функция отключает требуемый модуль UART.

Parameters
  • UART_Base: desired UART module base address.
Returns

Nothing.

Requires

В подпрограммах библиотеки UART вам необходимо указать модуль, который вы хотите использовать. Чтобы выбрать нужный модуль UART, просто измените букву x в прототипе подпрограммы на число от 0 до 7.

Example
// Disable UART1 module
UART1_Enable(@USART1_SR);
Notes

Routine is available only for ST MCUs.

UART_Data_Ready

Prototype

function UART_Data_Ready() : word;

Description

Функция проверяет, готовы ли данные в буфере приема для чтения.

This is a generic routine which uses the active UART module previously activated by the UART_Set_Active routine.

Parameters

None.

Returns
  • 1, если данные готовы для чтения.
  • 0, если в регистре приема нет данных.
Requires

Для выполнения процедуры требуется, по крайней мере, один модуль UART.

Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_Advanced routines.

Example
var receive : word;
...
// read data if ready
if (UART_Data_Ready() = 1) then
  receive := UART_Read();
Notes

None.

UART_Tx_Idle

Prototype

function UART_Tx_Idle() : word;

Description

Используйте эту функцию, чтобы проверить, пуст ли регистр сдвига передачи или нет.

This is a generic routine which uses the active UART module previously activated by the UART_Set_Active routine.

Parameters

None.

Returns
  • 1 if the data has been transmitted.
  • 0 otherwise.
Requires

Для выполнения процедуры требуется, по крайней мере, один модуль UART.

Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_Advanced routines.

Example
// If the previous data has been shifted out, send next data:
if (UART_Tx_Idle() = 1) then
  UART_Write(_data);
Notes

None.

UART_Read

Prototype

function UART_Read() : word;

Description

The function receives a byte via UART. Use the UART_Data_Ready function to test if data is ready first.

This is a generic routine which uses the active UART module previously activated by the UART_Set_Active routine.

Parameters

None.

Returns

Received byte.

Requires

Для выполнения процедуры требуется, по крайней мере, один модуль UART.

Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_Advanced routines.

Example
var receive : word;
...
// read data if ready
if (UART_Data_Ready() = 1) then 
  receive := UART_Read();
Notes

None.

UART_Read_Text

Prototype

procedure UART_Read_Text(var output, delimiter : string; Attempts : byte);

Description

Считывает символы, полученные через UART, до тех пор, пока не будет обнаружена последовательность разделителей. Последовательность считывания сохраняется в выводе параметра; последовательность разделителей сохраняется в разделителе параметров.

Это блокирующий вызов: ожидается последовательность разделителя, иначе процедура завершится (если разделитель не найден).

This is a generic routine which uses the active UART module previously activated by the UART_Set_Active routine.

Parameters
  • Output: принимаемый текст.
  • Delimiter:последовательность символов, которая идентифицирует конец принятой строки.
  • Attempts: определяет количество принятых символов, в которых ожидается последовательность разделителей. Если для попыток установлено значение 255, эта процедура будет постоянно пытаться обнаружить последовательность разделителей.
Returns

Nothing.

Requires

Для выполнения процедуры требуется, по крайней мере, один модуль UART.

Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_Advanced routines.

Example

Read text until the sequence “OK” is received, and send back what’s been received:

// Read text until the sequence “OK” is received, and then send it back:
while TRUE do
begin
  if UART_Data_Ready() = 1 then
  begin
    UART_Read_Text(txt, delim, 10);
    UART_Write_Text(txt);
  end;
end;
Notes

None.

UART_Write

Prototype

procedure UART_Write(data_ : word);

Description

Функция передает байты через модуль UART.

This is a generic routine which uses the active UART module previously activated by the UART_Set_Active routine.

Parameters
  • _data: data to be sent.
Returns

Nothing.

Requires

Для выполнения процедуры требуется, по крайней мере, один модуль UART.

Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_Advanced routines.

Example
var data_ : byte;
...
data_ := 0x1E;
UART_Write(data_);
Notes

None.

UART_Write_Text

Prototype

procedure UART_Write_Text(var uart_text : string);

Description

Отправляет текст через UART. Текст должен быть нулевым и ограничен 255 символами.

This is a generic routine which uses the active UART module previously activated by the UART_Set_Active routine.

Parameters
  • UART_text: text to be sent.
Returns

Nothing.

Requires

Для выполнения процедуры требуется, по крайней мере, один модуль UART.

Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_Advanced routines.

Example

Прочитайте текст до тех пор, пока не будет получена последовательность «ОК», и отправьте обратно полученные данные:

// Read text until the sequence “OK” is received, and then send it back:
while TRUE do
begin
  if UART_Data_Ready() = 1 then
  begin
    UART_Read_Text(txt, delim, 10);
    UART_Write_Text(txt);
  end;
end;
Notes

None.