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: MenuManager.cpp
- Revision:
- 15:d1eaddb363be
- Parent:
- 13:9641bc42db92
- Child:
- 17:731a47339cb8
--- a/MenuManager.cpp Mon Aug 11 19:13:08 2014 +0000
+++ b/MenuManager.cpp Tue Aug 12 04:25:08 2014 +0000
@@ -162,12 +162,12 @@
{
m_cLCD.setCursor(2,0);
- if (m_pModules[m_nMenuPos]->canRefresh() || !in_bRefresh) m_pModules[m_nMenuPos]->show();
+ if (m_pModules[m_nMenuPos]->canRefresh() || !in_bRefresh) m_pModules[m_nMenuPos]->show(in_bRefresh);
size_t nPos = (m_nMenuPos + 1) % m_nModules;
m_cLCD.setCursor(2,1);
- if (m_pModules[nPos]->canRefresh() || !in_bRefresh) m_pModules[nPos]->show();
+ if (m_pModules[nPos]->canRefresh() || !in_bRefresh) m_pModules[nPos]->show(in_bRefresh);
}
void MenuManager::showTracking(bool in_bShow)
