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.
interactive_state.cpp
00001 #include "system_states.hpp" 00002 #include "system.hpp" 00003 #include "display_manager.hpp" 00004 00005 void InteractiveState::updateText() const { 00006 DisplayManager *display = system()->display(); 00007 display->hideCursor(); 00008 display->writeText(system()->text()); 00009 00010 updateCursor(); 00011 } 00012 00013 void InteractiveState::updateCursor() const { 00014 DisplayManager *display = system()->display(); 00015 display->moveTo(system()->cursor()); 00016 display->showCursor(); 00017 }
Generated on Wed Jul 13 2022 16:23:43 by
1.7.2