diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-04-11 20:49:32 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-04-11 20:49:32 -0400 |
commit | 8e11f269ce352df26af7c44d283131494dcd70fa (patch) | |
tree | be0cbdfb115c0ec9f334b9dd9476d2a59ef3a93a /include/display_draw.h | |
parent | 0726b60a6e32760fbadd1cdd39362c9c7a0fd9cc (diff) |
status bar, arrow keys, ins/del
Diffstat (limited to 'include/display_draw.h')
-rw-r--r-- | include/display_draw.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/display_draw.h b/include/display_draw.h index 8db3e2c..1057a1c 100644 --- a/include/display_draw.h +++ b/include/display_draw.h @@ -63,6 +63,11 @@ void dsp_rect(int x, int y, int w, int h, uint16_t color); */ void dsp_cpos(int x, int y); +/* + * Shifts the cursor the given amount of characters. + */ +void dsp_spos(int x, int y); + /** * Sets the pixel offset of the text cursor. * @param x x-pixel offset from (0, 0) |