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
f118a2e0
Commit
f118a2e0
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
syncing with mcu. also removed the flushes because they hurt performance
parent
7a1b349d
No related branches found
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
+10
-0
10 additions, 0 deletions
src/control.rs
src/radio.rs
+46
-5
46 additions, 5 deletions
src/radio.rs
with
56 additions
and
5 deletions
src/control.rs
+
10
−
0
View file @
f118a2e0
...
@@ -17,6 +17,7 @@ use crate::{
...
@@ -17,6 +17,7 @@ use crate::{
const
IMAGE_PACKET_QUEUE_LENGTH
:
usize
=
8192
;
const
IMAGE_PACKET_QUEUE_LENGTH
:
usize
=
8192
;
const
TEMP_REFRESH_INTERVAL
:
Duration
=
Duration
::
from_secs
(
5
);
const
TEMP_REFRESH_INTERVAL
:
Duration
=
Duration
::
from_secs
(
5
);
const
SYNC_REFRESH_INTERVAL
:
Duration
=
Duration
::
from_secs
(
7
);
pub
struct
Controller
{
pub
struct
Controller
{
config
:
Config
,
config
:
Config
,
...
@@ -97,6 +98,7 @@ impl Controller {
...
@@ -97,6 +98,7 @@ 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
();
let
mut
last_synced_at
=
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
();
...
@@ -131,6 +133,14 @@ impl Controller {
...
@@ -131,6 +133,14 @@ impl Controller {
eprintln!
(
"Could not send packet: {}"
,
e
);
eprintln!
(
"Could not send packet: {}"
,
e
);
}
}
}
}
if
Instant
::
now
()
-
last_synced_at
>
SYNC_REFRESH_INTERVAL
{
last_synced_at
=
Instant
::
now
();
if
let
Err
(
e
)
=
radio
.sync
()
{
eprintln!
(
"Could not sync: {}"
,
e
);
}
}
}
}
}
}
}
}
This diff is collapsed.
Click to expand it.
src/radio.rs
+
46
−
5
View file @
f118a2e0
use
serial
::{
unix
::
TTYPort
,
BaudRate
::
BaudOther
,
SerialPort
};
use
serial
::{
unix
::
TTYPort
,
BaudRate
::
BaudOther
,
SerialPort
};
use
std
::{
use
std
::{
io
::{
Read
,
Write
},
io
::{
self
,
Read
,
Write
},
thread
::
sleep
,
thread
::
sleep
,
time
::
Duration
,
time
::
Duration
,
};
};
...
@@ -10,6 +10,9 @@ use crate::packet::FecPacket;
...
@@ -10,6 +10,9 @@ use crate::packet::FecPacket;
const
BUFFER_STATUS_CMD
:
u8
=
0x00
;
const
BUFFER_STATUS_CMD
:
u8
=
0x00
;
const
SEND_PACKET_CMD
:
u8
=
0x01
;
const
SEND_PACKET_CMD
:
u8
=
0x01
;
const
GET_TEMP_CMD
:
u8
=
0x02
;
const
GET_TEMP_CMD
:
u8
=
0x02
;
const
SYNC_CMD
:
u8
=
0x03
;
const
PACKET_SPACE
:
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
...
@@ -28,18 +31,16 @@ impl UartRadio {
...
@@ -28,18 +31,16 @@ 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
(
&
[
SEND_PACKET_CMD
])
?
;
self
.uart
.write_all
(
&
[
SEND_PACKET_CMD
])
?
;
self
.uart
.write_all
(
&
packet
.0
)
?
;
self
.uart
.write_all
(
&
packet
.0
)
?
;
self
.uart
.flush
()
?
;
let
mut
buf
=
[
0
;
1
];
let
mut
buf
=
[
0
;
1
];
self
.uart
.read_exact
(
&
mut
buf
)
?
;
self
.uart
.read_exact
(
&
mut
buf
)
?
;
// wait until we have space for packets
// wait until we have space for packets
while
buf
!=
[
0x02
]
{
while
buf
!=
[
PACKET_SPACE
]
{
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
(
&
[
BUFFER_STATUS_CMD
])
?
;
self
.uart
.write_all
(
&
[
BUFFER_STATUS_CMD
])
?
;
self
.uart
.flush
()
?
;
self
.uart
.read_exact
(
&
mut
buf
)
?
;
self
.uart
.read_exact
(
&
mut
buf
)
?
;
}
}
...
@@ -49,7 +50,6 @@ impl UartRadio {
...
@@ -49,7 +50,6 @@ impl UartRadio {
pub
fn
get_temp
(
&
mut
self
)
->
anyhow
::
Result
<
f32
>
{
pub
fn
get_temp
(
&
mut
self
)
->
anyhow
::
Result
<
f32
>
{
self
.uart
.write_all
(
&
[
GET_TEMP_CMD
])
?
;
self
.uart
.write_all
(
&
[
GET_TEMP_CMD
])
?
;
self
.uart
.flush
()
?
;
let
mut
buf
=
[
0
;
4
];
let
mut
buf
=
[
0
;
4
];
self
.uart
.read_exact
(
&
mut
buf
)
?
;
self
.uart
.read_exact
(
&
mut
buf
)
?
;
...
@@ -58,4 +58,45 @@ impl UartRadio {
...
@@ -58,4 +58,45 @@ impl UartRadio {
Ok
(
temp
)
Ok
(
temp
)
}
}
pub
fn
sync
(
&
mut
self
)
->
anyhow
::
Result
<
()
>
{
// clear any pending packets
let
mut
tries
=
0
;
let
mut
buf
=
[
0
;
100
];
loop
{
match
self
.uart
.read
(
&
mut
buf
)
{
Ok
(
0
)
=>
break
,
Ok
(
_
)
=>
{
tries
+=
1
;
}
Err
(
e
)
if
matches!
(
e
.kind
(),
io
::
ErrorKind
::
TimedOut
)
=>
break
,
Err
(
e
)
=>
{
return
Err
(
e
.into
());
}
}
}
if
tries
>
0
{
eprintln!
(
"[WARN] Sync had pending packets(tries={tries})"
);
}
tries
=
0
;
let
mut
buf
=
[
0
;
10
];
loop
{
self
.uart
.write_all
(
&
[
SYNC_CMD
;
10
])
?
;
match
self
.uart
.read_exact
(
&
mut
buf
)
{
Ok
(())
=>
break
,
Err
(
e
)
if
matches!
(
e
.kind
(),
io
::
ErrorKind
::
TimedOut
)
=>
{
tries
+=
1
;
}
Err
(
e
)
=>
{
return
Err
(
e
.into
());
}
}
}
eprintln!
(
"Synced in {tries} tries"
);
Ok
(())
}
}
}
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