Outputs to the destination (UART) indicated by the tsFILE structure using the printf format.
| Type | None | Remark |
|---|---|---|
| tsFILE* | psStream | Destination |
| const char * | pcFormat | Format string |
| … | variable arguments |
| s | string |
|---|---|
| d | integer (upto 32bits) |
| u | unsigned integer(upto 32bits) |
| x | Hexadecimal numbers. a-f are lower case. |
| X | Hexadecimal numbers, A-F in upper case. |
| b | 0/1 binary |
None