From 4504b08cf8e83035f318cd3eb4e1f9ed6956e7bc Mon Sep 17 00:00:00 2001 From: LibDriver <704839379@qq.com> Date: Mon, 1 Jul 2024 11:40:41 +0800 Subject: [PATCH] fix some display errors --- CHANGELOG.md | 6 ++++ README.md | 6 ++-- README_de.md | 6 ++-- README_ja.md | 6 ++-- README_ko.md | 6 ++-- README_zh-Hans.md | 6 ++-- README_zh-Hant.md | 6 ++-- ...r__mpu9250__dmp__read__test_8c_source.html | 6 ++-- doc/html/group__mpu9250__basic__driver.html | 2 +- project/raspberrypi4b/README.md | 36 +++++++++---------- project/raspberrypi4b/src/main.c | 6 ++-- project/stm32f407/README.md | 36 +++++++++---------- project/stm32f407/usr/src/main.c | 6 ++-- src/driver_mpu9250.c | 2 +- src/driver_mpu9250.h | 2 +- test/driver_mpu9250_dmp_read_test.c | 6 ++-- 16 files changed, 75 insertions(+), 69 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 362828c..669a405 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.0.1 (2024-07-01) + +## Bug Fixes + +- fix some display errors + ## 1.0.0 (2022-08-30) ## Features diff --git a/README.md b/README.md index 6f179a3..8e33fb8 100644 --- a/README.md +++ b/README.md @@ -411,9 +411,9 @@ for (i = 0; i < times; i++) /* output */ mpu9250_interface_debug_print("mpu9250: %d/%d.\n", i + 1, times); mpu9250_interface_debug_print("mpu9250: fifo %d.\n", len); - mpu9250_interface_debug_print("mpu9250: pitch[0] is %0.2fdps.\n", gs_pitch[0]); - mpu9250_interface_debug_print("mpu9250: roll[0] is %0.2fdps.\n", gs_roll[0]); - mpu9250_interface_debug_print("mpu9250: yaw[0] is %0.2fdps.\n", gs_yaw[0]); + mpu9250_interface_debug_print("mpu9250: pitch[0] is %0.2fdeg.\n", gs_pitch[0]); + mpu9250_interface_debug_print("mpu9250: roll[0] is %0.2fdeg.\n", gs_roll[0]); + mpu9250_interface_debug_print("mpu9250: yaw[0] is %0.2fdeg.\n", gs_yaw[0]); mpu9250_interface_debug_print("mpu9250: acc x[0] is %0.2fg.\n", gs_accel_g[0][0]); mpu9250_interface_debug_print("mpu9250: acc y[0] is %0.2fg.\n", gs_accel_g[0][1]); mpu9250_interface_debug_print("mpu9250: acc z[0] is %0.2fg.\n", gs_accel_g[0][2]); diff --git a/README_de.md b/README_de.md index be0d96a..33c55ab 100644 --- a/README_de.md +++ b/README_de.md @@ -411,9 +411,9 @@ for (i = 0; i < times; i++) /* output */ mpu9250_interface_debug_print("mpu9250: %d/%d.\n", i + 1, times); mpu9250_interface_debug_print("mpu9250: fifo %d.\n", len); - mpu9250_interface_debug_print("mpu9250: pitch[0] is %0.2fdps.\n", gs_pitch[0]); - mpu9250_interface_debug_print("mpu9250: roll[0] is %0.2fdps.\n", gs_roll[0]); - mpu9250_interface_debug_print("mpu9250: yaw[0] is %0.2fdps.\n", gs_yaw[0]); + mpu9250_interface_debug_print("mpu9250: pitch[0] is %0.2fdeg.\n", gs_pitch[0]); + mpu9250_interface_debug_print("mpu9250: roll[0] is %0.2fdeg.\n", gs_roll[0]); + mpu9250_interface_debug_print("mpu9250: yaw[0] is %0.2fdeg.\n", gs_yaw[0]); mpu9250_interface_debug_print("mpu9250: acc x[0] is %0.2fg.\n", gs_accel_g[0][0]); mpu9250_interface_debug_print("mpu9250: acc y[0] is %0.2fg.\n", gs_accel_g[0][1]); mpu9250_interface_debug_print("mpu9250: acc z[0] is %0.2fg.\n", gs_accel_g[0][2]); diff --git a/README_ja.md b/README_ja.md index 172e887..7944db6 100644 --- a/README_ja.md +++ b/README_ja.md @@ -411,9 +411,9 @@ for (i = 0; i < times; i++) /* output */ mpu9250_interface_debug_print("mpu9250: %d/%d.\n", i + 1, times); mpu9250_interface_debug_print("mpu9250: fifo %d.\n", len); - mpu9250_interface_debug_print("mpu9250: pitch[0] is %0.2fdps.\n", gs_pitch[0]); - mpu9250_interface_debug_print("mpu9250: roll[0] is %0.2fdps.\n", gs_roll[0]); - mpu9250_interface_debug_print("mpu9250: yaw[0] is %0.2fdps.\n", gs_yaw[0]); + mpu9250_interface_debug_print("mpu9250: pitch[0] is %0.2fdeg.\n", gs_pitch[0]); + mpu9250_interface_debug_print("mpu9250: roll[0] is %0.2fdeg.\n", gs_roll[0]); + mpu9250_interface_debug_print("mpu9250: yaw[0] is %0.2fdeg.\n", gs_yaw[0]); mpu9250_interface_debug_print("mpu9250: acc x[0] is %0.2fg.\n", gs_accel_g[0][0]); mpu9250_interface_debug_print("mpu9250: acc y[0] is %0.2fg.\n", gs_accel_g[0][1]); mpu9250_interface_debug_print("mpu9250: acc z[0] is %0.2fg.\n", gs_accel_g[0][2]); diff --git a/README_ko.md b/README_ko.md index 59ae656..2a73694 100644 --- a/README_ko.md +++ b/README_ko.md @@ -411,9 +411,9 @@ for (i = 0; i < times; i++) /* output */ mpu9250_interface_debug_print("mpu9250: %d/%d.\n", i + 1, times); mpu9250_interface_debug_print("mpu9250: fifo %d.\n", len); - mpu9250_interface_debug_print("mpu9250: pitch[0] is %0.2fdps.\n", gs_pitch[0]); - mpu9250_interface_debug_print("mpu9250: roll[0] is %0.2fdps.\n", gs_roll[0]); - mpu9250_interface_debug_print("mpu9250: yaw[0] is %0.2fdps.\n", gs_yaw[0]); + mpu9250_interface_debug_print("mpu9250: pitch[0] is %0.2fdeg.\n", gs_pitch[0]); + mpu9250_interface_debug_print("mpu9250: roll[0] is %0.2fdeg.\n", gs_roll[0]); + mpu9250_interface_debug_print("mpu9250: yaw[0] is %0.2fdeg.\n", gs_yaw[0]); mpu9250_interface_debug_print("mpu9250: acc x[0] is %0.2fg.\n", gs_accel_g[0][0]); mpu9250_interface_debug_print("mpu9250: acc y[0] is %0.2fg.\n", gs_accel_g[0][1]); mpu9250_interface_debug_print("mpu9250: acc z[0] is %0.2fg.\n", gs_accel_g[0][2]); diff --git a/README_zh-Hans.md b/README_zh-Hans.md index e7f72b4..4f91660 100644 --- a/README_zh-Hans.md +++ b/README_zh-Hans.md @@ -411,9 +411,9 @@ for (i = 0; i < times; i++) /* output */ mpu9250_interface_debug_print("mpu9250: %d/%d.\n", i + 1, times); mpu9250_interface_debug_print("mpu9250: fifo %d.\n", len); - mpu9250_interface_debug_print("mpu9250: pitch[0] is %0.2fdps.\n", gs_pitch[0]); - mpu9250_interface_debug_print("mpu9250: roll[0] is %0.2fdps.\n", gs_roll[0]); - mpu9250_interface_debug_print("mpu9250: yaw[0] is %0.2fdps.\n", gs_yaw[0]); + mpu9250_interface_debug_print("mpu9250: pitch[0] is %0.2fdeg.\n", gs_pitch[0]); + mpu9250_interface_debug_print("mpu9250: roll[0] is %0.2fdeg.\n", gs_roll[0]); + mpu9250_interface_debug_print("mpu9250: yaw[0] is %0.2fdeg.\n", gs_yaw[0]); mpu9250_interface_debug_print("mpu9250: acc x[0] is %0.2fg.\n", gs_accel_g[0][0]); mpu9250_interface_debug_print("mpu9250: acc y[0] is %0.2fg.\n", gs_accel_g[0][1]); mpu9250_interface_debug_print("mpu9250: acc z[0] is %0.2fg.\n", gs_accel_g[0][2]); diff --git a/README_zh-Hant.md b/README_zh-Hant.md index 463427f..598af7b 100644 --- a/README_zh-Hant.md +++ b/README_zh-Hant.md @@ -405,9 +405,9 @@ for (i = 0; i < times; i++) /* output */ mpu9250_interface_debug_print("mpu9250: %d/%d.\n", i + 1, times); mpu9250_interface_debug_print("mpu9250: fifo %d.\n", len); - mpu9250_interface_debug_print("mpu9250: pitch[0] is %0.2fdps.\n", gs_pitch[0]); - mpu9250_interface_debug_print("mpu9250: roll[0] is %0.2fdps.\n", gs_roll[0]); - mpu9250_interface_debug_print("mpu9250: yaw[0] is %0.2fdps.\n", gs_yaw[0]); + mpu9250_interface_debug_print("mpu9250: pitch[0] is %0.2fdeg.\n", gs_pitch[0]); + mpu9250_interface_debug_print("mpu9250: roll[0] is %0.2fdeg.\n", gs_roll[0]); + mpu9250_interface_debug_print("mpu9250: yaw[0] is %0.2fdeg.\n", gs_yaw[0]); mpu9250_interface_debug_print("mpu9250: acc x[0] is %0.2fg.\n", gs_accel_g[0][0]); mpu9250_interface_debug_print("mpu9250: acc y[0] is %0.2fg.\n", gs_accel_g[0][1]); mpu9250_interface_debug_print("mpu9250: acc z[0] is %0.2fg.\n", gs_accel_g[0][2]); diff --git a/doc/html/driver__mpu9250__dmp__read__test_8c_source.html b/doc/html/driver__mpu9250__dmp__read__test_8c_source.html index 7cd54d9..68ba989 100644 --- a/doc/html/driver__mpu9250__dmp__read__test_8c_source.html +++ b/doc/html/driver__mpu9250__dmp__read__test_8c_source.html @@ -1377,9 +1377,9 @@
- - - + + + diff --git a/doc/html/group__mpu9250__basic__driver.html b/doc/html/group__mpu9250__basic__driver.html index 930527e..e6734e0 100644 --- a/doc/html/group__mpu9250__basic__driver.html +++ b/doc/html/group__mpu9250__basic__driver.html @@ -5916,7 +5916,7 @@