Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mobile-transceiver-software
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
Will Sloan
mobile-transceiver-software
Commits
014d7906
Commit
014d7906
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
basic nodeinfo support
parent
7542f30b
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
Cargo.lock
+1
-1
1 addition, 1 deletion
Cargo.lock
src/main.rs
+30
-3
30 additions, 3 deletions
src/main.rs
src/radio.rs
+7
-0
7 additions, 0 deletions
src/radio.rs
with
38 additions
and
4 deletions
Cargo.lock
+
1
−
1
View file @
014d7906
...
@@ -297,7 +297,7 @@ dependencies = [
...
@@ -297,7 +297,7 @@ dependencies = [
[[package]]
[[package]]
name = "ham-cats"
name = "ham-cats"
version = "0.1.0"
version = "0.1.0"
source = "git+https://gitlab.scd31.com/cats/ham-cats#
25ed83d5eb68cd54f438f487c37f9059cd464e87
"
source = "git+https://gitlab.scd31.com/cats/ham-cats#
b9c0f3a6bd123262454e5e56758f8a0c0db8da89
"
dependencies = [
dependencies = [
"arrayvec",
"arrayvec",
"bitvec",
"bitvec",
...
...
This diff is collapsed.
Click to expand it.
src/main.rs
+
30
−
3
View file @
014d7906
...
@@ -33,10 +33,10 @@ mod app {
...
@@ -33,10 +33,10 @@ mod app {
use
ham_cats
::{
use
ham_cats
::{
buffer
::
Buffer
,
buffer
::
Buffer
,
packet
::
Packet
,
packet
::
Packet
,
whisker
::{
Gps
,
Route
},
whisker
::{
Gps
,
NodeInfoBuilder
,
Route
},
};
};
use
stm32f4xx_hal
as
hal
;
use
stm32f4xx_hal
as
hal
;
use
systick_monotonic
::{
ExtU64
,
Systick
};
use
systick_monotonic
::{
fugit
::
Instant
,
ExtU64
,
Systick
};
use
usb_device
::
prelude
::
*
;
use
usb_device
::
prelude
::
*
;
use
crate
::{
use
crate
::{
...
@@ -54,6 +54,9 @@ mod app {
...
@@ -54,6 +54,9 @@ mod app {
const
LED_BLINK_RATE
:
u64
=
250
;
const
LED_BLINK_RATE
:
u64
=
250
;
const
HARDWARE_ID
:
u16
=
0x7c84
;
const
SOFTWARE_ID
:
u8
=
0
;
const
MODE
:
Mode
=
Mode
{
const
MODE
:
Mode
=
Mode
{
polarity
:
Polarity
::
IdleLow
,
polarity
:
Polarity
::
IdleLow
,
phase
:
Phase
::
CaptureOnFirstTransition
,
phase
:
Phase
::
CaptureOnFirstTransition
,
...
@@ -70,6 +73,7 @@ mod app {
...
@@ -70,6 +73,7 @@ mod app {
flash
:
LockedFlash
,
flash
:
LockedFlash
,
buf
:
&
'static
mut
[
u8
;
MAX_PACKET_LEN
],
buf
:
&
'static
mut
[
u8
;
MAX_PACKET_LEN
],
gps_enable
:
gpio
::
Pin
<
'C'
,
8
,
gpio
::
Output
<
gpio
::
OpenDrain
>>
,
gps_enable
:
gpio
::
Pin
<
'C'
,
8
,
gpio
::
Output
<
gpio
::
OpenDrain
>>
,
bootup_time
:
Instant
<
u64
,
1
,
{
SYS_TICK_FREQ
}
>
,
}
}
#[shared]
#[shared]
...
@@ -194,6 +198,8 @@ mod app {
...
@@ -194,6 +198,8 @@ mod app {
.device_class
(
usbd_serial
::
USB_CLASS_CDC
)
.device_class
(
usbd_serial
::
USB_CLASS_CDC
)
.build
();
.build
();
let
bootup_time
=
monotonics
::
now
();
let
shell
=
Shell
::
new
(
config
.clone
(),
usb_serial
);
let
shell
=
Shell
::
new
(
config
.clone
(),
usb_serial
);
let
buf
=
cortex_m
::
singleton!
(:
[
u8
;
MAX_PACKET_LEN
]
=
[
0
;
MAX_PACKET_LEN
])
.unwrap
();
let
buf
=
cortex_m
::
singleton!
(:
[
u8
;
MAX_PACKET_LEN
]
=
[
0
;
MAX_PACKET_LEN
])
.unwrap
();
...
@@ -239,6 +245,7 @@ mod app {
...
@@ -239,6 +245,7 @@ mod app {
flash
,
flash
,
buf
,
buf
,
gps_enable
,
gps_enable
,
bootup_time
,
},
},
init
::
Monotonics
(
Systick
::
new
(
ctx
.core.SYST
,
H_CLK
)),
init
::
Monotonics
(
Systick
::
new
(
ctx
.core.SYST
,
H_CLK
)),
)
)
...
@@ -258,7 +265,7 @@ mod app {
...
@@ -258,7 +265,7 @@ mod app {
}
}
}
}
#[task(priority
=
2
,
local
=
[
buf]
,
shared
=
[
red
,
radio
,
gps
,
config
,
status
])]
#[task(priority
=
2
,
local
=
[
buf
,
bootup_time
]
,
shared
=
[
red
,
radio
,
gps
,
config
,
status
,
volt_meter
])]
fn
transmit_position
(
mut
ctx
:
transmit_position
::
Context
)
{
fn
transmit_position
(
mut
ctx
:
transmit_position
::
Context
)
{
let
mut
config
=
ctx
.shared.config
;
let
mut
config
=
ctx
.shared.config
;
let
(
black_hole
,
transmit_period_seconds
)
=
let
(
black_hole
,
transmit_period_seconds
)
=
...
@@ -300,6 +307,26 @@ mod app {
...
@@ -300,6 +307,26 @@ mod app {
cats
.add_route
(
Route
::
new
(
config
.max_hops
))
.unwrap
();
cats
.add_route
(
Route
::
new
(
config
.max_hops
))
.unwrap
();
});
});
let
voltage
=
ctx
.shared.volt_meter
.lock
(|
vm
|
vm
.voltage
());
let
temp
=
ctx
.shared
.radio
.lock
(|
r
|
r
.as_mut
()
.unwrap
()
.get_temp
()
.unwrap
());
let
uptime_secs
=
(
monotonics
::
now
()
-
*
ctx
.local.bootup_time
)
.to_secs
()
.try_into
()
.unwrap_or
(
0
);
let
info
=
NodeInfoBuilder
::
default
()
.hardware_id
(
HARDWARE_ID
)
.software_id
(
SOFTWARE_ID
)
.uptime
(
uptime_secs
)
.voltage
(
voltage
)
.xcvr_temperature
(
temp
)
.build
();
cats
.add_node_info
(
info
)
.unwrap
();
if
let
Some
(
pos
)
=
pos
{
if
let
Some
(
pos
)
=
pos
{
cats
.add_gps
(
Gps
::
new
(
cats
.add_gps
(
Gps
::
new
(
pos
.latitude
,
pos
.latitude
,
...
...
This diff is collapsed.
Click to expand it.
src/radio.rs
+
7
−
0
View file @
014d7906
...
@@ -53,6 +53,13 @@ impl<'a> RadioManager<'a> {
...
@@ -53,6 +53,13 @@ impl<'a> RadioManager<'a> {
})
})
}
}
pub
fn
get_temp
(
&
mut
self
)
->
Option
<
i8
>
{
self
.radio
.get_temp
()
.ok
()
.map
(|
x
|
x
.clamp
(
i8
::
MIN
as
f32
,
i8
::
MAX
as
f32
)
as
i8
)
}
// call me every 20-ish ms
// call me every 20-ish ms
// technically needs to be every 100ms, tops
// technically needs to be every 100ms, tops
// digipeats only if ident is Some,
// digipeats only if ident is Some,
...
...
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