mirror of
https://github.com/badgeteam/mch2022-template-app.git
synced 2024-11-15 21:21:04 +00:00
Don't forget to change the buffer size to reasonable!
This commit is contained in:
parent
0eb80a94cf
commit
7eb02421b1
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ bool keyboard(xQueueHandle buttonQueue, pax_buf_t* pax_buffer, ILI9341* ili9341,
|
|||
const pax_font_t *font = pax_get_font("saira regular");
|
||||
bool accepted = false;
|
||||
pkb_ctx_t kb_ctx;
|
||||
pkb_init(pax_buffer, &kb_ctx, 32);
|
||||
pkb_init(pax_buffer, &kb_ctx, 1024);
|
||||
pkb_set_content(&kb_ctx, aOutput);
|
||||
kb_ctx.kb_font = font;
|
||||
kb_ctx.text_font = font;
|
||||
|
|
Loading…
Reference in a new issue