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
e3caaf54
Commit
e3caaf54
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
radio temperature
parent
b0c9b6f1
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/control.rs
+23
-3
23 additions, 3 deletions
src/control.rs
src/radio.rs
+17
-2
17 additions, 2 deletions
src/radio.rs
with
40 additions
and
5 deletions
src/control.rs
+
23
−
3
View file @
e3caaf54
use
std
::{
use
std
::{
sync
::
mpsc
::{
self
,
Receiver
,
Sender
,
SyncSender
},
sync
::
mpsc
::{
self
,
Receiver
,
Sender
,
SyncSender
},
thread
,
thread
,
time
::
Duration
,
time
::
{
Duration
,
Instant
},
};
};
use
anyhow
::
Context
;
use
anyhow
::
Context
;
...
@@ -15,7 +15,8 @@ use crate::{
...
@@ -15,7 +15,8 @@ use crate::{
ssdv
::
ssdv_encode
,
ssdv
::
ssdv_encode
,
};
};
const
IMAGE_PACKET_QUEUE_LENGTH
:
usize
=
1024
;
const
IMAGE_PACKET_QUEUE_LENGTH
:
usize
=
8192
;
const
TEMP_REFRESH_INTERVAL
:
Duration
=
Duration
::
from_secs
(
5
);
pub
struct
Controller
{
pub
struct
Controller
{
config
:
Config
,
config
:
Config
,
...
@@ -95,6 +96,7 @@ impl Controller {
...
@@ -95,6 +96,7 @@ impl Controller {
};
};
let
mut
text_msg_id
=
0
;
let
mut
text_msg_id
=
0
;
let
mut
last_got_temp
=
Instant
::
now
();
loop
{
loop
{
while
let
Ok
(
tm
)
=
telem_rx
.try_recv
()
{
while
let
Ok
(
tm
)
=
telem_rx
.try_recv
()
{
let
tm
=
tm
.into_raw
(
&
mut
text_msg_id
)
.into
();
let
tm
=
tm
.into_raw
(
&
mut
text_msg_id
)
.into
();
...
@@ -109,7 +111,25 @@ impl Controller {
...
@@ -109,7 +111,25 @@ impl Controller {
eprintln!
(
"Could not send packet: {}"
,
e
);
eprintln!
(
"Could not send packet: {}"
,
e
);
}
}
}
else
{
}
else
{
thread
::
sleep
(
Duration
::
from_millis
(
5
));
thread
::
sleep
(
Duration
::
from_millis
(
50
));
}
if
Instant
::
now
()
-
last_got_temp
>
TEMP_REFRESH_INTERVAL
{
last_got_temp
=
Instant
::
now
();
let
temp
=
match
radio
.get_temp
()
{
Ok
(
x
)
=>
x
,
Err
(
e
)
=>
{
eprintln!
(
"Could not get radio temp: {}"
,
e
);
continue
;
}
};
let
packet
=
Packet
::
new_text_message
(
&
format!
(
"Temp: {}"
,
temp
));
if
let
Err
(
e
)
=
radio
.send_packet
(
&
packet
.into_raw
(
&
mut
text_msg_id
)
.into
())
{
eprintln!
(
"Could not send packet: {}"
,
e
);
}
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
src/radio.rs
+
17
−
2
View file @
e3caaf54
...
@@ -7,6 +7,10 @@ use std::{
...
@@ -7,6 +7,10 @@ use std::{
use
crate
::
packet
::
FecPacket
;
use
crate
::
packet
::
FecPacket
;
const
BUFFER_STATUS_CMD
:
u8
=
0x00
;
const
SEND_PACKET_CMD
:
u8
=
0x01
;
const
GET_TEMP_CMD
:
u8
=
0x02
;
// Used for talking to an RF4463 via a microcontroller
// Used for talking to an RF4463 via a microcontroller
// The microcontroller takes in packet data over UART and sends it to the RF4463
// The microcontroller takes in packet data over UART and sends it to the RF4463
pub
struct
UartRadio
{
pub
struct
UartRadio
{
...
@@ -22,7 +26,7 @@ impl UartRadio {
...
@@ -22,7 +26,7 @@ impl UartRadio {
}
}
pub
fn
send_packet
(
&
mut
self
,
packet
:
&
FecPacket
)
->
anyhow
::
Result
<
()
>
{
pub
fn
send_packet
(
&
mut
self
,
packet
:
&
FecPacket
)
->
anyhow
::
Result
<
()
>
{
self
.uart
.write_all
(
&
[
0x01
])
?
;
self
.uart
.write_all
(
&
[
SEND_PACKET_CMD
])
?
;
self
.uart
.write_all
(
&
packet
.0
)
?
;
self
.uart
.write_all
(
&
packet
.0
)
?
;
let
mut
buf
=
[
0
;
1
];
let
mut
buf
=
[
0
;
1
];
...
@@ -33,7 +37,7 @@ impl UartRadio {
...
@@ -33,7 +37,7 @@ impl UartRadio {
sleep
(
Duration
::
from_millis
(
10
));
sleep
(
Duration
::
from_millis
(
10
));
// poll to see if the buffer has emptied yet
// poll to see if the buffer has emptied yet
self
.uart
.write_all
(
&
[
0x00
])
?
;
self
.uart
.write_all
(
&
[
BUFFER_STATUS_CMD
])
?
;
self
.uart
.flush
()
?
;
self
.uart
.flush
()
?
;
self
.uart
.read_exact
(
&
mut
buf
)
?
;
self
.uart
.read_exact
(
&
mut
buf
)
?
;
...
@@ -41,4 +45,15 @@ impl UartRadio {
...
@@ -41,4 +45,15 @@ impl UartRadio {
Ok
(())
Ok
(())
}
}
pub
fn
get_temp
(
&
mut
self
)
->
anyhow
::
Result
<
f32
>
{
self
.uart
.write_all
(
&
[
GET_TEMP_CMD
])
?
;
let
mut
buf
=
[
0
;
4
];
self
.uart
.read_exact
(
&
mut
buf
)
?
;
let
temp
=
f32
::
from_le_bytes
(
buf
);
Ok
(
temp
)
}
}
}
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