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
Revision 18:fae7e61ea160, committed 2014-08-14
- Comitter:
- vtraveller
- Date:
- Thu Aug 14 12:02:38 2014 +0000
- Parent:
- 17:731a47339cb8
- Child:
- 19:72c02acb601d
- Commit message:
- Fix for midday format issue.
Changed in this revision
| Modules/TimeModule.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- 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
