One byte is send to the serial interface.
Parameter
serport interface number (0 = 1st serial port, 1 = 2nd serial port )
val
output byte value
6.15.9 Serial_WriteText
Serial Functions
Syntax
void Serial_WriteText(byte serport,char text[]);
Sub Serial_WriteText(serport As Byte,ByRef Text As Char)
Description
All characters of the char array up to the terminating zero are send to the serial interface.
Parameter
serport interface number (0 = 1st serial port, 1 = 2nd serial port )
text
char array
6.15.10 Serial Example
// string output on the serial interface
void main(void)
{
int i;
char str[10];
str="test";
i=0;
// initialize serial port with 19200baud, 8 bit, 1 stop bit, no parity
Serial_Init(0,SR_8BIT|SR_1STOP|SR_NO_PAR,SR_BD19200);
while(str[i]) Serial_Write(0,str[i++]);
}
6.15.11 Serial Example (IRQ)
// 35 byte send + receive buffer + 6 byte internal FIFO organization
byte buffer[41];
// string output to serial interface
void main(void)
{
© 2008 Conrad Electronic
// output string to serial port
// array declaration
Libraries
182
Need help?
Do you have a question about the C-Control Pro Mega Series and is the answer not in the manual?
Questions and answers