Skip to content
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

Merge network overlay functions from Ryan to Master #19

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
d376ab0
Add execution screenshots for SunneeD and test
invalid-email-address Jun 4, 2021
df0cd1d
Add files via upload
jonterry9 Jun 9, 2021
36d82b1
Delete tmp.txt
jonterry9 Jun 9, 2021
0779ec5
Add files via upload
jonterry9 Jun 9, 2021
8091322
Add remote side of packet size test
RyanFisk2 Jun 9, 2021
929b9c5
Add battery babysitter logging on write functions
invalid-email-address Jun 10, 2021
c50840b
Restructure network tests directory for clarity
invalid-email-address Jun 10, 2021
e0e1586
Finish packet size tests and add Frequency tests
RyanFisk2 Jun 10, 2021
09ba36f
Add remote_send program for the packet frequency tests
RyanFisk2 Jun 10, 2021
e4f6db0
Pull dev into Ryan to clear up repositories for Jon and I
RyanFisk2 Jun 14, 2021
1b2daa1
Add socket to sunneed overlay
RyanFisk2 Jun 18, 2021
1f23516
Fix socket and connect overlays
RyanFisk2 Jun 21, 2021
fa8813e
Fix double free issue and commit working overlay
RyanFisk2 Jun 29, 2021
c94f0a7
Add battery babysitter logging to send overlay, need to test on the pi
RyanFisk2 Jun 29, 2021
158c264
Add most recent version of network overlay
RyanFisk2 Jul 8, 2021
1e15427
Add time delay and randomize size and delay for network tests
RyanFisk2 Jul 13, 2021
cb3d227
Fix connect overlay to remove hardcoded port
RyanFisk2 Jul 15, 2021
b2d8adf
Fix battery babysitter library types and improve socket lookup
RyanFisk2 Jul 26, 2021
6ac7927
add install_dependencies script to pipeline
RyanFisk2 Jul 26, 2021
7af2984
move install_dependecies to 'Clone system' script
RyanFisk2 Jul 26, 2021
c67786f
Add this branch to pipeline triggers for debugging
RyanFisk2 Jul 26, 2021
a759551
remove sudo from install dependencies command
RyanFisk2 Jul 26, 2021
dcfacf2
give install dependencies its own task
RyanFisk2 Jul 26, 2021
44a9d3f
Clean up overlay functions and add comments for review
RyanFisk2 Jul 26, 2021
88b395e
remove sudo from install_dependencies task
RyanFisk2 Jul 26, 2021
d655ba7
add --user root option to pipeline
RyanFisk2 Jul 26, 2021
a66ebfe
remove options from pipeline, rerun with bash
RyanFisk2 Jul 26, 2021
0258bcd
fix execution of install_dependencies command
RyanFisk2 Jul 26, 2021
49672f7
add echo to install_dependencies script for debugging
RyanFisk2 Jul 26, 2021
3e3d533
edit pipeline so it will rerun
RyanFisk2 Jul 26, 2021
b0968b0
trying to run pipeline as sudo
RyanFisk2 Jul 26, 2021
f21607b
trying to run pipeline as sudo
RyanFisk2 Jul 26, 2021
e668dbe
change bash option to script now that pipeline is executing as root
RyanFisk2 Jul 26, 2021
05271a1
add sudo back to script maybe
RyanFisk2 Jul 26, 2021
005fdd4
install sudo from script to see if that fixes the command not found i…
RyanFisk2 Jul 26, 2021
17ad5e8
remove unused loop from connect
RyanFisk2 Jul 27, 2021
7cea9a0
Fix merge conflicts with master and commit into Ryan
RyanFisk2 Jul 28, 2021
f9a934b
fix conflicts from human error
invalid-email-address Jul 28, 2021
5cd222e
Fix Merge Conflicts with master and commit working result for review
RyanFisk2 Jul 28, 2021
b2fdaae
Add battery state enum to sunneed proc monitor
RyanFisk2 Aug 13, 2021
fbdc4e1
update battery states
invalid-email-address Aug 16, 2021
d526829
update submodule versions to latest
Aug 16, 2021
21e79f1
Update nng
Aug 16, 2021
6adc4aa
Update SunneeD_dev_drivers
Aug 16, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,60 @@
<<<<<<< HEAD
# Prerequisites
*.d

# Object files
*.o
*.ko
*.obj
*.elf

# Linker output
*.ilk
*.map
*.exp

# Precompiled Headers
*.gch
*.pch

# Libraries
*.lib
*.a
*.la
*.lo

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib

# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

# Debug files
*.dSYM/
*.su
*.idb
*.pdb

# Kernel Module Compile Results
*.mod*
*.cmd
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf

build/
sunneed_log.txt
=======
# Prerequisites
*.d

Expand Down Expand Up @@ -54,3 +111,4 @@ dkms.conf

build/
sunneed_log.txt
>>>>>>> c1ce9be87ee40f52cd027a965adce8ad5d136a36
24 changes: 12 additions & 12 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[submodule "ext/libbq27441"]
path = ext/libbq27441
url = https://github.com/zacharied/libbq27441.git
[submodule "ext/nng"]
path = ext/nng
url = https://github.com/nanomsg/nng.git
[submodule "test/munit"]
path = test/munit
url = https://github.com/nemequ/munit.git
[submodule "ext/SunneeD_dev_drivers"]
path = ext/SunneeD_dev_drivers
url = https://github.com/jonterry9/SunneeD_dev_drivers.git
[submodule "ext/libbq27441"]
path = ext/libbq27441
url = https://github.com/zacharied/libbq27441.git
[submodule "ext/nng"]
path = ext/nng
url = https://github.com/nanomsg/nng.git
[submodule "test/munit"]
path = test/munit
url = https://github.com/nemequ/munit.git
[submodule "ext/SunneeD_dev_drivers"]
path = ext/SunneeD_dev_drivers
url = https://github.com/jonterry9/SunneeD_dev_drivers.git
11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"files.associations": {
"sunneed_pip_interface.h": "c",
"sunneed_listener.h": "c",
"cstring": "c",
"memory": "c",
"xmemory": "c",
"xstring": "c",
"xutility": "c"
}
}
678 changes: 339 additions & 339 deletions LICENSE

Large diffs are not rendered by default.

Loading