STA_Comm Functions

group sta_comm

This module handles the configuration of the SCIA module for communication over the board USB-to-UART adapter. This path will allow the application to send test pass/fail status to a terminal program.

The code for this module is contained in sta_comm.c, with sta_comm.h containing the API declarations.

Defines

STA_COMM_BAUD_RATE 9600

Functions

void STA_Comm_configSCIA(void)

Configures SCIA for serial communication.

This function configures SCIA for communication to a serial communication terminal for 9600 baud rate, 8-N-1.

Return

None.

void STA_Comm_transmitData(unsigned char *msg)

Transmits data via SCIA.

This function transmits the

msg via SCIA to a serial communication terminal.
Parameters
  • msg: is a \0 terminated array of characters

Return

None.