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
  • andrei.salavastru/pmrust.pages.upb.ro
  • maria_elena.tudor/pmrust.pages.upb.ro
  • vlad.preda2503/electric-piano
  • delia_alexa.dragan/website-music-player
  • francisc.niss/automatic-guitar-tuner
  • mihnea.sandulache/pmrust.pages.upb.ro
  • dragos_andrei.rosu/pmrust.pages.upb.ro
  • armin.shafiei/the-tone-corrector
  • vladyslav.kiselar/pmrust.pages.upb.ro
  • carla_maria.rusu/pmrust.pages.upb.ro
  • razvan.beldie/pmrust.pages.upb.ro
  • lavinia.tudor0603/pmrust.pages.upb.ro
  • nicoleta.bumbacea/door-security-system
  • stefan_adrian.brai/proiect-pm
30 results
Show changes
Commits on Source (7)
...@@ -27,6 +27,7 @@ test fake slides: ...@@ -27,6 +27,7 @@ test fake slides:
test slides acs_cc: test slides acs_cc:
stage: test stage: test
script: script:
- rm -rf website/static/slides/acs_cc/*
- cd slides - cd slides
- npx -y playwright@^1.41.2 install chromium - npx -y playwright@^1.41.2 install chromium
- npx playwright install-deps - npx playwright install-deps
...@@ -50,6 +51,7 @@ test slides acs_cc: ...@@ -50,6 +51,7 @@ test slides acs_cc:
test slides fils_en: test slides fils_en:
stage: test stage: test
script: script:
- rm -rf website/static/slides/fils_en/*
- cd slides - cd slides
- npx -y playwright@^1.41.2 install chromium - npx -y playwright@^1.41.2 install chromium
- npx playwright install-deps - npx playwright install-deps
......
...@@ -17,7 +17,7 @@ layout: cover ...@@ -17,7 +17,7 @@ layout: cover
themeConfig: themeConfig:
primary: '#0060df' primary: '#0060df'
download: true download: true
exportFilename: ma-04 exportFilename: ma-03
background: background:
--- ---
......
...@@ -17,7 +17,7 @@ layout: cover ...@@ -17,7 +17,7 @@ layout: cover
themeConfig: themeConfig:
primary: '#0060df' primary: '#0060df'
download: true download: true
exportFilename: ma-05 exportFilename: ma-04
background: background:
--- ---
......
...@@ -17,7 +17,7 @@ layout: cover ...@@ -17,7 +17,7 @@ layout: cover
themeConfig: themeConfig:
primary: '#0060df' primary: '#0060df'
download: true download: true
exportFilename: ma-06 exportFilename: ma-05
background: background:
--- ---
......
...@@ -17,7 +17,7 @@ layout: cover ...@@ -17,7 +17,7 @@ layout: cover
themeConfig: themeConfig:
primary: '#0060df' primary: '#0060df'
download: true download: true
exportFilename: ma-07 exportFilename: ma-06
background: background:
--- ---
......
...@@ -17,7 +17,7 @@ layout: cover ...@@ -17,7 +17,7 @@ layout: cover
themeConfig: themeConfig:
primary: '#0060df' primary: '#0060df'
download: true download: true
exportFilename: ma-03 exportFilename: ma-07
background: background:
--- ---
......
...@@ -457,6 +457,15 @@ Make sure you follow these steps: ...@@ -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 Please make sure you comment out (using `#` in from of the line) all the Embassy's crates
that you do not plan to use. 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 :::info
For sure, you will not use USB and WiFi. This is a trial 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 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: ...@@ -42,6 +42,8 @@ Download the respective executable:
:::note :::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. 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: 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: ...@@ -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. This tool is an embedded debugging and target interaction toolkit. It enables its user to program and debug microcontrollers via a debug probe.
```shell ```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: 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:
......