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
bbf5eb79
Commit
bbf5eb79
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
print rssi
parent
82bc3c41
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/gate.rs
+2
-2
2 additions, 2 deletions
src/gate.rs
src/util.rs
+19
-10
19 additions, 10 deletions
src/util.rs
with
21 additions
and
12 deletions
src/gate.rs
+
2
−
2
View file @
bbf5eb79
...
...
@@ -119,7 +119,7 @@ pub async fn packet_handler(
.context
(
"Packet receive channel died"
)
?
;
let
mut
buf
=
[
0
;
MAX_PACKET_LEN
];
if
let
Ok
(
mut
packet
)
=
attempt_decode
(
&
packet
,
&
mut
buf
)
{
if
let
Ok
(
mut
packet
)
=
attempt_decode
(
&
packet
,
&
mut
buf
,
rssi
)
{
let
mut
buf2
=
[
0
;
MAX_PACKET_LEN
];
let
mut
internet_packet
=
packet
.clone_backing
(
&
mut
buf2
);
match
append_internet_to_packet_route
(
&
callsign
,
ssid
,
rssi
,
&
mut
internet_packet
)
{
...
...
@@ -250,7 +250,7 @@ pub async fn felinet_receive_once(
.and_then
(|
_
|
Packet
::
semi_decode
(
buf
)
.ok
())
{
if
pkt
.should_digipeat
(
callsign
,
ssid
)
.is_ok
()
{
print_packet
(
&
pkt
,
fals
e
);
print_packet
(
&
pkt
,
Non
e
);
let
mut
buf2
=
[
0
;
MAX_PACKET_LEN
];
let
mut
data
=
Buffer
::
new_empty
(
&
mut
buf2
);
...
...
This diff is collapsed.
Click to expand it.
src/util.rs
+
19
−
10
View file @
bbf5eb79
...
...
@@ -6,15 +6,20 @@ use ham_cats::{
whisker
::{
Route
,
RouteIdentity
,
RouteNode
},
};
pub
fn
print_packet
(
pkt
:
&
Packet
<
MAX_PACKET_LEN
>
,
is_rf
:
bool
)
{
let
color
=
if
is_rf
{
println!
(
"----- RF -----"
);
pub
fn
print_packet
(
pkt
:
&
Packet
<
MAX_PACKET_LEN
>
,
rssi
:
Option
<
f64
>
)
{
println!
();
Color
::
Green
}
else
{
println!
(
"--- FELINET ---"
);
let
color
=
match
rssi
{
Some
(
rssi
)
=>
{
println!
(
"----- RF [{rssi} dBm] -----"
);
Color
::
Green
}
None
=>
{
println!
(
"--- FELINET ---"
);
Color
::
Magenta
Color
::
Magenta
}
};
if
let
Some
(
ident
)
=
pkt
.identification
()
{
...
...
@@ -35,7 +40,11 @@ pub fn print_packet(pkt: &Packet<MAX_PACKET_LEN>, is_rf: bool) {
let
s
=
if
ident
.is_future
()
{
"*"
}
else
{
""
};
let
rc
=
ident
.callsign
();
let
rs
=
ident
.ssid
();
format!
(
"{rc}-{rs}{s}"
)
let
rssi
=
match
ident
.rssi
()
{
Some
(
x
)
=>
format!
(
"[{x:.1} dbm]"
),
None
=>
""
.to_string
(),
};
format!
(
"{rc}-{rs}{s} {rssi}"
)
}
})
.collect
::
<
Vec
<
String
>>
()
...
...
@@ -62,17 +71,17 @@ pub fn print_packet(pkt: &Packet<MAX_PACKET_LEN>, is_rf: bool) {
gps
.heading
()
);
}
println!
();
}
pub
fn
attempt_decode
<
'a
>
(
packet
:
&
[
u8
],
buf
:
&
'a
mut
[
u8
;
MAX_PACKET_LEN
],
rssi
:
f64
,
)
->
anyhow
::
Result
<
Packet
<
'a
,
MAX_PACKET_LEN
>>
{
let
packet
:
Packet
<
MAX_PACKET_LEN
>
=
Packet
::
fully_decode
(
packet
,
buf
)
.map_err
(|
e
|
anyhow!
(
"Could not decode packet: {e:?}"
))
?
;
print_packet
(
&
packet
,
true
);
print_packet
(
&
packet
,
Some
(
rssi
)
);
Ok
(
packet
)
}
...
...
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