SPRINTF library
A simple implementation of sprintf using the fprintf
library. Allocates an internal buffer and writes a string according to the format to the buffer. If the string is written in succession, it is appended to the previous one.
Initialisation
SPRINTF_vInit128()
allocates a 128-byte region and initializes it.After the initialization, SPRINTF_Stream
becomes available.
Print some data by SPRINTF.
SPRINTF_vRewind()
rewinds the buffer to the beginning.Write to the internal buffer by
vfPrintf(SPRINTF_Stream, ...)
Continue with
vfPrintf(SPRINTF_Stream, ...)
will append to the previous output.
Referencing the internal buffer
The internal buffer is terminated with 0x00 '\0'
. The first address can be obtained with SPRINTF_pu8GetBuff()
. And SPRINTF_u16Length()
is used in order to get the number of characters stored in the buffer.
Sample code
最終更新