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
a0f10cdc
Commit
a0f10cdc
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
basic node info whisker
parent
edf16d43
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
config.example.toml
+7
-1
7 additions, 1 deletion
config.example.toml
src/config.rs
+3
-0
3 additions, 0 deletions
src/config.rs
src/gate.rs
+24
-0
24 additions, 0 deletions
src/gate.rs
with
34 additions
and
1 deletion
config.example.toml
+
7
−
1
View file @
a0f10cdc
...
...
@@ -11,4 +11,10 @@ max_hops = 3
latitude
=
45.0
longitude
=
-66.0
altitude
=
30
# meters
comment
=
"Check out my cool CATS beacon!"
comment
=
"Check out my cool CATS I-gate!"
# These settings DO NOT change anything about how
# the software/hardware work. It only changes data
# in the NodeInfo whisker
antenna_height
=
10
# meters above ground
antenna_gain
=
2
# dBi
tx_power
=
30
# dBm
This diff is collapsed.
Click to expand it.
src/config.rs
+
3
−
0
View file @
a0f10cdc
...
...
@@ -20,6 +20,9 @@ pub struct BeaconConfig {
pub
longitude
:
Option
<
f64
>
,
pub
altitude
:
Option
<
f64
>
,
pub
comment
:
Option
<
String
>
,
pub
antenna_height
:
Option
<
u8
>
,
pub
antenna_gain
:
Option
<
f32
>
,
pub
tx_power
:
Option
<
f32
>
,
}
#[derive(Deserialize,
Clone)]
...
...
This diff is collapsed.
Click to expand it.
src/gate.rs
+
24
−
0
View file @
a0f10cdc
...
...
@@ -9,6 +9,7 @@ use anyhow::{anyhow, Context};
use
async_stream
::
stream
;
use
half
::
f16
;
use
ham_cats
::
buffer
::
Buffer
;
use
ham_cats
::
whisker
::
NodeInfoBuilder
;
use
ham_cats
::{
packet
::
Packet
,
whisker
::{
Gps
,
Identification
,
Route
},
...
...
@@ -19,6 +20,9 @@ use tokio_stream::StreamExt;
use
tonic
::{
transport
::
Channel
,
Request
};
use
uuid
::
Uuid
;
const
HARDWARE_ID
:
u16
=
0x7c85
;
const
SOFTWARE_ID
:
u8
=
0x00
;
pub
fn
beacon_forever
(
c
:
&
Config
,
modem_send
:
mpsc
::
Sender
<
Vec
<
u8
>>
,
...
...
@@ -58,6 +62,26 @@ pub fn beacon_forever(
.map_err
(|
e
|
anyhow!
(
"Could not add gps to beacon packet: {e}"
))
?
;
}
let
mut
info_builder
=
NodeInfoBuilder
::
default
()
.hardware_id
(
HARDWARE_ID
)
.software_id
(
SOFTWARE_ID
);
if
let
Some
(
height
)
=
c
.beacon.antenna_height
{
info_builder
=
info_builder
.antenna_height
(
height
);
}
if
let
Some
(
gain
)
=
c
.beacon.antenna_gain
{
info_builder
=
info_builder
.antenna_gain
(
gain
as
f64
);
}
if
let
Some
(
power
)
=
c
.beacon.tx_power
{
info_builder
=
info_builder
.tx_power
(
power
as
f64
);
}
packet
.add_node_info
(
info_builder
.build
())
.map_err
(|
e
|
anyhow!
(
"Could not add info to beacon packet: {e}"
))
?
;
let
mut
internet_buf
=
[
0
;
MAX_PACKET_LEN
];
let
mut
internet_packet
=
packet
.clone_backing
(
&
mut
internet_buf
);
let
mut
rf_packet
=
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