Hi,
There is a bug with strftime with the Mbed OS 6.
If i run :
char buffer[32];
strftime(buffer, 32, “%FT%H:%M:00.000Z”, localtime(&t));
I get a string with this format
2021-1-12T13:3:00.000Z
And it should actually return
2021-01-12T13:03:00.000Z
With the same code and Mbed OS 5, I don’t have this issue.
Any ideas?