User manual
mikroC PRO for dsPIC
MikroElektronika
657
UARTx_Write
Prototype
void UARTx_Write(unsigned char data);
Description The function transmits a byte via the UART module.
Parameters
- data: data to be sent
Returns Nothing.
Requires Routine requires at least one UART module.
Used UART module must be initialized before using this routine. See UARTx_Init and UARTx_Init_
Advanced routines.
Example
unsigned char data = 0x1E;
...
UART1_Write(data);
Notes 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 1 to 4.
Number of UART modules per MCU differs from chip to chip. Please, read the appropriate datasheet
before utilizing this library.