-
Notifications
You must be signed in to change notification settings - Fork 23
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
[dispatcher.go] Change log style of push status and unnecessary break - Part 1 of RTEA #357
base: main
Are you sure you want to change the base?
Conversation
Codecov Report
@@ Coverage Diff @@
## main #357 +/- ##
==========================================
- Coverage 49.97% 49.91% -0.07%
==========================================
Files 38 38
Lines 4608 4602 -6
==========================================
- Hits 2303 2297 -6
Misses 2123 2123
Partials 182 182
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
The |
@jwhui I had a similar problem recently exactly on the same place. I thought that this could be the problem, but what I've tried didn't work. It was failing because of an old
At this link https://golangci-lint.run/usage/install/ we can see how to fix it.
|
This commit fixes pretty issues: - Install `shfmt` by `go install mvdan.cc/sh/v3/cmd/shfmt@latest`. - Upgrade `golangci-lint` to v1.51.2
Bumps [wheel](https://github.com/pypa/wheel) from 0.34.2 to 0.38.1. - [Release notes](https://github.com/pypa/wheel/releases) - [Changelog](https://github.com/pypa/wheel/blob/main/docs/news.rst) - [Commits](pypa/wheel@0.34.2...0.38.1) --- updated-dependencies: - dependency-name: wheel dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…openthread#478) Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20201021035429-f5854403a974 to 0.7.0. - [Release notes](https://github.com/golang/net/releases) - [Commits](https://github.com/golang/net/commits/v0.7.0) --- updated-dependencies: - dependency-name: golang.org/x/net dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* upgrade python version * use setuptools==67.5.1 * use ubuntu-22.04
Bumps [openthread](https://github.com/openthread/openthread) from `d48799d` to `d2d9aff`. - [Commits](openthread/openthread@d48799d...d2d9aff) --- updated-dependencies: - dependency-name: openthread dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [openthread](https://github.com/openthread/openthread) from `d2d9aff` to `3a688cb`. - [Commits](openthread/openthread@d2d9aff...3a688cb) --- updated-dependencies: - dependency-name: openthread dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [openthread](https://github.com/openthread/openthread) from `d2d9aff` to `1f1a826`. - [Commits](openthread/openthread@d2d9aff...1f1a826) --- updated-dependencies: - dependency-name: openthread dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [openthread](https://github.com/openthread/openthread) from `1f1a826` to `fa6824c`. - [Commits](openthread/openthread@1f1a826...fa6824c) --- updated-dependencies: - dependency-name: openthread dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Contribution description
This PR is part of the process of breaking PR #235 in small steps, a process nominated "Road to Energy Analysis" (RTEA). These small modifications will lead to the whole improvement started on March 2022. At the end of these steps, OT-NS will be capable of precisely estimating energy consumption, collision events (channel aware), and plot all the data in real-time as the simulation progress.
At the moment, OT-NS can not estimate energy, collisions, nor transmission energy. Also, even though OT is working well in simulation, many of its recovery properties are not correctly simulated as they would happen in real devices due to its incorrect timing events at the simulated radio part.
Main modifications
This PR improved the readability of log messages when status push events happens in the simulator.
Another cosmetic modification is the removal of unnecessary breaks. It addresses only the following files:
Roadmap
This is part 1 of the RTEA (Road to Energy Analysis) steps to PR #235 and PR #7500.
Part 1: This PR;
Part 2: PR #8144;
Part 3: PR #359;
Part 4: PR #8152;
Part 5: PR #362;
Part 6: PR #8165;
Part 7: PR #363;
Part 8: PR #8173;
Part 9: PR #365;
Part 10: PR #366;
Part 11: PR #367.