summaryrefslogtreecommitdiff
path: root/nrf-softdevice-gen
diff options
context:
space:
mode:
authorTimo Kröger <timo.kroeger@hitachienergy.com>2021-12-22 12:52:51 +0100
committerTimo Kröger <timo.kroeger@hitachienergy.com>2021-12-22 12:52:51 +0100
commitf81a201211d63a994528e69b1c5a224be9b53f85 (patch)
tree8b9fde02b66d8b98359a0b3c3823c8c94d5def4a /nrf-softdevice-gen
parent6a01c4ceb7d1f1d9fc06e74e9a264037ac1159c5 (diff)
downloadnrf-softdevice-f81a201211d63a994528e69b1c5a224be9b53f85.zip
Update toolchain
Update the toolchain to match embassy. I manually replaced `asm!` with `core::arch::asm!` in bindings because regenerating them resulted in a large diff.
Diffstat (limited to 'nrf-softdevice-gen')
-rw-r--r--nrf-softdevice-gen/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/nrf-softdevice-gen/src/main.rs b/nrf-softdevice-gen/src/main.rs
index 4ee2bf0..faa8d6b 100644
--- a/nrf-softdevice-gen/src/main.rs
+++ b/nrf-softdevice-gen/src/main.rs
@@ -130,7 +130,7 @@ fn main() {
.collect::<Vec<&str>>();
writeln!(&mut res, " let ret: u32;",).unwrap();
- writeln!(&mut res, " asm!(\"svc {}\",", num).unwrap();
+ writeln!(&mut res, " core::arch::asm!(\"svc {}\",", num).unwrap();
assert!(arg_names.len() <= 4);
for r in 0..4 {