Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: AdaFruit_RGBLCDShield MCP23017 mbed RTclock
Fork of MCP_test by
Diff: Modules/TimeModule.cpp
- Revision:
- 18:fae7e61ea160
- Parent:
- 16:9e1edf28393f
- Child:
- 28:fbcd3bac0cd7
diff -r 731a47339cb8 -r fae7e61ea160 Modules/TimeModule.cpp
--- a/Modules/TimeModule.cpp Thu Aug 14 10:47:27 2014 +0000
+++ b/Modules/TimeModule.cpp Thu Aug 14 12:02:38 2014 +0000
@@ -122,7 +122,7 @@
if (m_cRTclock.isTwelveHour())
{
pUnits = (sTM.tm_hour < 12) ? "am":"pm";
- sTM.tm_hour %= 12;
+ if (sTM.tm_hour > 12) sTM.tm_hour %= 12;
}
}
else
