Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Igate
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CATS
Igate
Commits
93195842
Commit
93195842
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
fix bug where NET was being added onto rf gated beacon packets
parent
16d144c1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/gate.rs
+15
-6
15 additions, 6 deletions
src/gate.rs
with
15 additions
and
6 deletions
src/gate.rs
+
15
−
6
View file @
93195842
...
...
@@ -57,17 +57,26 @@ pub fn beacon_forever(
if
let
Some
(
c
)
=
&
c
.beacon.comment
{
packet
.add_comment
(
c
)
.map_err
(|
e
|
anyhow!
(
"Could not add gps to
comment
packet: {e}"
))
?
;
.map_err
(|
e
|
anyhow!
(
"Could not add gps to
beacon
packet: {e}"
))
?
;
}
let
mut
internet_packet
=
packet
.clone
();
let
mut
rf_packet
=
packet
;
// internet route
let
mut
r
=
Route
::
new
(
c
.beacon.max_hops
);
// TODO - we shouldn't be adding an internet route when gating to RF in this case
r
.push_internet
()
.context
(
"Could not create beacon route"
)
?
;
packet
internet_packet
.add_route
(
r
)
.map_err
(|
e
|
anyhow!
(
"Could not add route to beacon packet: {e}"
))
?
;
// rf route
let
r
=
Route
::
new
(
c
.beacon.max_hops
);
rf_packet
.add_route
(
r
)
.map_err
(|
e
|
anyhow!
(
"Could not add route to
comment
packet: {e}"
))
?
;
.map_err
(|
e
|
anyhow!
(
"Could not add route to
beacon
packet: {e}"
))
?
;
let
semi
=
packet
let
semi
=
internet_
packet
.clone
()
.semi_encode
()
.map_err
(|(
e
,
_
)|
anyhow!
(
"Could not encode beacon packet: {e}"
))
?
...
...
@@ -77,7 +86,7 @@ pub fn beacon_forever(
uuid
:
uuid
.into
(),
};
let
full
=
packet
let
full
=
rf_
packet
.fully_encode
()
.map_err
(|
e
|
anyhow!
(
"Could not encode beacon packet: {e}"
))
?
.to_vec
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment