Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
balloon-tx-monolith
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
Stephen D
balloon-tx-monolith
Commits
8f1bb2e4
Commit
8f1bb2e4
authored
1 year ago
by
Stephen D
Committed by
Stephen D
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
pi spi working
parent
68854b89
No related branches found
Branches containing commit
No related tags found
1 merge request
!2
pi spi working
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.cargo/config
+2
-0
2 additions, 0 deletions
.cargo/config
Cargo.lock
+0
-1149
0 additions, 1149 deletions
Cargo.lock
Cargo.toml
+3
-1
3 additions, 1 deletion
Cargo.toml
src/control.rs
+6
-4
6 additions, 4 deletions
src/control.rs
src/radio.rs
+67
-0
67 additions, 0 deletions
src/radio.rs
with
78 additions
and
1154 deletions
.cargo/config
0 → 100644
+
2
−
0
View file @
8f1bb2e4
[target.arm-unknown-linux-gnueabi]
linker = "arm-linux-gnueabi-gcc"
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Cargo.lock
+
0
−
1149
View file @
8f1bb2e4
This diff is collapsed.
Click to expand it.
Cargo.toml
+
3
−
1
View file @
8f1bb2e4
...
...
@@ -15,7 +15,6 @@ maintainer-scripts = "debian/maintainer_scripts/"
copyright
=
"2023, Stephen D <@stephen:crabsin.space>"
maintainer
=
"Stephen D <@stephen:crabsin.space>"
[dependencies]
anyhow
=
"1.0.70"
aprs-parser
=
"0.4.0"
base64
=
"0.21.0"
...
...
@@ -23,9 +22,12 @@ bitvec = "1.0.1"
crc
=
"3.0.1"
image
=
"0.24.6"
kiss-tnc
=
"0.2.2"
rppal
=
{
version
=
"0.14.1"
,
features
=
[
"hal"
]
}
serde
=
{
version
=
"1.0.160"
,
features
=
[
"derive"
]
}
serial
=
"0.4.0"
sha3
=
"0.10.7"
subprocess
=
"0.2.9"
tokio
=
{
version
=
"1.27.0"
,
features
=
[
"full"
]
}
toml
=
"0.7.3"
rf4463
=
{
path
=
"../rf4463"
}
thread-priority
=
"0.13.1"
This diff is collapsed.
Click to expand it.
src/control.rs
+
6
−
4
View file @
8f1bb2e4
...
...
@@ -5,13 +5,14 @@ use std::{
};
use
anyhow
::
Context
;
use
thread_priority
::
ThreadPriority
;
use
crate
::{
aprs
::
CommandHandler
,
config
::
Config
,
img
::
ImgManager
,
packet
::{
FecPacket
,
Packet
},
radio
::
UartRadio
,
radio
::
{
SpiRadio
,
UartRadio
}
,
ssdv
::
ssdv_encode
,
};
...
...
@@ -80,7 +81,10 @@ impl Controller {
// manages our transceiver
fn
tx_thread
(
image_rx
:
Receiver
<
FecPacket
>
,
telem_rx
:
Receiver
<
Packet
>
)
{
let
mut
radio
=
UartRadio
::
new
(
"/dev/ttyAMA0"
)
.expect
(
"Could not initialize radio"
);
ThreadPriority
::
Max
.set_for_current
()
.unwrap
();
//let mut radio = UartRadio::new("/dev/ttyAMA0").expect("Could not initialize radio");
let
mut
radio
=
SpiRadio
::
new
()
.expect
(
"Could not initialize radio"
);
let
mut
text_msg_id
=
0
;
loop
{
...
...
@@ -93,11 +97,9 @@ impl Controller {
}
if
let
Ok
(
img
)
=
image_rx
.try_recv
()
{
println!
(
"start send packet"
);
if
let
Err
(
e
)
=
radio
.send_packet
(
&
img
)
{
eprintln!
(
"Could not send packet: {}"
,
e
);
}
println!
(
"end send packet"
);
}
else
{
thread
::
sleep
(
Duration
::
from_millis
(
5
));
}
...
...
This diff is collapsed.
Click to expand it.
src/radio.rs
+
67
−
0
View file @
8f1bb2e4
use
rf4463
::{
config
::{
RADIO_CONFIG_500_2
,
RADIO_CONFIG_5_4
},
Rf4463
,
TransferError
,
};
use
rppal
::{
gpio
::{
Gpio
,
OutputPin
},
hal
::
Delay
,
spi
::{
self
,
Bus
,
Mode
,
SlaveSelect
,
Spi
},
};
use
serial
::{
unix
::
TTYPort
,
BaudRate
::
BaudOther
,
SerialPort
};
use
std
::{
io
::{
Read
,
Write
},
...
...
@@ -42,3 +51,61 @@ impl UartRadio {
Ok
(())
}
}
pub
struct
SpiRadio
{
radio
:
Rf4463
<
Spi
,
OutputPin
,
OutputPin
,
Delay
>
,
failures
:
u32
,
total
:
u32
,
}
impl
SpiRadio
{
pub
fn
new
()
->
anyhow
::
Result
<
Self
>
{
let
spi
=
Spi
::
new
(
Bus
::
Spi0
,
SlaveSelect
::
Ss0
,
10_000_000
,
Mode
::
Mode0
)
?
;
let
gpio
=
Gpio
::
new
()
?
;
let
sdn
=
gpio
.get
(
22
)
?
.into_output
();
let
cs
=
gpio
.get
(
24
)
?
.into_output
();
let
delay
=
Delay
::
new
();
// todo fix this unwrap
let
radio
=
Rf4463
::
new
(
spi
,
sdn
,
cs
,
delay
,
&
mut
RADIO_CONFIG_500_2
.clone
())
.unwrap
();
Ok
(
Self
{
radio
,
failures
:
0
,
total
:
0
,
})
}
pub
fn
send_packet
(
&
mut
self
,
packet
:
&
FecPacket
)
->
anyhow
::
Result
<
()
>
{
self
.total
+=
1
;
// todo fix this unwrap
if
self
.actually_send
(
packet
,
3
)
.is_err
()
{
self
.failures
+=
1
;
println!
(
"{} % fail rate"
,
(
self
.failures
as
f64
)
/
(
self
.total
as
f64
)
);
}
Ok
(())
}
fn
actually_send
(
&
mut
self
,
packet
:
&
FecPacket
,
tries
:
u32
,
)
->
Result
<
(),
TransferError
<
spi
::
Error
>>
{
if
tries
==
0
{
return
Err
(
TransferError
::
FifoOverflow
);
}
match
self
.radio
.tx
(
&
mut
packet
.0
.clone
())
{
Ok
(())
=>
Ok
(()),
Err
(
TransferError
::
FifoOverflow
)
=>
self
.actually_send
(
packet
,
tries
-
1
),
Err
(
e
)
=>
Err
(
e
),
}
}
}
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