mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-03-22 11:05:43 +00:00

Enabled for debug firmware and non-frozen emulator. JSON dump can be extracted from debug log and analyzed using: $ awk '/^\[$/,/^\]$/' <debug.log >dump.json $ core/tools/analyze-memory-dump.py dump.json [no changelog]
17 lines
338 B
C
17 lines
338 B
C
#include "py/obj.h"
|
|
|
|
#include "librust_qstr.h"
|
|
|
|
#if !PYOPT
|
|
mp_obj_t protobuf_debug_msg_type();
|
|
mp_obj_t protobuf_debug_msg_def_type();
|
|
#endif
|
|
|
|
extern mp_obj_module_t mp_module_trezorproto;
|
|
extern mp_obj_module_t mp_module_trezorui_api;
|
|
extern mp_obj_module_t mp_module_trezortranslate;
|
|
|
|
#if !PYOPT
|
|
mp_obj_t ui_debug_layout_type();
|
|
#endif
|