Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • pmrust/pmrust.pages.upb.ro
  • genan.omer/pmrust.pages.upb.ro
  • vladut.chintoiu/pmrust.pages.upb.ro
  • petru.nania/website-pmrust-fork
  • sofia.huzan/pmrust.pages.upb.ro
  • ionut.pruteanu2308/arcade-game
  • luana.militaru/pong-game
  • sebastian.scrob/project
  • matei.bejinaru/website-bejinaru-matei
  • adragomir2806/website-dragomir-alexandru
  • fatemehsadat/pmrust.pages.upb.ro
  • razvan.costea2205/pmrust.pages.upb.ro
  • darius_gabriel.iuga/pm-website
  • andrei.neagu1910/pmrust.pages.upb.ro
  • irina.chiorean/pmrust.pages.upb.ro
  • adrian_costin.lungu/pmrust.pages.upb.ro
16 results
Show changes
Commits on Source (7)
......@@ -27,6 +27,7 @@ test fake slides:
test slides acs_cc:
stage: test
script:
- rm -rf website/static/slides/acs_cc/*
- cd slides
- npx -y playwright@^1.41.2 install chromium
- npx playwright install-deps
......@@ -50,6 +51,7 @@ test slides acs_cc:
test slides fils_en:
stage: test
script:
- rm -rf website/static/slides/fils_en/*
- cd slides
- npx -y playwright@^1.41.2 install chromium
- npx playwright install-deps
......
......@@ -17,7 +17,7 @@ layout: cover
themeConfig:
primary: '#0060df'
download: true
exportFilename: ma-04
exportFilename: ma-03
background:
---
......
......@@ -17,7 +17,7 @@ layout: cover
themeConfig:
primary: '#0060df'
download: true
exportFilename: ma-05
exportFilename: ma-04
background:
---
......
......@@ -17,7 +17,7 @@ layout: cover
themeConfig:
primary: '#0060df'
download: true
exportFilename: ma-06
exportFilename: ma-05
background:
---
......
......@@ -17,7 +17,7 @@ layout: cover
themeConfig:
primary: '#0060df'
download: true
exportFilename: ma-07
exportFilename: ma-06
background:
---
......
......@@ -17,7 +17,7 @@ layout: cover
themeConfig:
primary: '#0060df'
download: true
exportFilename: ma-03
exportFilename: ma-07
background:
---
......
......@@ -457,6 +457,15 @@ Make sure you follow these steps:
Please make sure you comment out (using `#` in from of the line) all the Embassy's crates
that you do not plan to use.
:::warning
Please make sure the `embassy_rp` crate is included in your build either:
- by importing it with `use embassy_rp as _;`
- or by initialising the peripherals
This crate provides the `.start_block` section that is needed by the RP2350 to boot. Not including
this crate will prevent this section from being added and will prevent the RP2350 to boot.
:::
:::info
For sure, you will not use USB and WiFi. This is a trial
and error job, just comment out all the creates that you think you won't use and
......
......@@ -42,6 +42,8 @@ Download the respective executable:
:::note
You may be prompted to install [Visual Studio C++ Build tools](https://visualstudio.microsoft.com/visual-cpp-build-tools/). If so, follow the instructions from the previous link.
Even if Visual Studio is already on your machine, `rustup` will not verify if the required components are present. If you experience issues with the `rustup` installation on Windows, please follow [these instructions](https://rust-lang.github.io/rustup/installation/windows-msvc.html#installing-only-the-required-components-optional) to manually add the missing components.
:::
The last step is to run `rustup --version` in terminal. If everything went well, you should see an output similar to this:
......@@ -81,7 +83,7 @@ Options:
This tool is an embedded debugging and target interaction toolkit. It enables its user to program and debug microcontrollers via a debug probe.
```shell
cargo install probe-rs --features cli --locked
cargo install probe-rs-tools --locked
```
If you are on **Linux** you will also need to add this [`udev`](https://probe.rs/files/69-probe-rs.rules) file in `/etc/udev/rules.d`. Then, run:
......