Files

19 lines
410 B
C
Raw Permalink Normal View History

2023-02-21 11:01:18 +01:00
#ifndef _UI_NBGL_H_
#define _UI_NBGL_H_
#include <nbgl_use_case.h>
#include <nbgl_page.h>
#include <shared_context.h>
#define SHARED_BUFFER_SIZE SHARED_CTX_FIELD_1_SIZE
2023-07-06 16:02:40 +02:00
extern char g_stax_shared_buffer[SHARED_BUFFER_SIZE];
2023-02-21 11:01:18 +01:00
extern nbgl_page_t* pageContext;
const nbgl_icon_details_t* get_app_icon(bool caller_icon);
const nbgl_icon_details_t* get_tx_icon(void);
2023-02-21 11:01:18 +01:00
void ui_idle(void);
#endif // _UI_NBGL_H_