Roman Zeyde
339389637c
docs(core): update index.md
...
[no changelog]
2025-02-01 18:53:00 +02:00
Roman Zeyde
9d1d06218c
test: allow dumping protocol packets via -vvv
...
[no changelog]
2025-01-31 11:07:17 +01:00
tychovrahe
64d8c18865
fix(core): adjust T3W1 display refresh rate
...
[no changelog]
2025-01-31 10:04:26 +01:00
tychovrahe
06a722cc74
fix(core): fix boot screen background color when showing no-warning vendor info
...
[no changelog]
2025-01-31 10:04:06 +01:00
cepetr
2eb1e5b3ca
feat(prodtest): refactor and improve prodtest
2025-01-31 08:15:20 +01:00
Roman Zeyde
2a19b35f3e
build(core): export Rust functions' stack sizes
...
It is useful to find the top-most stack consuming functions:
```
$ make build_firmware
$ arm-none-eabi-size -A build/firmware/firmware.elf | grep .stack_sizes
.stack_sizes 7523 0
$ cargo install stack-sizes@0.4.0
$ stack-sizes build/firmware/firmware.elf | grep trezor_lib | sort -k2 -n | tail -n10
0x081c1721 3536 trezor_lib::ui::api::firmware_micropython::new_confirm_properties::h2ab0feebaf154486
0x081c0e7d 3560 trezor_lib::ui::api::firmware_micropython::new_confirm_modify_output::h04465b97d57fafb6
0x081c6161 3688 trezor_lib::ui::api::firmware_micropython::new_show_checklist::he16b109bc4dff398
0x081c4089 4240 trezor_lib::ui::api::firmware_micropython::new_request_pin::h3280c5eff8900a22
0x081be3e1 4960 trezor_lib::ui::api::firmware_micropython::new_confirm_action::h860f874d714ace74
0x081bf545 5096 trezor_lib::ui::api::firmware_micropython::new_confirm_emphasized::h9ade56f5c88001c0
0x081c1ded 5736 trezor_lib::ui::api::firmware_micropython::new_confirm_summary::he2e1274bbc07703e
0x081c7ee9 6760 trezor_lib::ui::api::firmware_micropython::new_show_remaining_shares::h1f67cbfdfeb4c683
0x081c127d 6768 trezor_lib::ui::api::firmware_micropython::new_confirm_more::h107a4be9b5431bb4
0x081c5441 8312 trezor_lib::ui::api::firmware_micropython::new_show_address_details::h352e0b87c58914ce
```
[no changelog]
2025-01-31 06:28:15 +01:00
Roman Zeyde
a75a9f29d8
ci: fix JSONDecodeError when combining .coverage.gw*
files
...
For example: https://github.com/trezor/trezor-firmware/actions/runs/12976369614/job/36188913357
Single `.coverage` files were renamed, but `make test_emu_ui_multicore` generates
multiple `.coverage.gw*` files, which may overwrite each other in case there are
multiple similar CI jobs (e.g. when translation-related jobs are enabled).
[no changelog]
2025-01-30 14:44:23 +01:00
cepetr
5adb8ef997
refactor(core): rename memory_area to applet_memory
...
[no changelog]
2025-01-30 14:07:25 +01:00
cepetr
f99030938e
feat(core): reset peripherals during handovers
...
[no changelog]
2025-01-30 14:07:25 +01:00
cepetr
236c377e20
refactor(core): remove unused linker script symbols
...
[no changelog]
2025-01-30 14:07:25 +01:00
cepetr
6719eeb376
refactor(core): simplify shutdown/handover code
...
[no changelog]
2025-01-30 14:07:25 +01:00
cepetr
2697c06642
refactor(core): rewrite rescue code in C
...
[no changelog]
2025-01-30 14:07:25 +01:00
cepetr
95afa34f27
refactor(core): rewrite startup code in C
...
[no changelog]
2025-01-30 14:07:25 +01:00
cepetr
70c577b67b
refactor(core): add new linker scripts consts for memory cleanup
...
[no changelog]
2025-01-30 14:07:25 +01:00
cepetr
7613fe310a
refactor(core): rename linker script section constants
...
[no changelog]
2025-01-30 14:07:25 +01:00
cepetr
2671404e44
refactor(core): rename stack related linker script symbols
...
[no changelog]
2025-01-30 14:07:25 +01:00
cepetr
bdb3d486e3
refactor(core): rename jump_to function
...
[no changelog]
2025-01-30 14:07:25 +01:00
cepetr
2ecf335349
refactor(core): use memset_reg in asm code only
...
[no changelog]
2025-01-30 14:07:25 +01:00
cepetr
c30233b832
refactor(core): stop using shutdown_privileged directly
...
[no changelog]
2025-01-30 14:07:25 +01:00
cepetr
d8e7dc8cd9
chore(core): remove unused secure_shutdown syscall
...
[no changelog]
2025-01-30 14:07:25 +01:00
Roman Zeyde
a7d7907efd
chore: update translated UI fixtures
...
[no changelog]
2025-01-30 13:26:22 +01:00
tychovrahe
d9c547c590
fix(core): calculate image hash including padding between header and code
...
[no changelog]
2025-01-29 16:56:11 +01:00
tychovrahe
b75c0a844d
feat(core): set haptic actuator for T3W1
...
[no changelog]
2025-01-29 16:55:56 +01:00
tychovrahe
4ad326aa73
chore(core): add support for T3W1 revB
...
[no changelog]
2025-01-29 16:55:56 +01:00
tychovrahe
7f53b34b8e
feat(core): introduce RGB LED driver with low power TIM
...
[no changelog]
2025-01-29 16:55:56 +01:00
Roman Zeyde
c713ce23e9
fix(legacy): fix a minor typo in a warning message
...
[no changelog]
2025-01-29 11:51:41 +02:00
tychovrahe
671c3e2a65
fix(core): unify size of enums between rust and C
...
[no changelog]
2025-01-29 09:10:35 +01:00
tychovrahe
399aa4f2ea
fix(core): adjust jpeg cache size to allow work on larger displays
...
[no changelog]
2025-01-29 09:10:10 +01:00
Ondřej Vejpustek
5f1dd83ac2
chore: update fixtures
2025-01-28 14:22:13 +01:00
Ondřej Vejpustek
82da663a86
feat(core): remove deprecated path
2025-01-28 14:22:13 +01:00
Ondřej Vejpustek
54c0a30e08
fix(legacy): disallow using per-node paths
2025-01-28 14:22:13 +01:00
Ondřej Vejpustek
2f104ea1fe
feat(legacy): support sortedmulti
2025-01-28 14:22:13 +01:00
Ondřej Vejpustek
0e8c1312bf
feat(legacy): forbid multisig to singlesig change outputs
2025-01-28 14:22:13 +01:00
Ondřej Vejpustek
15fee9e146
refactor(legacy): introduce cryptoMultisigPubkeys
2025-01-28 14:22:13 +01:00
Roman Zeyde
5cdd0e7e74
feat(python): check that translations are using correct layout names
...
[no changelog]
2025-01-28 15:18:12 +02:00
tomasklim
78768950fd
chore(core): use label for evm networks generation
2025-01-28 14:17:46 +01:00
tomasklim
711c19173c
chore(common): add ARB, BASE and OP evm networks
2025-01-28 14:17:46 +01:00
tomasklim
64341bcb66
chore(common): change BNB to BSC and MATIC to POL
2025-01-28 14:17:46 +01:00
tomasklim
9e8c2f908f
chore(common): add symbol (native symbol shortcut) to evm networks
2025-01-28 14:17:46 +01:00
tomasklim
30d1213421
chore(common): update XRP, TXRP, ADA, DSOL backend urls
2025-01-28 14:17:46 +01:00
Roman Zeyde
96ac4e263c
refactor(core): reduce ui::layout_delizia::component::header::Header
size
...
[no changelog]
2025-01-28 14:21:43 +02:00
Roman Zeyde
830f038360
build(core): allow printing Rust types' sizes during build
...
https://nnethercote.github.io/perf-book/type-sizes.html#measuring-type-sizes
[no changelog]
2025-01-28 14:21:43 +02:00
Roman Zeyde
5e71ea355c
chore(core): remove unused scons variable
...
Following #4337 .
[no changelog]
2025-01-28 14:21:43 +02:00
Martin Milata
7c06363fea
chore(core/prodtest): bump version to 0.2.13
...
[no changelog]
2025-01-28 12:27:05 +01:00
Martin Milata
b0e39dbe6f
chore(core): bump version to 2.8.8
...
[no changelog]
2025-01-28 12:27:05 +01:00
vdovhanych
c4289ea1d2
ci: create emualtor release workflow for release versions
2025-01-28 11:51:34 +01:00
Roman Zeyde
2aca680eda
style: add make changelog_style
for automatic changelog formatting
...
Added also to `make style`.
[no changelog]
2025-01-28 12:10:33 +02:00
Pavol Rusnak
a566f122e7
chore(python): bump pillow dependency
...
[no changelog]
2025-01-28 09:52:56 +01:00
obrusvit
15967a312b
fix(core): explicitly delete keyboard layout
...
- seems that keyboard LayoutObj was not properly deallocated resulting
in MemoryError. Fix by calling the dunder `del` method explicitly fixes
the issue
- the problem was on Model T (Bolt), but applying it for all layouts to
prevent similar problem
2025-01-27 23:43:33 +01:00
Roman Zeyde
71306d0904
build: update editorconfig-checker
to 2.7.2
...
It should help to resolve spurious `unrecognized charset IBM420_rtl` warnings:
https://github.com/editorconfig-checker/editorconfig-checker/issues/252
2025-01-27 13:07:53 +02:00