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
66272f87
Commit
66272f87
authored
1 year ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
fix a giant bug. No idea why it worked before and is only now causing issues
parent
f115d943
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#2540
passed
1 year ago
Stage: lint
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Cargo.lock
+1
-1
1 addition, 1 deletion
Cargo.lock
memory.x
+1
-1
1 addition, 1 deletion
memory.x
src/main.rs
+13
-1
13 additions, 1 deletion
src/main.rs
with
15 additions
and
3 deletions
Cargo.lock
+
1
−
1
View file @
66272f87
...
@@ -324,7 +324,7 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
...
@@ -324,7 +324,7 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
[[package]]
[[package]]
name = "rf4463"
name = "rf4463"
version = "0.1.0"
version = "0.1.0"
source = "git+https://gitlab.scd31.com/stephen/rf4463-lib#b
8c2156522cd9a1a5899ae1d8dd5e885db73aff
f"
source = "git+https://gitlab.scd31.com/stephen/rf4463-lib#b
b99c6bed20f795939e8e1f8b28ba4cbfe4ddfb
f"
dependencies = [
dependencies = [
"embedded-hal 0.2.7",
"embedded-hal 0.2.7",
]
]
...
...
This diff is collapsed.
Click to expand it.
memory.x
+
1
−
1
View file @
66272f87
MEMORY
MEMORY
{
{
/* NOTE K = KiBi = 1024 bytes */
/* NOTE K = KiBi = 1024 bytes */
FLASH : ORIGIN = 0x08000000, LENGTH = 512K
FLASH : ORIGIN = 0x08000000, LENGTH = 512K
RAM : ORIGIN = 0x20000000, LENGTH = 128K
RAM : ORIGIN = 0x20000000, LENGTH = 128K
}
}
...
...
This diff is collapsed.
Click to expand it.
src/main.rs
+
13
−
1
View file @
66272f87
...
@@ -109,7 +109,7 @@ mod app {
...
@@ -109,7 +109,7 @@ mod app {
}
}
#[monotonic(binds
=
SysTick,
default
=
true
)]
#[monotonic(binds
=
SysTick,
default
=
true
)]
type
Tonic
=
Systick
<
1000
>
;
type
Tonic
=
Systick
<
1000
0
>
;
#[init]
#[init]
fn
init
(
mut
ctx
:
init
::
Context
)
->
(
Shared
,
Local
,
init
::
Monotonics
)
{
fn
init
(
mut
ctx
:
init
::
Context
)
->
(
Shared
,
Local
,
init
::
Monotonics
)
{
...
@@ -216,6 +216,11 @@ mod app {
...
@@ -216,6 +216,11 @@ mod app {
// start our radio temp loop
// start our radio temp loop
get_radio_temp
::
spawn_after
(
1u64
.secs
())
.unwrap
();
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
{
Shared
{
radio
,
radio
,
...
@@ -305,6 +310,13 @@ mod app {
...
@@ -305,6 +310,13 @@ mod app {
get_radio_temp
::
spawn_after
(
1u64
.secs
())
.unwrap
();
get_radio_temp
::
spawn_after
(
1u64
.secs
())
.unwrap
();
}
}
#[task(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
])]
#[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
)
{
fn
pi_spi_recv
(
mut
ctx
:
pi_spi_recv
::
Context
)
{
let
rx
=
ctx
.local.pi_rx
;
let
rx
=
ctx
.local.pi_rx
;
...
...
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