mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2026-08-19 14:14:04 +00:00
Zero pad years < 1000 to four digits.
This commit is contained in:
@@ -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') +
|
||||
|
||||
Reference in New Issue
Block a user