I designed a function in the external library and i wrote some comment as below because i want it can be shown as
a Documentation for user. But the comment was shown with no LF(look like document.png). How can i wrap lines as
document2.png.
**//sysTempeBaseAdrsGet//This routine returns the address of the CRG register set of the Tempe chip.//The function returns the correct address only after the Tempe chip has been configured by pciAutoConfig(). **
FUNCTION_BLOCK sysTempeBaseAdrsGet
VAR_INPUT
varIn:DINT;
END_VAR
VAR_OUTPUT
END_VAR
VAR
END_VAR
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I designed a function in the external library and i wrote some comment as below because i want it can be shown as
a Documentation for user. But the comment was shown with no LF(look like document.png). How can i wrap lines as
document2.png.
**//sysTempeBaseAdrsGet//This routine returns the address of the CRG register set of the Tempe chip.//The function returns the correct address only after the Tempe chip has been configured by pciAutoConfig(). **
FUNCTION_BLOCK sysTempeBaseAdrsGet
VAR_INPUT
varIn:DINT;
END_VAR
VAR_OUTPUT
END_VAR
VAR
END_VAR
See online help / Libraries / Guidelines / LibDev Summary / Project documentation ... for possible formatting options.
Thank you for your reply. I copied a sample of title to my library as below
//===============
// Section Title
//===============
FUNCTION_BLOCK sysTempeBaseAdrsGet
VAR_INPUT
varIn:DINT;
END_VAR
It is still shown as one line.
Apparently it is using HTML formatting now. You can try using
or
thanks a lot.
It works..