From f236bb49301e3e726d60e0af8f6b998083b6215e Mon Sep 17 00:00:00 2001 From: Siarhei B Date: Sun, 16 Nov 2025 01:29:53 +0100 Subject: mspm0: apply formatting for new Mathacl & example --- examples/mspm0g3507/src/bin/mathacl_ops.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples') diff --git a/examples/mspm0g3507/src/bin/mathacl_ops.rs b/examples/mspm0g3507/src/bin/mathacl_ops.rs index 429cc5ad6..06265ae18 100644 --- a/examples/mspm0g3507/src/bin/mathacl_ops.rs +++ b/examples/mspm0g3507/src/bin/mathacl_ops.rs @@ -22,12 +22,12 @@ async fn main(_spawner: Spawner) -> ! { // in range [-1,1) let angle = 0.5; match macl.sin(angle, Precision::High) { - Ok(res) => info!("sin({}) = {}", angle*180.0, res), + Ok(res) => info!("sin({}) = {}", angle * 180.0, res), Err(e) => error!("sin Error: {:?}", e), } match macl.cos(angle, Precision::Medium) { - Ok(res) => info!("cos({}) = {}", angle*180.0, res), + Ok(res) => info!("cos({}) = {}", angle * 180.0, res), Err(e) => error!("cos Error: {:?}", e), } -- cgit