PRIu64 not wotking using libnano
Using STM32CQubeCLT 1.20's libnano:
I am trying to print an uint64_t using inttypes.h via an vsnprintf(line, sizeof(line), fmt, ap) wrapper and the sending the line via UART to a Terminal.
However, using print_wrapped("%" PRIu64"\n", (uint64_t)1) gives only an output of "lu\n".
I know that for floating point support I need to add -u _printf_float to the linker options. Is there something similar for 64bit integers? Or do I have to compile my own version of libnano?
