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
99030bb3
Commit
99030bb3
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
reset stm32 on powerup and on any error
parent
c80078fa
No related branches found
Branches containing commit
No related tags found
1 merge request
!4
Spi
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/control.rs
+40
-30
40 additions, 30 deletions
src/control.rs
src/radio.rs
+18
-3
18 additions, 3 deletions
src/radio.rs
with
58 additions
and
33 deletions
src/control.rs
+
40
−
30
View file @
99030bb3
...
@@ -101,42 +101,52 @@ impl Controller {
...
@@ -101,42 +101,52 @@ impl Controller {
let
mut
text_msg_id
=
0
;
let
mut
text_msg_id
=
0
;
let
mut
last_got_temp
=
Instant
::
now
();
let
mut
last_got_temp
=
Instant
::
now
();
loop
{
loop
{
while
let
Ok
(
tm
)
=
telem_rx
.try_recv
()
{
if
let
Err
(
e
)
=
Self
::
tx_thread_single_iter
(
let
tm
=
tm
.into_raw
(
&
mut
text_msg_id
)
.into
();
&
callsign
,
&
image_rx
,
if
let
Err
(
e
)
=
radio
.send_packet
(
&
tm
)
{
&
telem_rx
,
eprintln!
(
"Could not send packet: {}"
,
e
);
&
mut
text_msg_id
,
}
&
mut
last_got_temp
,
&
mut
radio
,
)
{
eprintln!
(
"Radio error: {}"
,
e
);
radio
.reset
();
}
}
}
}
if
let
Ok
(
img
)
=
image_rx
.try_recv
()
{
fn
tx_thread_single_iter
(
if
let
Err
(
e
)
=
radio
.send_packet
(
&
img
)
{
callsign
:
&
str
,
eprintln!
(
"Could not send packet: {}"
,
e
);
image_rx
:
&
Receiver
<
FecPacket
>
,
}
telem_rx
:
&
Receiver
<
Packet
>
,
}
else
{
text_msg_id
:
&
mut
u16
,
if
let
Err
(
e
)
=
radio
.flush
()
{
last_got_temp
:
&
mut
Instant
,
eprintln!
(
"Could not flush radio: {}"
,
e
);
radio
:
&
mut
McuRadio
,
}
)
->
anyhow
::
Result
<
()
>
{
thread
::
sleep
(
Duration
::
from_millis
(
50
));
while
let
Ok
(
tm
)
=
telem_rx
.try_recv
()
{
}
let
tm
=
tm
.into_raw
(
text_msg_id
)
.into
();
radio
.send_packet
(
&
tm
)
?
;
}
if
Instant
::
now
()
-
last_got_temp
>
TEMP_REFRESH_INTERVAL
{
if
let
Ok
(
img
)
=
image_rx
.try_recv
()
{
last_got_temp
=
Instant
::
now
();
radio
.send_packet
(
&
img
)
?
;
}
else
{
radio
.flush
()
?
;
let
temp
=
match
radio
.get_temp
()
{
thread
::
sleep
(
Duration
::
from_millis
(
50
));
Ok
(
x
)
=>
x
,
}
Err
(
e
)
=>
{
eprintln!
(
"Could not get radio temp: {}"
,
e
);
continue
;
}
};
let
packet
=
Packet
::
new_text_message
(
&
callsign
,
&
format!
(
"Temp: {}"
,
temp
));
if
Instant
::
now
()
-
*
last_got_temp
>
TEMP_REFRESH_INTERVAL
{
*
last_got_temp
=
Instant
::
now
();
if
let
Err
(
e
)
=
radio
.send_packet
(
&
packet
.into_raw
(
&
mut
text_msg_id
)
.into
())
{
let
temp
=
radio
.get_temp
()
?
;
eprintln!
(
"Could not send packet: {}"
,
e
);
}
let
packet
=
Packet
::
new_text_message
(
callsign
,
&
format!
(
"Temp: {}"
,
temp
));
}
radio
.send_packet
(
&
packet
.into_raw
(
text_msg_id
)
.into
())
?
;
}
}
Ok
(())
}
}
}
}
This diff is collapsed.
Click to expand it.
src/radio.rs
+
18
−
3
View file @
99030bb3
use
anyhow
::
anyhow
;
use
anyhow
::
anyhow
;
use
rppal
::
spi
::{
Bus
,
Mode
,
SlaveSelect
,
Spi
};
use
rppal
::{
gpio
::{
Gpio
,
OutputPin
},
spi
::{
Bus
,
Mode
,
SlaveSelect
,
Spi
},
};
use
std
::{
thread
::
sleep
,
time
::
Duration
};
use
std
::{
thread
::
sleep
,
time
::
Duration
};
use
crate
::
packet
::
FecPacket
;
use
crate
::
packet
::
FecPacket
;
...
@@ -15,14 +18,26 @@ const FREE_SPACE: u8 = 0xAA;
...
@@ -15,14 +18,26 @@ const FREE_SPACE: u8 = 0xAA;
// The microcontroller takes in packet data over SPI and sends it to the RF4463
// The microcontroller takes in packet data over SPI and sends it to the RF4463
pub
struct
McuRadio
{
pub
struct
McuRadio
{
spi
:
Spi
,
spi
:
Spi
,
reset_pin
:
OutputPin
,
}
}
// TODO reset mcu on initialization
impl
McuRadio
{
impl
McuRadio
{
pub
fn
new
()
->
anyhow
::
Result
<
Self
>
{
pub
fn
new
()
->
anyhow
::
Result
<
Self
>
{
let
spi
=
Spi
::
new
(
Bus
::
Spi0
,
SlaveSelect
::
Ss1
,
1_000_000
,
Mode
::
Mode0
)
?
;
let
spi
=
Spi
::
new
(
Bus
::
Spi0
,
SlaveSelect
::
Ss1
,
1_000_000
,
Mode
::
Mode0
)
?
;
let
reset_pin
=
Gpio
::
new
()
?
.get
(
8
)
?
.into_output_high
();
Ok
(
Self
{
spi
})
let
mut
s
=
Self
{
reset_pin
,
spi
};
s
.reset
();
Ok
(
s
)
}
pub
fn
reset
(
&
mut
self
)
{
self
.reset_pin
.set_low
();
sleep
(
Duration
::
from_millis
(
10
));
self
.reset_pin
.set_high
();
sleep
(
Duration
::
from_millis
(
1000
));
}
}
pub
fn
send_packet
(
&
mut
self
,
packet
:
&
FecPacket
)
->
anyhow
::
Result
<
()
>
{
pub
fn
send_packet
(
&
mut
self
,
packet
:
&
FecPacket
)
->
anyhow
::
Result
<
()
>
{
...
...
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