1.26.4.7 DBGU_WriteByte Function

C

/* Blocking mode */

void DBGU_WriteByte( int data )

Summary

Submits a byte of data to the given DBGU peripheral to transfer

Description

This function submits a byte of data to the DBGU peripheral to transfer. This Function is available only in non-interrupt mode.

Precondition

DBGU_Initialize must have been called for the associated DBGU instance.

Parameters

Param Description
data Data byte to be transferred

Returns

None

Example

char myData = 'A';

DBGU_WriteByte(myData);

Remarks

None