summaryrefslogtreecommitdiff
path: root/fw/fe310/eos/eve/eve_text.h
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2020-08-05 21:31:49 +0200
committerUros Majstorovic <majstor@majstor.org>2020-08-05 21:31:49 +0200
commita35636fc4a55e6b0cfbb5772f7274ee749059836 (patch)
tree18e0d3a42ec63255586eedfd4d253f92d54ae3ae /fw/fe310/eos/eve/eve_text.h
parent3eab89296f3cfec1e8164ac0dbf80cdeda34e27c (diff)
fixed modem test example
Diffstat (limited to 'fw/fe310/eos/eve/eve_text.h')
-rw-r--r--fw/fe310/eos/eve/eve_text.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/fw/fe310/eos/eve/eve_text.h b/fw/fe310/eos/eve/eve_text.h
index 141816c..a76e659 100644
--- a/fw/fe310/eos/eve/eve_text.h
+++ b/fw/fe310/eos/eve/eve_text.h
@@ -22,7 +22,9 @@ typedef struct EVEText {
void eve_text_init(EVEText *box, EVERect *g, uint16_t w, uint16_t h, uint8_t tag, uint16_t line_size, uint32_t mem_addr, uint32_t *mem_next);
int eve_text_touch(EVEText *box, uint8_t tag0, int touch_idx);
uint8_t eve_text_draw(EVEText *box);
-int eve_text_putc(EVEText *box, int c);
+
+void eve_text_putc(EVEText *box, int c);
+void eve_text_puts(EVEText *box, char *s);
void eve_text_update(EVEText *box);
void eve_text_newline(EVEText *box);
void eve_text_backspace(EVEText *box);