lcd_cursor

Sets cursor form.

void lcd_cursor (
  uint8_t mode   /* Cursor form */
);

Arguments

mode
Specifies the cursor form listed below. When the current cursor position is out of the display area, the cursor is always hidden regardless of this setting.
ValueDescription
CSR_OFFHide cursor. (default)
CSR_UNDERDisplay underline cursor.
CSR_BLOCKDisplay blinking block cursor.

QuickInfo

Available when _USE_CURSOR == 1.

Return