mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
Zero pad years < 1000 to four digits.
This commit is contained in:
parent
b8ee19f8e6
commit
d8c59e2ce2
@ -158,7 +158,7 @@ static std::string format_latlon_normalized(const int32_t normalized) {
|
||||
static std::string format_datetime(
|
||||
const DateTime& datetime
|
||||
) {
|
||||
return ui::to_string_dec_uint(datetime.year, 4) + "/" +
|
||||
return ui::to_string_dec_uint(datetime.year, 4, '0') + "/" +
|
||||
ui::to_string_dec_uint(datetime.month, 2, '0') + "/" +
|
||||
ui::to_string_dec_uint(datetime.day, 2, '0') + " " +
|
||||
ui::to_string_dec_uint(datetime.hour, 2, '0') + ":" +
|
||||
|
@ -50,7 +50,7 @@ ManchesterFormatted TPMSModel::on_packet(const TPMSPacketMessage& message) {
|
||||
rtc::RTC datetime;
|
||||
rtcGetTime(&RTCD1, &datetime);
|
||||
std::string timestamp =
|
||||
ui::to_string_dec_uint(datetime.year(), 4) +
|
||||
ui::to_string_dec_uint(datetime.year(), 4, '0') +
|
||||
ui::to_string_dec_uint(datetime.month(), 2, '0') +
|
||||
ui::to_string_dec_uint(datetime.day(), 2, '0') +
|
||||
ui::to_string_dec_uint(datetime.hour(), 2, '0') +
|
||||
|
Loading…
Reference in New Issue
Block a user