1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-05-04 16:09:05 +00:00

chore(nordic): add updated build DTS parameters for old devboard t3w1_d1_nrf52833

[no changelog]
This commit is contained in:
Ondrej Mikle 2025-03-11 12:49:34 +01:00
parent 9d8d4e4f21
commit e15c39bb57
2 changed files with 11 additions and 1 deletions

View File

@ -40,7 +40,6 @@ First, launch the nRF shell using the `nrfutil` toolchain manager and set the NC
```sh ```sh
nrfutil toolchain-manager launch --shell nrfutil toolchain-manager launch --shell
west init -m https://github.com/nrfconnect/sdk-nrf --mr v2.9.0 v2.9.0
``` ```
### Initialize the Workspace ### Initialize the Workspace
@ -64,6 +63,8 @@ cd trezor
west build ./trezor-ble -b t3w1_revA_nrf52832 --sysbuild west build ./trezor-ble -b t3w1_revA_nrf52832 --sysbuild
``` ```
When building for first time, add `--pristine=always` so that NCS versions and their cached files don't mix and fubar each other.
Debug builds can be built using the debug overlay configuration: Debug builds can be built using the debug overlay configuration:
Build the application for the t3w1_revA_nrf52832 board: Build the application for the t3w1_revA_nrf52832 board:

View File

@ -23,6 +23,7 @@
zephyr,flash = &flash0; zephyr,flash = &flash0;
zephyr,code-partition = &slot0_partition; zephyr,code-partition = &slot0_partition;
zephyr,ieee802154 = &ieee802154; zephyr,ieee802154 = &ieee802154;
zephyr,bt-hci = &bt_hci_controller;
}; };
leds { leds {
@ -67,6 +68,14 @@
}; };
}; };
&bt_hci_sdc {
status = "disabled";
};
&bt_hci_controller {
status = "okay";
};
&adc { &adc {
status = "okay"; status = "okay";
}; };