Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pi-transceiver-firmware
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
pi-transceiver-firmware
Commits
636c984e
Commit
636c984e
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
interrupt -> polling
parent
554b46c3
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#3004
passed
1 year ago
Stage: lint
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Cargo.lock
+1
-1
1 addition, 1 deletion
Cargo.lock
src/main.rs
+8
-15
8 additions, 15 deletions
src/main.rs
with
9 additions
and
16 deletions
Cargo.lock
+
1
−
1
View file @
636c984e
...
...
@@ -324,7 +324,7 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
[[package]]
name = "rf4463"
version = "0.1.0"
source = "git+https://gitlab.scd31.com/stephen/rf4463-lib#
a96d7e33a7bc6c9eb5d1cc2d0c47fd5c5776c366
"
source = "git+https://gitlab.scd31.com/stephen/rf4463-lib#
e82e919b8c84127428391389dbfdbb0b5b81ed58
"
dependencies = [
"embedded-hal 0.2.7",
]
...
...
This diff is collapsed.
Click to expand it.
src/main.rs
+
8
−
15
View file @
636c984e
...
...
@@ -33,7 +33,7 @@ mod app {
// in bytes
// explicitly make this smaller than a packet so that we don't buffer things in the tx DMA for a while
const
PI_RX_BUFFER_LEN
:
usize
=
2
56
;
const
PI_RX_BUFFER_LEN
:
usize
=
2
048
;
// in bytes
const
PI_TX_BUFFER_LEN
:
usize
=
spi_data
::
LEN
;
...
...
@@ -216,11 +216,6 @@ mod app {
// start our radio temp loop
get_radio_temp
::
spawn_after
(
1u64
.secs
())
.unwrap
();
// start our radio interrupt loop
// TODO I kind of hate this. We need this because sometimes we miss the real interrupt
// I don't know why
run_radio_interrupt
::
spawn_after
(
500u64
.micros
())
.unwrap
();
(
Shared
{
radio
,
...
...
@@ -256,7 +251,7 @@ mod app {
// wait for radio to be idle again
loop
{
if
ctx
.shared.radio
.lock
(|
r
|
r
.is_idle
(
))
{
if
ctx
.shared.radio
.lock
(|
r
|
tick
(
r
))
{
break
;
}
}
...
...
@@ -267,7 +262,7 @@ mod app {
// wait for radio to be idle again
loop
{
if
ctx
.shared.radio
.lock
(|
r
|
r
.is_idle
(
))
{
if
ctx
.shared.radio
.lock
(|
r
|
tick
(
r
))
{
break
;
}
}
...
...
@@ -310,13 +305,6 @@ mod app {
get_radio_temp
::
spawn_after
(
1u64
.secs
())
.unwrap
();
}
#[task(priority
=
1
,
shared
=
[
radio]
)]
fn
run_radio_interrupt
(
mut
ctx
:
run_radio_interrupt
::
Context
)
{
ctx
.shared.radio
.lock
(|
r
|
r
.interrupt
()
.unwrap
());
run_radio_interrupt
::
spawn_after
(
500u64
.micros
())
.unwrap
();
}
#[task(binds
=
DMA1_STREAM3,
priority
=
2
,
local
=
[
state,
pi_rx,
other_rx_buf]
,
shared
=
[
tx_buf
,
pi_tx
,
other_tx_buf
,
spi_data
])]
fn
pi_spi_recv
(
mut
ctx
:
pi_spi_recv
::
Context
)
{
let
rx
=
ctx
.local.pi_rx
;
...
...
@@ -433,4 +421,9 @@ mod app {
t
.replace
(
tx
);
});
}
fn
tick
(
r
:
&
mut
Radio
)
->
bool
{
r
.interrupt
()
.unwrap
();
r
.is_idle
()
}
}
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