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
e0bfd310
Commit
e0bfd310
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
add basic debug flag
parent
98ce64d9
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#4838
passed
1 year ago
Stage: test
Stage: build
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
config.example.toml
+1
-0
1 addition, 0 deletions
config.example.toml
src/config.rs
+2
-0
2 additions, 0 deletions
src/config.rs
src/gate.rs
+2
-1
2 additions, 1 deletion
src/gate.rs
src/main.rs
+2
-0
2 additions, 0 deletions
src/main.rs
src/util.rs
+16
-5
16 additions, 5 deletions
src/util.rs
with
23 additions
and
6 deletions
config.example.toml
+
1
−
0
View file @
e0bfd310
...
...
@@ -3,6 +3,7 @@ ssid = 0
icon
=
0
frequency
=
430_500_000
# The standard CATS frequency
enable_tx
=
true
# If false, will be an RX-only I-Gate
debug
=
false
# If true, print additional packet debug information
[felinet]
address
=
"https://felinet.cats.radio"
...
...
This diff is collapsed.
Click to expand it.
src/config.rs
+
2
−
0
View file @
e0bfd310
...
...
@@ -47,6 +47,8 @@ pub struct Config {
pub
frequency
:
u32
,
#[serde(default
=
"default_enable_tx"
)]
pub
enable_tx
:
bool
,
#[serde(default)]
pub
debug
:
bool
,
pub
felinet
:
Option
<
FelinetConfig
>
,
pub
beacon
:
BeaconConfig
,
}
...
...
This diff is collapsed.
Click to expand it.
src/gate.rs
+
2
−
1
View file @
e0bfd310
...
...
@@ -184,6 +184,7 @@ pub async fn packet_handler(
packet_send
:
mpsc
::
Sender
<
Vec
<
u8
>>
,
mut
packet_receive
:
mpsc
::
Receiver
<
(
Vec
<
u8
>
,
f64
)
>
,
uuid
:
Uuid
,
debug
:
bool
,
)
->
anyhow
::
Result
<
()
>
{
loop
{
let
(
packet
,
rssi
)
=
packet_receive
...
...
@@ -192,7 +193,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
,
rssi
)
{
if
let
Some
(
mut
packet
)
=
attempt_decode
(
&
packet
,
&
mut
buf
,
rssi
,
debug
)
{
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
)
{
...
...
This diff is collapsed.
Click to expand it.
src/main.rs
+
2
−
0
View file @
e0bfd310
...
...
@@ -143,6 +143,7 @@ async fn gate_forever(
let
packet_send
=
packet_send
.clone
();
let
ssid
=
config
.ssid
;
let
callsign
=
config
.callsign
.clone
();
let
debug
=
config
.debug
;
tokio
::
task
::
spawn
(
async
move
{
if
let
Err
(
e
)
=
packet_handler
(
...
...
@@ -152,6 +153,7 @@ async fn gate_forever(
packet_send
,
packet_receive
,
uuid
,
debug
,
)
.await
{
...
...
This diff is collapsed.
Click to expand it.
src/util.rs
+
16
−
5
View file @
e0bfd310
use
crate
::
radio
::
MAX_PACKET_LEN
;
use
anyhow
::
anyhow
;
use
colored
::{
Color
,
Colorize
};
use
ham_cats
::{
identity
::
Identity
,
...
...
@@ -126,13 +125,25 @@ 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:?}"
))
?
;
debug
:
bool
,
)
->
Option
<
Packet
<
'a
,
MAX_PACKET_LEN
>>
{
if
debug
{
eprintln!
(
"Attempt decode with len: {}"
,
packet
.len
());
}
let
packet
:
Packet
<
MAX_PACKET_LEN
>
=
match
Packet
::
fully_decode
(
packet
,
buf
)
{
Ok
(
x
)
=>
x
,
Err
(
e
)
=>
{
if
debug
{
eprintln!
(
"Could not decode packet: {e}"
);
}
return
None
;
}
};
print_packet
(
&
packet
,
Some
(
rssi
));
Ok
(
packet
)
Some
(
packet
)
}
// i-gating is kind of weird.
...
...
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