Skip to content
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
1cca96c
add stm32u5 debug image.
genan2003 Oct 17, 2025
f3a8f30
fix stm32u5 debug image.
genan2003 Oct 20, 2025
72e296b
update lab01
genan2003 Oct 21, 2025
80b79bf
Merge branch 'UPB-PMRust:main' into main
genan2003 Oct 21, 2025
13e1645
change defmt and cortex-m version.
genan2003 Oct 21, 2025
3204a6b
Merge branch 'main' of https://github.com/genan2003/website
genan2003 Oct 21, 2025
df20f10
Update website/lab/01/index.mdx
genan2003 Oct 21, 2025
c2a8f89
add defmt error snippet.
genan2003 Oct 21, 2025
82e55d1
Merge branch 'UPB-PMRust:main' into main
genan2003 Oct 26, 2025
8a3be44
update cargo.toml for stm32u5 and add waiting explanation for stm32.
genan2003 Oct 26, 2025
708b671
add informations about exti and update cargo.toml for rp2.
genan2003 Oct 27, 2025
b62f6f2
Update index.mdx with RP2350 and RP2040 dependencies
genan2003 Oct 28, 2025
3f22892
Remove comments from dependencies in index.mdx
genan2003 Oct 28, 2025
0954ccd
Update website/lab/02/index.mdx
genan2003 Oct 28, 2025
82e595f
Merge branch 'UPB-PMRust:main' into main
genan2003 Nov 3, 2025
a498bcb
add pin `D10` to lab03
genan2003 Nov 3, 2025
452dc08
add analog pins to lab03
genan2003 Nov 3, 2025
7515cb1
delete `Config` warning for ADC and PWM
genan2003 Nov 3, 2025
ccaab3c
delete the note about PWM channels
genan2003 Nov 3, 2025
48d8e0b
add `set_polarity` function to lab
genan2003 Nov 3, 2025
77da05c
add lab improvements
genan2003 Nov 3, 2025
fae2650
Merge branch 'UPB-PMRust:main' into main
genan2003 Nov 3, 2025
4d9cb47
Merge branch 'UPB-PMRust:main' into main
genan2003 Nov 4, 2025
5b79f3e
Merge branch 'UPB-PMRust:main' into main
genan2003 Nov 8, 2025
bcd5ad8
Merge branch 'UPB-PMRust:main' into main
genan2003 Nov 10, 2025
a940288
Remove `task_arena` from tip
genan2003 Nov 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion website/lab/04/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ while start_time.elapsed().as_millis() < time_interval {}

You should notice that one of the tasks is not running. Why? (**1p**)
:::tip
Use a different task instance for each LED. You can spawn multiple instances of the same task, however you need to specify the pool size with `#[embassy_executor::task(pool_size = 2)]`. Take a look at [task-arena](https://docs.embassy.dev/embassy-executor/git/std/index.html#task-arena) for more info.
Use a different task instance for each LED. You can spawn multiple instances of the same task, however you need to specify the pool size with `#[embassy_executor::task(pool_size = 2)]`.
Use [`AnyPin`](https://docs.embassy.dev/embassy-stm32/git/stm32u545re/gpio/struct.AnyPin.html) and blinking frequency parameters for the task.
:::

Expand Down