Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
e7020e_2021
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
Deux Babiri Futari
e7020e_2021
Commits
34d1698f
Commit
34d1698f
authored
4 years ago
by
Per Lindgren
Browse files
Options
Downloads
Patches
Plain Diff
added rtt_rtic_blinky, rtt_rtic_hello
parent
71978f8f
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
examples/rtt_rtic_blinky.rs
+78
-0
78 additions, 0 deletions
examples/rtt_rtic_blinky.rs
examples/rtt_rtic_hello.rs
+27
-0
27 additions, 0 deletions
examples/rtt_rtic_hello.rs
with
105 additions
and
0 deletions
examples/rtt_rtic_blinky.rs
0 → 100644
+
78
−
0
View file @
34d1698f
#![deny(unsafe_code)]
#![deny(warnings)]
#![no_main]
#![no_std]
use
cortex_m
::
peripheral
::
DWT
;
use
panic_rtt_target
as
_
;
use
rtic
::
cyccnt
::{
Instant
,
U32Ext
as
_
};
use
rtt_target
::{
rprintln
,
rtt_init_print
};
use
stm32f4xx_hal
::
stm32
;
#[rtic::app(device
=
stm32f4xx_hal::stm32,
monotonic
=
rtic::cyccnt::CYCCNT,
peripherals
=
true
)]
const
APP
:
()
=
{
struct
Resources
{
// late resources
GPIOA
:
stm32
::
GPIOA
,
}
#[init(schedule
=
[
toggle]
)]
fn
init
(
cx
:
init
::
Context
)
->
init
::
LateResources
{
rtt_init_print!
();
rprintln!
(
"init"
);
let
mut
core
=
cx
.core
;
let
device
=
cx
.device
;
// Initialize (enable) the monotonic timer (CYCCNT)
core
.DCB
.enable_trace
();
// required on Cortex-M7 devices that software lock the DWT (e.g. STM32F7)
DWT
::
unlock
();
core
.DWT
.enable_cycle_counter
();
// semantically, the monotonic timer is frozen at time "zero" during `init`
// NOTE do *not* call `Instant::now` in this context; it will return a nonsense value
let
now
=
cx
.start
;
// the start time of the system
// Schedule `toggle` to run 8e6 cycles (clock cycles) in the future
cx
.schedule
.toggle
(
now
+
8_000_000
.cycles
())
.unwrap
();
// power on GPIOA, RM0368 6.3.11
device
.RCC.ahb1enr
.modify
(|
_
,
w
|
w
.gpioaen
()
.set_bit
());
// configure PA5 as output, RM0368 8.4.1
device
.GPIOA.moder
.modify
(|
_
,
w
|
w
.moder5
()
.bits
(
1
));
// pass on late resources
init
::
LateResources
{
GPIOA
:
device
.GPIOA
,
}
}
#[idle]
fn
idle
(
_cx
:
idle
::
Context
)
->
!
{
rprintln!
(
"idle"
);
loop
{
continue
;
}
}
#[task(resources
=
[
GPIOA]
,
schedule
=
[
toggle
])]
fn
toggle
(
cx
:
toggle
::
Context
)
{
static
mut
TOGGLE
:
bool
=
false
;
rprintln!
(
"toggle @ {:?}"
,
Instant
::
now
());
if
*
TOGGLE
{
cx
.resources.GPIOA.bsrr
.write
(|
w
|
w
.bs5
()
.set_bit
());
}
else
{
cx
.resources.GPIOA.bsrr
.write
(|
w
|
w
.br5
()
.set_bit
());
}
*
TOGGLE
=
!*
TOGGLE
;
cx
.schedule
.toggle
(
cx
.scheduled
+
8_000_000
.cycles
())
.unwrap
();
}
extern
"C"
{
fn
EXTI0
();
}
};
This diff is collapsed.
Click to expand it.
examples/rtt_rtic_hello.rs
0 → 100644
+
27
−
0
View file @
34d1698f
// cargo run --example rtt_rtic_hello
#![no_main]
#![no_std]
use
panic_halt
as
_
;
use
rtt_target
::{
rprintln
,
rtt_init_print
};
use
stm32f4
;
#[rtic::app(device
=
stm32f4)]
const
APP
:
()
=
{
#[init]
fn
init
(
_cx
:
init
::
Context
)
{
rtt_init_print!
();
for
i
in
0
..
11
{
rprintln!
(
"RTIC Says Hello, world {}!!"
,
i
);
}
}
#[idle]
fn
idle
(
_cx
:
idle
::
Context
)
->
!
{
rprintln!
(
"lets get lazy"
);
loop
{
continue
;
}
}
};
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