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
a737c75c
Commit
a737c75c
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
bug fixes
parent
86bef4a1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.cargo/config.toml
+1
-0
1 addition, 0 deletions
.cargo/config.toml
Cargo.lock
+1
-1
1 addition, 1 deletion
Cargo.lock
README.md
+1
-0
1 addition, 0 deletions
README.md
src/main.rs
+8
-10
8 additions, 10 deletions
src/main.rs
src/radio.rs
+24
-13
24 additions, 13 deletions
src/radio.rs
with
35 additions
and
24 deletions
.cargo/config.toml
+
1
−
0
View file @
a737c75c
[target.thumbv7em-none-eabihf]
rustflags
=
[
"-C"
,
"link-arg
=
-Tlink.x
",
"-C"
,
"linker
=
flip-link
",
]
[build]
...
...
This diff is collapsed.
Click to expand it.
Cargo.lock
+
1
−
1
View file @
a737c75c
...
...
@@ -306,7 +306,7 @@ dependencies = [
[[package]]
name = "ham-cats"
version = "0.1.0"
source = "git+https://gitlab.scd31.com/cats/ham-cats/#
d32d0a72f3e5633a25cc6495b2fe7daed139fc84
"
source = "git+https://gitlab.scd31.com/cats/ham-cats/#
97ff918c4e3aaa6e15dadbaa1ab9c12b1fdb5655
"
dependencies = [
"arrayvec",
"bitvec",
...
...
This diff is collapsed.
Click to expand it.
README.md
+
1
−
0
View file @
a737c75c
...
...
@@ -64,6 +64,7 @@ git clone https://gitlab.scd31.com/cats/mobile-transceiver-software
cd
mobile-transceiver-software
git pull
# make sure we're up to date
rustup target add thumbv7em-none-eabihf
# add our board architecture, if needed
cargo
install
flip-link
# needed for building
cargo
install
cargo-dfu
# needed for flashing
```
...
...
This diff is collapsed.
Click to expand it.
src/main.rs
+
8
−
10
View file @
a737c75c
...
...
@@ -28,6 +28,7 @@ mod app {
};
use
half
::
f16
;
use
ham_cats
::{
buffer
::
Buffer
,
packet
::
Packet
,
whisker
::{
Gps
,
Route
},
};
...
...
@@ -263,7 +264,8 @@ mod app {
};
if
should_transmit
{
let
mut
cats
:
Packet
<
MAX_PACKET_LEN
>
=
Packet
::
default
();
let
mut
buf
=
[
0
;
MAX_PACKET_LEN
];
let
mut
cats
=
Packet
::
new
(
&
mut
buf
);
config
.lock
(|
config
|
{
cats
.add_identification
(
ham_cats
::
whisker
::
Identification
{
...
...
@@ -292,18 +294,14 @@ mod app {
.unwrap
();
}
let
x
=
cats
.fully_encode
()
.unwrap
();
let
buf
=
ctx
.local.buf
;
buf
[
..
x
.len
()]
.copy_from_slice
(
&
x
);
let
tx_buf
=
&
buf
[
..
x
.len
()];
let
mut
x
=
Buffer
::
new_empty
(
buf
);
cats
.fully_encode
(
&
mut
x
)
.unwrap
();
ctx
.shared.radio
.lock
(|
radio
|
{
radio
.as_mut
()
(
ctx
.shared.radio
,
config
)
.lock
(|
r
,
c
|
{
r
.as_mut
()
.unwrap
()
.tx
(
&
mut
ctx
.shared.red
,
tx_buf
)
.tx
(
&
mut
ctx
.shared.red
,
&
x
,
Some
((
&
c
.callsign
,
c
.ssid
))
)
.unwrap
();
});
}
...
...
This diff is collapsed.
Click to expand it.
src/radio.rs
+
24
−
13
View file @
a737c75c
use
ham_cats
::{
buffer
::
Buffer
,
packet
::
Packet
,
whisker
::{
Route
,
RouteNode
},
};
...
...
@@ -20,7 +21,7 @@ type MyDelay = Delay<TIM5, 1000000>;
type
Radio
=
Rf4463
<
Spi
<
SPI1
>
,
SdnPin
,
CsPin
,
MyDelay
>
;
pub
struct
RadioManager
<
'a
>
{
radio
:
Radio
,
pub
radio
:
Radio
,
buf
:
&
'a
mut
[
u8
;
MAX_PACKET_LEN
],
enable_digipeating
:
bool
,
}
...
...
@@ -39,8 +40,7 @@ impl<'a> RadioManager<'a> {
// sets us up for the default CATS frequency, 430.500 MHz
radio
.set_channel
(
20
);
// perpetual mode
radio
.start_rx
(
None
,
true
)
.ok
()
?
;
radio
.start_rx
(
None
,
false
)
.ok
()
?
;
Some
(
Self
{
radio
,
...
...
@@ -51,6 +51,8 @@ impl<'a> RadioManager<'a> {
// call me every 20-ish ms
// technically needs to be every 100ms, tops
// digipeats only if ident is Some,
// otherwise the packet is discarded
pub
fn
tick
<
P
:
OutputPin
,
M
:
Mutex
<
T
=
P
>>
(
&
mut
self
,
led
:
&
mut
M
,
...
...
@@ -58,7 +60,7 @@ impl<'a> RadioManager<'a> {
)
->
Result
<
(),
TransferError
<
spi
::
Error
>>
{
if
self
.radio
.is_idle
()
{
self
.radio
.start_rx
(
None
,
tru
e
)
.start_rx
(
None
,
fals
e
)
.map_err
(
TransferError
::
SpiError
)
?
;
}
...
...
@@ -67,25 +69,33 @@ impl<'a> RadioManager<'a> {
if
let
Some
(
data
)
=
self
.radio
.finish_rx
(
self
.buf
)
.unwrap
()
{
if
self
.enable_digipeating
{
if
let
Some
((
callsign
,
ssid
))
=
ident
{
if
let
Ok
(
packet
)
=
Packet
::
fully_decode
(
data
.data
())
{
let
mut
buf
=
[
0
;
MAX_PACKET_LEN
];
let
p
=
Packet
::
fully_decode
(
data
.data
(),
&
mut
buf
);
if
let
Ok
(
packet
)
=
p
{
self
.handle_packet_rx
(
led
,
packet
,
callsign
,
ssid
);
}
;
}
}
}
// Only needed if the radio gets confused
self
.radio
.start_rx
(
None
,
tru
e
)
.start_rx
(
None
,
fals
e
)
.map_err
(
TransferError
::
SpiError
)
?
;
}
Ok
(())
}
pub
fn
tx
<
P
:
OutputPin
,
M
:
Mutex
<
T
=
P
>>
(
&
mut
self
,
led
:
&
mut
M
,
data
:
&
[
u8
])
->
Option
<
()
>
{
// digipeats only if ident is Some,
// otherwise the rx'd packet is discarded
pub
fn
tx
<
P
:
OutputPin
,
M
:
Mutex
<
T
=
P
>>
(
&
mut
self
,
led
:
&
mut
M
,
data
:
&
[
u8
],
ident
:
Option
<
(
&
str
,
u8
)
>
,
)
->
Option
<
()
>
{
// don't want to transmit on top of a packet
while
self
.radio
.is_busy_rxing
()
.ok
()
?
{
self
.tick
(
led
,
None
)
.ok
()
?
;
self
.tick
(
led
,
ident
)
.ok
()
?
;
}
led
.lock
(|
l
|
l
.set_high
()
.ok
());
...
...
@@ -99,7 +109,6 @@ impl<'a> RadioManager<'a> {
Some
(())
}
// Not great - lots of copies, and therefore stack usage here
fn
handle_packet_rx
<
P
:
OutputPin
,
M
:
Mutex
<
T
=
P
>>
(
&
mut
self
,
led
:
&
mut
M
,
...
...
@@ -112,8 +121,10 @@ impl<'a> RadioManager<'a> {
return
;
}
if
let
Ok
(
buf
)
=
packet
.fully_encode
()
{
self
.tx
(
led
,
&
buf
);
let
mut
buf
=
[
0
;
MAX_PACKET_LEN
];
let
mut
buf
=
Buffer
::
new_empty
(
&
mut
buf
);
if
packet
.fully_encode
(
&
mut
buf
)
.is_ok
()
{
self
.tx
(
led
,
&
buf
,
None
);
}
}
}
...
...
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