Skip to content

Commit

Permalink
Merge pull request openwsn-berkeley#314 from malishav/313-lakers_nrf5…
Browse files Browse the repository at this point in the history
…2840-example-does-not-work-with-cryptocell310

Fix the compilation target of the lakers_nrf52840 example to Cortex-M4F using hard floats
  • Loading branch information
geonnave authored Oct 28, 2024
2 parents d806f7a + 7a6d147 commit 77e06df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/lakers-nrf52840/.cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
runner = "probe-rs run --chip nRF52840_xxAA"

[build]
target = "thumbv7em-none-eabi"
target = "thumbv7em-none-eabihf"

[env]
DEFMT_LOG = "trace"
2 changes: 1 addition & 1 deletion examples/lakers-nrf52840/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cortex-m-rt = "0.7.0"
panic-probe = { version = "0.3", features = ["print-defmt"] }

[features]
default = [ "crypto-psa", "ead-none" ]
default = [ "crypto-cryptocell310", "ead-none" ]
crypto-cryptocell310 = [ "lakers-crypto/cryptocell310" ]
crypto-psa = [ "lakers-crypto/psa-baremetal" ]
ead-none = [ ]
Expand Down

0 comments on commit 77e06df

Please sign in to comment.