I'm displaying a 32bit timer value on my putty-console. The timer includes the time in microseconds since startup of my stm32wb55. With following code, it works exaclty like I want:
uint32_t time_micro32
sprintf((char*)buf,
"Time: %lu \r\n",
(time_micro32));
But now, I want to display the time in 64bit resolution with uint64_t time_micro64
. I tried many, but nothing works. Can anybody help me, please? I´m programming in STM32CubeIDE