Solved
Adding snprintfDouble () to touchgfx/Unicode.hpp
Dear Gfx Team,
Could you possibly add a variant of snprintf() for double please ?
In touchgfx/Unicode.hpp, there is a float version
static UnicodeChar * snprintfFloat
(
UnicodeChar * dst ,
uint16_t dstSize ,
const char * format ,
const float value
)
And for double, it would be
static UnicodeChar * snprintfDouble
(
UnicodeChar * dst ,
uint16_t dstSize ,
const char * format ,
const double value
)
Thanks.
