Instructions

251 C-Control Pro IDE
© 2013 Conrad Electronic
void DCF_SYNC(void);
Sub DCF_SYNC()
Description
Set DCF_Mode to 2 ("synchronize for frame beginning").
Parameter
None
5.8 Debug
The Debug Message Functions allow to send formatted text to the output window of the IDE. These
functions are interrupt driven with a buffer of up to 128 Byte. I. e. 128 Byte can be transferred through
the debug interface without the Mega 32 or Mega 128 Module having to wait for completion of the
output. The transmission of the individual characters takes place in the background. If it is tried to
send more than 128 Byte then the Mega RISC CPU will have to wait until all characters not fitting
into the buffer anymore have been transferred.
5.8.1 Msg_WriteChar
Debug Message Functions
Syntax
void Msg_WriteChar(char c);
Sub Msg_WriteChar(c As Char);
Description
One character is written to the output window. A C/R (Carriage Return - Value:13 ) generates a jump to the
next line (linefeed).
Parameter
c output character
5.8.2 Msg_WriteFloat
Debug Message Functions
Syntax
void Msg_WriteFloat(float val);