MCPcopy Create free account
hub / github.com/Duet3D/RepRapFirmware / SetCursor

Method SetCursor

src/Display/Lcd/Lcd.cpp:443–449  ·  view source on GitHub ↗

Set the cursor position

Source from the content-addressed store, hash-verified

441
442// Set the cursor position
443void Lcd::SetCursor(PixelNumber r, PixelNumber c) noexcept
444{
445 row = r;
446 column = c;
447 lastCharColData = 0u; // flag that we just set the cursor position, so no space before next character
448 justSetCursor = true;
449}
450
451#endif
452

Callers 6

ButtonMenuItem.cppFile · 0.80
ExitMethod · 0.80
UpdatingFirmwareMethod · 0.80
TextMenuItem.cppFile · 0.80
FilesMenuItem.cppFile · 0.80
MenuItem.cppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected