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;
|
|
|
|
|
|
2023-03-20 10:27:19 +01:00
|
|
|
const nbgl_icon_details_t* get_app_icon(bool caller_icon);
|
2024-06-25 12:59:59 +02:00
|
|
|
const nbgl_icon_details_t* get_tx_icon(void);
|
2023-03-20 10:27:19 +01:00
|
|
|
|
2023-02-21 11:01:18 +01:00
|
|
|
void ui_idle(void);
|
|
|
|
|
|
2023-03-20 10:27:19 +01:00
|
|
|
#endif // _UI_NBGL_H_
|