OVC Mini Network Tester and Conversion PCB#73
Open
gbalke wants to merge 40 commits intoosrf:masterfrom
Open
Conversation
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <gbalke@berkeley.edu>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
…m Ka-Ro bsp). Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Signed-off-by: Greg Balke <greg@openrobotics.org>
Contributor
Author
|
At this point, this is the entire OVC Mini project. I think it makes sense to merge this upstream as it's pretty stable (all other work is being handled on various other repositories). |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR is to bring the initial development work for OVC Mini to the main project. There are 3 projects in this dev branch:
test.pyscript and atest_server.cppfile.test.pyis a host-side script that manages the entire testing process locally and on the remote machine. It arbitrates this via an ssh connection that is established at the start of the script. It contains 2 tests,iperfand apayloadtest. Theiperftest is based oniperf3and is meant to benchmark maximum bandwidth and link stability. Thepayloadtest is meant to simulate real world performance. This test is cross-compiled foraarch64on the host machine and scp'd to the remote machine where it is run as a server. Thetest,pyscript then connects to this server and receives the "packets" the server is sending.test_server.cppis a program meant to run on the remote machine (in this case, anaarch64box). It is simply a server socket that waits for a connection. As soon as a connection is received, it begins sending packets of a fixed size at fixed intervals. The interval, duration, packet size, and port are fully configurable via CLI (test.pyconfigures these as part of the startup command).bitbakeand associated setup script don't seem to be too happy with being run from a bash script sobuildis not really working butuploadandsetup.shboth work.