Description
The goal of the project is to showcase the knowledge gained throughout the semester by creating functional hardware that runs software written in Rust.
Deliverables
The deliverables will be stored in two places:
- the source code will be stored on Github
- the project documentation will be stored on Gitlab, by creating a fork of the course's website
The documentation repository should contain:
- the full documentation of the project, in the
index.md
file- a description of the functionality
- the motivation for choosing the project
- the architecture
- a description of all components and how they interconnect
- a diagram drawn in diagrams.net or similar
- a weekly log of the project status
- hardware design
- a description of the hardware used
- a schematic drawn in KiCad EDA or similar
- photos of the device
- software design
- detailed design
- functional diagram
- bill of materials (hardware and software)
- the photos and other files required by the index.md file
You need to work in a fork of this website's Gitlab repository and not in a blank one, in order to create a merge request, as described below.
The source code repository should contain:
- a brief documentation - the repository's
README.md
file- short description of the functionality
- requirements (hardware and software)
- brief hardware and software design, including diagrams
- software source code
The repositories will be checked by the lab assistant at during lab reserved for the project. Uploading code on the last day of the software milestone is not allowed. The assistant will check that students have submitted regular commits to the repository.
Students will have to build and showcase the hardware with the running software at PM Fair. On the presentation day, students will upload the source code to the hardware and the demo will be done live in front of the committee.
How to create a page for your project?
- Please login with your UPB login to Gitlab
- You will have to add an SSH Key to your Gitlab account. This will allow you to push code without entering you username and password every time. For this, run the following command in the Windows/Linux/macOS's console:
ssh-keygen -t rsa -b 2048
. Press press ENTER until you exit the respective command prompts.
- If your command prompt
Overwrite (y/n)?
pressn
and run the above command again, changing the destination of the key. - If the key was generated successfully, you will have the keys generated in the location indicated by the command
Enter file in which to save the key (C:\Users\"NAME"/.ssh/id_rsa):
- Read the content of the file
id_rsa.pub
or the name you gave to the file and transfer it to Github. - Login to Gitlab and go to: SSH Keys.
- Click on Add new key and insert into the Key textbox your key from
id_rsa.pub
. - Be very careful about the expiration date of the ssh key, change the expiration date otherwise it is set to 30 days.
-
Download Git from the official website and access it in the command line using
git -v
to check if it was installed correctly. You might have to use Git Bash. -
Navigate to the website's Gitlab repository and create a public fork by clicking on the button in the top right corner.
-
Clone the newly created repository by running
git clone git@gitlab.cs.pub.ro:<gitlab_username>/pmrust.pages.upb.ro.git
, where<gitlab_username>
is replaced by your gitlab username. -
Now you have your own clone. You need to create a new branch. For this, follow the steps:
- Run the command:
git fetch
followed by thegit pull
command - The branches have the following naming convention:
project/your_curs.upb.ro_username
. Example:project/andrei_paul.zamfir
- To create a new branch:
git checkout -b <branch_name>
git push --set-upstream origin project/your_curs.upb.ro_username
-
To start creating your page for the project, go to
website/versioned_docs/version-acs_cc/project/2025
and create a new directory with your curs.upb.ro username. Example:andrei_paul.zamfir
. -
In that directory you must create a file named
index.md
which will be your project page. You can take a look at the Markdown syntax. You can look at last year's projects and template -
After finishing the project, make a merge request to the upstream repository
Hardware Rules
- Projects have to use a microcontroller (MCU) that is capable of running Rust code. Examples of MCUs are nRF52, RP2040, ESP32 (RISC-V version).
- Usage of a development board is encouraged, but not required, a custom PCB can be built. Example of development boards are:
- Raspberry Pi Pico 2 (RP2350) or Raspberry Pi Pico 2W for WiFi (The version of Pico is not important, but we encourage the use of version 2.)
- Adafruit Trinkey QT2040 (RP2040)
- Arduino Nano RP2040 Connect (RP2040) - ⚠️ 1
- micro:bit v2 (nRF52833)
- nRF52 DK (nRF52810)
- STM32 NUCLEO-F401RE
- ESP32-C3-DevKit-RUST-1 (ESP32-C3) - ⚠️ 2
- The hardware part may be designed either using a breadboard and jumper wires, a prototype board (solder breadboard) or a PCB. If you want to use prototyping boards, ask the lab coordinator for help with soldering during lab hours.
Software Rules
It has to run software written in Rust. Students can use:
- embassy-rs
- RTIC
- bare metal - the cortex-r-rt crate
- Tock
- any other software framework that is written in Rust
Project Rules
- Copying schematics or source code from the Internet is not allowed. Any attempt to copy the project will be accompanied by the corresponding repercussions.
- The project is individual, any attempt at collaborative work will be sanctioned, students can also carry out projects that interact, but the work must be separate.
- Any problem or blockage you have will be discussed with the lab assistant during project work hours.
- Students are strongly encouraged to ask the lab assistant questions about the project.
- The presentation of all the milestones is mandatory.
- The project topic must be established in week 4 and approved by the lab coordinator by week 6. After week 6, the topic cannot be changed.
- The laboratory supervisor may modify the topic or propose another topic if it is not complex enough for this project.
- We encourage you not to use prebuilt kits, you may get less points for the hardware part.
Requirements
- Complexity: The project must reflect at least 40 hours of work and contain elements learned during the year.
- Documentation: Complete documentation of the implementation for both hardware and software.
- Functionality: The hardware device has to be fully functional.
The IoT stream has to use the networking (WiFi, Bluetooth or Ethernet).
Example Projects
Examples of projects from past years
- Projects from 2024
- https://ocw.cs.pub.ro/courses/pm/prj2022
- https://ocw.cs.pub.ro/courses/pm/prj2023
Outstanding Projects
- POV - DAVIC picTronics
- Ryobo - Computer Vision & Object Following
- Plug & Play ChatGPT
- VENDING MACHINE
Grading
Part | Deadline | Points |
---|---|---|
Documentation Milestone | Lab 9 | 0.5p |
Hardware Milestone | Lab 11 | 0.5p |
Software Milestone | Lab 12 | 0.5p |
PM Fair | TBD | 1.5p |
Total | 3p |
F.A.Q
Q: Can I use another programming language, not Rust?
A: No, the main focus of the project is to learn to work with microcontrollers using Rust.
Q: Can I use a different framework than embassy-rs?
A: Yes, we suggest taking a look at RTIC or Tock.
Q: What if the PCB arrives after the hardware milestone?
A: You will only present the diagram for the hardware part and if there is a prototype using breadboard, but at the end of the project you must necessarily have the PCB printed and functional.
Footnotes
-
Some function of this board, like WiFi, might not be supported in Rust. ↩
-
ESP32 provides its own Rust SDK described in the The Rust on ESP Book. ↩