-
Notifications
You must be signed in to change notification settings - Fork 6
fix(test): add teat_autoware module (imu_corrector) #687
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
nokosaaan
wants to merge
50
commits into
main
Choose a base branch
from
imu_corrector
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
4b34c9a
add: test_autoware
nokosaaan dda7c64
fix: perf features and test_dag for sending period info
nokosaaan 29e5173
fix: feature devision for test_autoware 1
nokosaaan 9cabca9
fix: comment alignment 1
nokosaaan 9832297
fix: module separation 1
nokosaaan 9bac530
fix: revert schedtype and toml
nokosaaan 47de021
add: saveing implementation msg with period
nokosaaan efb1f02
fix: delete kernel dependics
nokosaaan b1b921b
fix: no period with test_autoware
nokosaaan 1b18749
fix: reduce impl for get_period with macro
nokosaaan 3c112f9
fix: reset test_dag
nokosaaan 1cfa9ed
fix: delete unnecessary comments
nokosaaan 5b5bcaf
Merge branch 'main' of https://github.com/tier4/awkernel into mrm_dev2
nokosaaan 4e8a8c3
fix: delete warnings 1
nokosaaan 60d50db
fix: delete warnings 2
nokosaaan 028ca6a
Merge branch 'main' of https://github.com/tier4/awkernel into mrm_dev2
nokosaaan f6e2fcf
Merge branch 'main' of https://github.com/tier4/awkernel into mrm_dev2
nokosaaan b75b75c
Merge branch 'mrm_dev2' of https://github.com/tier4/awkernel into mrm…
nokosaaan 48f29f1
fix: delete warnings 3
nokosaaan aed1c5c
fix: sync bootloader-fix
nokosaaan f024138
sync bootloader-fix 2
nokosaaan 78081ab
fix: add need-get-period
nokosaaan bbe0c3f
fix: add line break in test_autoware
nokosaaan b0fd3d8
fix: add line break in test_autoware 2
nokosaaan 8adae56
fix: add line break in pubsub.rs
nokosaaan 3be51e3
Merge main branch
nokosaaan ce34977
fix: revert userland/Cargo.toml
nokosaaan 5bc111c
Merge branch 'main' of https://github.com/tier4/awkernel into mrm_dev2
nokosaaan 98f9ba9
feat: add test_autoware and apply test code into vehicle_velocity_con…
nokosaaan a4ebd89
fix: imu_driver test case based on tamagawa_imu_driver
nokosaaan 9be0e73
fix: revert dag.rs from main branch
nokosaaan 762e45d
fix: revert dag.rs, pubsub.rs, task.rs, time_interval.rs and apply ca…
nokosaaan bfd8970
fix: add test_autoware/src/lib.rs
nokosaaan ea58e98
fix: apply cargo fmt 2
nokosaaan 2b2e9c2
fix: apply cargo fmt 3
nokosaaan 6e58978
Update applications/tests/test_autoware/imu_driver/src/lib.rs
nokosaaan bc9d7f0
Update applications/tests/test_autoware/Cargo.toml
nokosaaan 18d7be9
fix(imu_driver): validate full $TSC,BIN header in parser
Copilot 8024ba1
test(imu_driver): simplify invalid header test setup
Copilot 13612d5
fix: delete frame id mismatch
nokosaaan f82b530
Merge branch 'imu-vehicle' of https://github.com/tier4/awkernel into …
nokosaaan 847cc12
fix: apply cargo fmt 2
nokosaaan 73da1c5
fix: modify userland for test_autoware
nokosaaan d58e6a3
add: imu_corrector with test case
nokosaaan 8c9fd5d
Merge branch 'main' of https://github.com/tier4/awkernel into imu_cor…
nokosaaan 1b97cf0
fix: delete dependics on imu_corrector to satisfy simple test
nokosaaan 11537c0
fix: apply copilot comment 1
nokosaaan 6d82977
fix: apply copilot comment 2
nokosaaan 3c2f6c0
fix: apply cargo fmt 4
nokosaaan 85f26ac
Update applications/tests/test_autoware/imu_corrector/src/lib.rs
nokosaaan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| [package] | ||
| name = "test_autoware" | ||
| version = "0.1.0" | ||
| edition = "2021" | ||
|
|
||
| [lib] | ||
| path = "src/lib.rs" | ||
| crate-type = ["rlib"] | ||
|
|
||
| [dependencies] | ||
| log = "0.4" | ||
| libm = "0.2" | ||
| csv-core = "0.1" | ||
| awkernel_async_lib = { path = "../../../awkernel_async_lib", default-features = false } | ||
| awkernel_lib = { path = "../../../awkernel_lib", default-features = false } | ||
| imu_driver = { path = "./imu_driver", default-features = false } | ||
| imu_corrector = { path = "./imu_corrector", default-features = false } | ||
| vehicle_velocity_converter = { path = "./vehicle_velocity_converter", default-features = false } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| [package] | ||
| name = "imu_corrector" | ||
| version = "0.1.0" | ||
| edition = "2021" | ||
|
|
||
| [dependencies] | ||
| nalgebra = { version = "0.32", default-features = false, features = ["libm"] } | ||
| imu_driver = { path = "../imu_driver", default-features = false } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.